diff --git a/Makefile b/Makefile index a5dea653..68dabf97 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ HOST_LAYERS_PATH := ${CURDIR}/layers HOST_CONF_PATH := ${CURDIR}/conf HOST_SCRIPTS_PATH := ${CURDIR}/scripts TESTS_DIR := ${CURDIR}/tests -METABASE_BACKUP_SCRIPT := ${CURDIR}/metabase_prototype/db/init/backup_init.sh +METABASE_BACKUP_SCRIPT := ${CURDIR}/metabase_prototype/backup_init.sh METABASE_DEFAULT_DUMP := ${CURDIR}/metabase_prototype/metabase_backup.dump # Python diff --git a/README.md b/README.md index 862c507d..7778f090 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,8 @@ To add a new utility, you need to update the [packages.conf](conf/packages.conf) * QEMU parameters (RAM size) * Network parameters (IP addresses, ports, including SSH ports for VMs) +[metabase_backup.dump](./metabase_prototype/metabase_backup.dump) stores metabase dashboards and graphs. More details: [Metabase Readme](./metabase_prototype/README.md) + ## Complete documentation All project documentation is available in the [docs/index.md](docs/index.md). diff --git a/docs/i18n/README_ru.md b/docs/i18n/README_ru.md index f3bd4c21..b663eff7 100644 --- a/docs/i18n/README_ru.md +++ b/docs/i18n/README_ru.md @@ -104,6 +104,8 @@ docker logs os-image-testing-imgtests-analyzer-1 * Параметры QEMU (размер RAM) * Сетевые параметры (IP адреса, порты, включая SSH порты для виртуальных машин) +[metabase_backup.dump](../../metabase_prototype/metabase_backup.dump) хранит панели мониторинга и графики для metabase. Подробнее: [Metabase Readme](../../metabase_prototype/README.md) + ## Полная документация Вся документация по проекту доступна в [docs/index.md](../index.md). diff --git a/metabase_prototype/.env b/metabase_prototype/.env index bd5356b1..4bb6a4e2 100644 --- a/metabase_prototype/.env +++ b/metabase_prototype/.env @@ -1,4 +1,4 @@ -POSTGRES_USER=admin +POSTGRES_USER=user POSTGRES_PASSWORD=admin POSTGRES_DB=metabase_app MVP_RESULTS_DB=mvp_results @@ -12,3 +12,5 @@ METABASE_META_PASS=metabase METABASE_META_VOLUME=metabase_meta_data METABASE_PORT=3000 METABASE_APP_VOLUME=metabase_app +METABASE_BACKUP_SCRIPT=./backup_init.sh +METABASE_DEFAULT_DUMP=./metabase_demo_backup.dump diff --git a/metabase_prototype/README.md b/metabase_prototype/README.md new file mode 100644 index 00000000..835c69ca --- /dev/null +++ b/metabase_prototype/README.md @@ -0,0 +1,40 @@ +# METABASE DEMO + +## Быстрый старт демонстрационной версии с синтетическими данными + +Файл [env](./env) содержит параметры окружения для запуска контейнеров metabase и БД с заготовленными демонстрационными данными. + +Запустите контейнеры командой: + +```bash +docker compose up --detach +``` + +Примечание: metabase нужно некоторое время загрузиться после старта контейнера, обычно не больше минуты. + +## Backup по умолчанию + +При создании metabase контейнеров загружается backup по умолчанию. + +Файл дампа по умолчанию содержит базовые панели мониторинга и соответствующие запросы. + +* Данные регистрации для дампа Metabase по умолчанию: + * email: `admin@gmail.com` + * password `123admin` + +> ⚠️ Работа с параметрами среды +> Будьте осторожны с данными среды, изменения не будут применяться к Metabase, например, изменение хоста, адреса или порта PostgreSQL сделает базу данных недоступной, и вам потребуется изменить эти переменные вручную в панели администратора Metabase. + +## Контейнеры и их взаимодействие + +- **Контейнер основной базы данных** – `imgtests-postgres` содержит синтетические данные, в будущем будет удален, а metabase будет подключаться напрямую к базе данных проекта + +- **Контейнер служебной базы метаданных** – `imgtests-metabase-meta-db` хранит внутренние настройки Metabase: вопросы, дашборды, информацию о подключениях. + +- **Контейнер самого Metabase** – `imgtests-metabase` запускает веб‑сервер Metabase. + +## Переменные окружения + +[.env](.env) используется для хранения переменных окружения, используемых при сборке котейнеров. В нем описываются: +* Переменные базы данных (users, passwords, db name) +* Сетевые параметры (IP адреса, порты, включая SSH порты для виртуальных машин) diff --git a/metabase_prototype/db/init/backup_init.sh b/metabase_prototype/backup_init.sh similarity index 100% rename from metabase_prototype/db/init/backup_init.sh rename to metabase_prototype/backup_init.sh diff --git a/metabase_prototype/db/init/00_init.sh b/metabase_prototype/db/init/00_init.sh index 0154b9f8..ab241f2a 100755 --- a/metabase_prototype/db/init/00_init.sh +++ b/metabase_prototype/db/init/00_init.sh @@ -8,6 +8,7 @@ SELECT 'CREATE DATABASE ' || quote_ident('${MVP_RESULTS_DB}') WHERE NOT EXISTS (SELECT FROM pg_database WHERE datname = '${MVP_RESULTS_DB}')\gexec SQL +psql --username "$POSTGRES_USER" --dbname="$MVP_RESULTS_DB" -f /docker-entrypoint-initdb.d/backup.sql psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname="$MVP_RESULTS_DB" -f /docker-entrypoint-initdb.d/01_schema.sql psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname="$MVP_RESULTS_DB" -f /docker-entrypoint-initdb.d/02_data.sql diff --git a/metabase_prototype/db/init/01_schema.sql b/metabase_prototype/db/init/01_schema.sql index a0dc5864..33c0c79c 100644 --- a/metabase_prototype/db/init/01_schema.sql +++ b/metabase_prototype/db/init/01_schema.sql @@ -244,39 +244,3 @@ SELECT stddev_samp(value) AS stddev_value FROM v_scalar_metabase GROUP BY 1,2,3,4,5,6,7,8,9,10; - -/* Synthetic performance and endurance data */ - -CREATE TABLE IF NOT EXISTS experiment ( - experiment_id integer NOT NULL, - config_id integer NOT NULL, - description character varying(100) NOT NULL, - type character varying(20), - started_at timestamp without time zone, - ended_at timestamp without time zone, - tests_total integer DEFAULT 0 NOT NULL, - tests_passed integer DEFAULT 0 NOT NULL, - tests_failed integer DEFAULT 0 NOT NULL, - tests_broken integer DEFAULT 0 NOT NULL, - tests_skipped integer DEFAULT 0 NOT NULL -); - -CREATE TABLE IF NOT EXISTS configuration ( - config_id integer NOT NULL, - os character varying(100) NOT NULL, - packages json NOT NULL, - core_info character varying(300) NOT NULL, - core_config json NOT NULL, - hardware json NOT NULL -); - -CREATE TABLE IF NOT EXISTS util_run_result ( - id integer NOT NULL, - experiment_id integer NOT NULL, - util_type character varying(20) NOT NULL, - command character varying NOT NULL, - result json NOT NULL, - description character varying(100) NOT NULL, - started_at timestamp without time zone, - ended_at timestamp without time zone -); diff --git a/metabase_prototype/db/init/02_data.sql b/metabase_prototype/db/init/02_data.sql index 39314b72..067426ec 100644 --- a/metabase_prototype/db/init/02_data.sql +++ b/metabase_prototype/db/init/02_data.sql @@ -160,534 +160,3 @@ SELECT setval(pg_get_serial_sequence('raw_result', 'raw_id'), (SELECT COALESCE(M SELECT setval(pg_get_serial_sequence('run_event', 'event_id'), (SELECT COALESCE(MAX(event_id), 1) FROM run_event), true); COMMIT; - -/* Synthetic performance and endurance data */ --- 1) Experiment table -COPY experiment (experiment_id, config_id, description, type, started_at, ended_at, tests_total, tests_passed, tests_failed, tests_broken, tests_skipped) FROM stdin; -12 5 Test suite for syscalls. all 2026-04-11 20:13:03.925623 2026-04-11 20:29:08.353282 14 14 0 0 0 -1 1 Test suite for file subsystem. all 2026-04-11 17:18:23.373333 2026-04-11 17:41:11.863528 79 70 9 0 0 -7 4 Test suite for file subsystem. all 2026-04-11 18:52:33.201808 2026-04-11 19:15:23.033697 80 72 8 0 0 -15 4 Test suite for all subsystems. all 2026-04-11 20:45:52.445878 2026-04-11 22:33:48.453339 156 152 2 2 0 -13 4 Test suite for IPC subsystem. all 2026-04-11 20:30:12.882966 2026-04-11 20:37:22.898333 5 5 0 0 0 -2 2 Test suite for file subsystem. all 2026-04-11 17:41:47.64027 2026-04-11 17:57:47.090277 85 85 0 0 0 -16 7 Test suite for all subsystems. all 2026-04-11 22:34:22.82427 2026-04-11 22:34:34.579491 2 2 0 0 0 -14 6 Test suite for IPC subsystem. all 2026-04-11 20:37:57.181007 2026-04-11 20:44:48.131068 8 8 0 0 0 -8 3 Test suite for file subsystem. all 2026-04-11 19:15:57.159986 2026-04-11 19:30:42.19645 85 85 0 0 0 -3 1 Test suite for virtual memory. all 2026-04-11 17:58:49.99321 2026-04-11 18:10:31.635293 10 7 2 1 0 -4 2 Test suite for virtual memory. all 2026-04-11 18:11:05.828751 2026-04-11 18:24:08.898449 12 12 0 0 0 -9 4 Test suite for virtual memory. all 2026-04-11 19:31:45.527335 2026-04-11 19:43:25.202115 10 9 0 1 0 -17 4 Test suite for IPC subsystem. all 2026-04-12 07:58:28.7138 2026-04-12 08:05:34.951772 5 5 0 0 0 -20 7 Test suite for all subsystems. all 2026-04-12 09:08:53.204012 2026-04-12 10:05:22.948392 156 155 0 1 0 -10 5 Test suite for virtual memory. all 2026-04-11 19:43:59.711964 2026-04-11 19:57:49.990973 12 12 0 0 0 -19 4 Test suite for all subsystems. all 2026-04-12 08:13:34.986505 2026-04-12 09:08:18.800542 142 139 1 2 0 -5 1 Test suite for syscalls. all 2026-04-11 18:25:11.322496 2026-04-11 18:35:25.27423 10 4 6 0 0 -18 7 Test suite for IPC subsystem. all 2026-04-12 08:06:05.848622 2026-04-12 08:12:32.921689 8 8 0 0 0 -6 3 Test suite for syscalls. all 2026-04-11 18:35:59.623691 2026-04-11 18:46:37.767828 9 9 0 0 0 -11 4 Test suite for syscalls. all 2026-04-11 19:58:53.783851 2026-04-11 20:12:28.721058 11 11 0 0 0 -\. - --- 2) Configuration table -COPY configuration (config_id, os, packages, core_info, core_config, hardware) FROM stdin; -1 openSUSE Leap 15.6 {"numactl": "2.0.14.20.g4ee5e0c:150400.1.24:x86_64", "libsmi": "0.4.8:1.29:x86_64", "yast2-printer": "4.6.0:150600.1.4:x86_64", "libverto1": "0.2.6:3.20:x86_64", "wireguard-tools": "1.0.20210914:150600.1.7:x86_64", "libreiserfscore0": "3.6.27:2.24:x86_64", "irqbalance": "1.9.2:150500.1.3:x86_64", "libgmp10": "6.1.2:4.9.1:x86_64", "bind": "9.18.33:150600.3.18.1:x86_64", "release-notes-openSUSE": "15.6.20240123.1b6f9fd:lp156.1.1:noarch", "chrony": "4.1:150400.21.8.1:x86_64", "libz1": "1.2.13:150500.4.6.1:x86_64", "libsss_nss_idmap0": "2.10.2:150600.3.41.1:x86_64", "hwinfo": "21.89:150500.3.12.1:x86_64", "polkit": "121:150500.3.6.1:x86_64", "libmagic1": "5.32:7.14.1:x86_64", "dnsmasq": "2.90:150400.16.6.2:x86_64", "perl": "5.26.1:150300.17.20.1:x86_64", "rsyslog": "8.2406.0:150600.12.10.1:x86_64", "libgpgme11": "1.23.0:150600.3.5.1:x86_64", "gdb": "16.3:150400.15.26.1:x86_64", "thin-provisioning-tools": "0.7.5:3.3.1:x86_64", "yast2-bootloader": "4.6.7:lp156.1.2:x86_64", "libsasl2-3": "2.1.28:150600.7.14.1:x86_64", "ltp-stable": "20260130:96.5:x86_64", "net-tools": "2.0+git20170221.479bb4a:150000.5.13.1:x86_64", "yast2-nis-client": "4.6.0:150600.1.5:x86_64", "libksba8": "1.6.4:150600.1.2:x86_64", "btrfsprogs": "6.5.1:150600.2.4:x86_64", "yast2-security": "4.6.1:150600.3.3.2:noarch", "libyaml-cpp0_6": "0.6.3:150400.4.3.1:x86_64", "xfsprogs": "6.7.0:150600.3.6.2:x86_64", "yast2-update": "4.6.3:150600.1.2:x86_64", "krb5": "1.20.1:150600.11.14.1:x86_64", "libavahi-client3": "0.8:150600.15.12.1:x86_64", "glibc-locale-base": "2.38:150600.14.43.1:x86_64", "cyrus-sasl-plain": "2.1.28:150600.7.14.1:x86_64", "rdma-ndd": "49.1:150600.2.5:x86_64", "libduktape206": "2.6.0:150500.4.5.1:x86_64", "perl-XML-SAX-Base": "1.09:1.25:noarch", "libibverbs": "49.1:150600.2.5:x86_64", "libinih0": "53:150400.1.7:x86_64", "perl-XML-SAX": "0.99:1.22:x86_64", "libopencsd1": "1.4.0:150600.1.5:x86_64", "libhidapi-hidraw0": "0.10.1:150300.3.2.1:x86_64", "dbus-1": "1.12.2:150400.18.8.1:x86_64", "libXpm4": "3.5.12:150000.3.10.1:x86_64", "libffi7": "3.2.1.git259:10.8:x86_64", "tcpdump": "4.99.1:150600.7.3:x86_64", "libmpxwrappers2": "8.2.1+r264010:150000.1.6.4:x86_64", "libaudit1": "3.0.6:150400.4.16.1:x86_64", "man": "2.7.6:150100.8.5.1:x86_64", "libxshmfence1": "1.2:1.23:x86_64", "libauparse0": "3.0.6:150400.4.16.1:x86_64", "python3-pytz": "2022.1:150300.3.9.1:noarch", "perl-Encode-Locale": "1.05:1.24:noarch", "file": "5.32:7.14.1:x86_64", "python3-solv": "0.7.34:150600.8.19.2:x86_64", "perl-URI": "1.73:1.16:noarch", "libsodium23": "1.0.18:150000.4.14.1:x86_64", "grub2-x86_64-efi": "2.12:150600.8.49.1:noarch", "libtiff5": "4.0.9:150000.45.41.1:x86_64", "psmisc": "23.0:150000.6.25.1:x86_64", "python3-immutables": "0.11:150000.1.3.1:x86_64", "perl-Net-HTTP": "6.17:1.20:noarch", "libzmq5": "4.2.3:3.15.4:x86_64", "ruby2.5-stdlib": "2.5.9:150000.4.54.1:x86_64", "expat": "2.7.1:150400.3.37.1:x86_64", "libevent-2_1-7": "2.1.12:150600.1.2:x86_64", "python3-cffi": "1.13.2:150200.3.5.1:x86_64", "libitm1": "15.2.0+git10201:150000.1.9.1:x86_64", "mailx": "12.5:150600.16.3:x86_64", "ruby2.5-rubygem-ruby-dbus": "0.14.0:1.27:x86_64", "libxcb-randr0": "1.13:150000.3.11.1:x86_64", "yast2-nfs-common": "4.6.0:150600.1.2:noarch", "libgirepository-1_0-1": "1.78.1:150600.2.3:x86_64", "libgbm1": "23.3.4:150600.83.3.1:x86_64", "libcap-ng0": "0.7.9:4.37:x86_64", "cifs-utils": "6.15:150400.3.18.1:x86_64", "php8-cli": "8.2.30:150600.3.25.1:x86_64", "libavahi-common3": "0.8:150600.15.12.1:x86_64", "python3-msgpack": "0.5.6:150100.3.3.1:x86_64", "php8": "8.2.30:150600.3.25.1:x86_64", "libnettle8": "3.9.1:150600.3.2.1:x86_64", "aaa_base": "84.87+git20180409.04c9dae:150300.10.28.2:x86_64", "php8-iconv": "8.2.30:150600.3.25.1:x86_64", "libyui-ncurses16": "4.5.3:150600.6.2.1:x86_64", "python3-configshell-fb": "1.1.29:3.3.1:noarch", "php8-gd": "8.2.30:150600.3.25.1:x86_64", "shared-mime-info": "2.4:150600.3.3.2:x86_64", "util-linux-systemd": "2.39.3:150600.4.18.1:x86_64", "perl-Net-DBus": "1.1.0:1.30:x86_64", "openssl-3": "3.1.4:150600.5.45.1:x86_64", "sysconfig": "0.85.10:150200.15.1:x86_64", "sysstat": "12.0.2:150000.3.51.1:x86_64", "libcryptsetup12": "2.7.0:150600.3.3.1:x86_64", "nscd": "2.38:150600.14.43.1:x86_64", "fuse": "2.9.7:3.3.1:x86_64", "libHX28": "3.22:1.26:x86_64", "dracut-kiwi-lib": "10.2.33:150600.14.10.2:x86_64", "libtss2-mu0": "3.1.1:150600.2.1:x86_64", "libnfnetlink0": "1.0.1:2.11:x86_64", "yast2-sysconfig": "4.6.0:150600.1.2:noarch", "libldap-data": "2.4.46:150600.25.3.1:noarch", "system-user-tss": "20170617:150400.24.2.1:noarch", "yast2-trans-stats": "2.19.0:1.28:noarch", "yast2-iscsi-lio-server": "4.6.0:150600.1.2:noarch", "libpcre2-8-0": "10.42:150600.1.26:x86_64", "libtss2-sys1": "3.1.1:150600.2.1:x86_64", "branding-openSUSE": "15.6.20240408:lp156.1.2:noarch", "dhcp": "4.3.6.P1:150000.6.22.1:x86_64", "terminfo-base": "6.1:150000.5.30.1:x86_64", "libntfs-3g87": "2022.5.17:150000.3.21.1:x86_64", "libicu-suse65_1": "65.1:150200.4.15.1:x86_64", "ksh": "93vu:bp156.6.3.1:x86_64", "libopenssl3": "3.1.4:150600.5.45.1:x86_64", "libsource-highlight4": "3.1.9:150000.3.9.1:x86_64", "libdbus-1-3": "1.12.2:150400.18.8.1:x86_64", "yast2-firewall": "4.6.1:150600.3.3.2:noarch", "libusb-1_0-0": "1.0.24:150400.3.3.1:x86_64", "net-tools-deprecated": "2.0+git20170221.479bb4a:150000.5.13.1:x86_64", "libnftnl11": "1.2.0:150400.1.6:x86_64", "yast2-iscsi-client": "4.6.6:150600.3.14.2:noarch", "zypper": "1.14.94:150600.10.52.1:x86_64", "sssd-tools": "2.10.2:150600.3.41.1:x86_64", "libxcb1": "1.13:150000.3.11.1:x86_64", "yast2-online-update-frontend": "4.6.2:150600.1.2:noarch", "libbrotlidec1": "1.0.7:150200.3.5.1:x86_64", "fping": "5.1:150600.1.4:x86_64", "yast2-nfs-server": "4.6.0:150600.1.2:noarch", "libjitterentropy3": "3.4.1:150000.1.12.1:x86_64", "yast2-logs": "4.6.8:150600.1.1:x86_64", "yast2-installation": "4.6.14:150600.3.6.1:noarch", "libbz2-1": "1.0.8:150400.1.122:x86_64", "less": "643:150600.3.3.1:x86_64", "yast2-registration": "4.6.3:150600.3.6.2:noarch", "libidn2-0": "2.2.0:3.6.1:x86_64", "libsubid5": "4.17.2:150600.17.18.1:x86_64", "libfmt8": "8.0.1:150400.1.8:x86_64", "gpg2": "2.4.4:150600.3.15.1:x86_64", "shadow": "4.17.2:150600.17.18.1:x86_64", "libmlx5-1": "49.1:150600.2.5:x86_64", "vim-data-common": "9.2.0110:150500.20.43.1:noarch", "libXext6": "1.3.3:1.30:x86_64", "librbd1": "16.2.13.66+g54799ee0666:150400.3.11.1:x86_64", "libseccomp2": "2.5.3:150400.2.4:x86_64", "ca-certificates-mozilla": "2.84:150200.44.1:noarch", "libtraceevent1": "1.8.4:150500.11.8.1:x86_64", "systemd-default-settings-branding-openSUSE": "0.10:150300.3.7.1:noarch", "system-group-audit": "3.0.6:150400.4.16.1:x86_64", "libisl15": "0.18:1.443:x86_64", "dmidecode": "3.6:150400.16.11.2:x86_64", "perl-XML-LibXML": "2.0132:150000.3.3.1:x86_64", "libtsan0": "11.3.0+git1637:150000.1.11.2:x86_64", "libfastjson4": "0.99.9:150400.3.3.1:x86_64", "libpython3_6m1_0": "3.6.15:150300.10.109.1:x86_64", "m4": "1.4.18:4.3.1:x86_64", "libip6tc2": "1.8.7:1.1:x86_64", "glib2-tools": "2.78.6:150600.4.35.1:x86_64", "perl-LWP-MediaTypes": "6.02:1.25:noarch", "libfuse2": "2.9.7:3.3.1:x86_64", "grub2": "2.12:150600.8.49.1:x86_64", "system-user-mail": "20170617:150400.24.2.1:noarch", "libunwind": "1.5.0:4.5.1:x86_64", "python3-netifaces": "0.10.6:150000.3.2.1:x86_64", "autoconf": "2.69:1.445:noarch", "tcsh": "6.20.00:150000.4.18.2:x86_64", "python3-blinker": "1.4:150000.3.6.1:noarch", "perl-File-Listing": "6.04:1.23:noarch", "containerd": "1.7.29:150000.130.1:x86_64", "python3-attrs": "19.3.0:150200.3.9.1:noarch", "libX11-xcb1": "1.8.7:150600.3.6.1:x86_64", "libprotobuf-c1": "1.5.0:150600.1.4:x86_64", "ruby2.5-rubygem-gem2rpm": "0.10.1:3.45:x86_64", "libwebp7": "1.0.3:150200.3.14.1:x86_64", "openssl": "3.1.4:150600.2.1:noarch", "ruby": "2.5:1.21:x86_64", "libxcb-xfixes0": "1.13:150000.3.11.1:x86_64", "libcrack2": "2.9.11:150600.1.90:x86_64", "python3-rpm": "4.14.3:150400.59.16.1:x86_64", "busybox-ed": "1.37.0:150500.7.11.1:noarch", "curl": "8.14.1:150600.4.40.1:x86_64", "python3-setuptools": "44.1.1:150400.9.15.1:noarch", "perl-libwww-perl": "6.31:1.17:noarch", "libdevmapper1_03": "2.03.22_1.02.196:150600.3.9.3:x86_64", "python3-zipp": "0.6.0:150100.3.8.1:noarch", "Mesa-libEGL1": "23.3.4:150600.83.3.1:x86_64", "libpng16-16": "1.6.40:150600.3.12.1:x86_64", "python3-configobj": "5.0.6:150000.3.3.1:noarch", "php8-pdo": "8.2.30:150600.3.25.1:x86_64", "openldap2-client": "2.4.46:150600.25.3.1:x86_64", "ruby2.5-rubygem-cfa_grub2": "2.0.0:1.55:x86_64", "php8-sockets": "8.2.30:150600.3.25.1:x86_64", "zsh": "5.8.1:150600.18.3.2:x86_64", "python3-dbus-python": "1.2.16:150600.3.2:x86_64", "libsensors4": "3.5.0:4.6.1:x86_64", "libdevmapper-event1_03": "2.03.22_1.02.196:150600.3.9.3:x86_64", "dracut": "059+suse.562.geca59f6b:150600.3.23.1:x86_64", "time": "1.9:1.15:x86_64", "liblvm2cmd2_03": "2.03.22:150600.3.9.3:x86_64", "lvm2": "2.03.22:150600.3.9.3:x86_64", "libdhash1": "0.5.0:3.3.1:x86_64", "libestr0": "0.1.10:1.25:x86_64", "libstorage-ng1": "4.5.201:150600.1.3:x86_64", "libnscd1": "2.0.2:3.21:x86_64", "filesystem": "15.0:11.8.1:x86_64", "squashfs": "4.6.1:150300.3.3.1:x86_64", "yast2-slp": "4.6.0:150600.1.5:x86_64", "lsscsi": "0.28:1.24:x86_64", "libcom_err2": "1.47.0:150600.4.6.2:x86_64", "yast2-journal": "4.6.0:150600.1.2:noarch", "zip": "3.0:2.22:x86_64", "fillup": "1.42:2.18:x86_64", "yast2-tftp-server": "4.6.0:150600.1.2:noarch", "tcpd": "7.6:1.433:x86_64", "libpcre1": "8.45:150000.20.13.1:x86_64", "rpcbind": "0.2.3:5.9.2:x86_64", "cloud-init-config-suse": "23.3:lp156.3.9:x86_64", "libstdc++6": "15.2.0+git10201:150000.1.9.1:x86_64", "cronie": "1.5.7:150400.84.3.1:x86_64", "python-rtslib-fb-common": "2.1.75:150500.1.4:noarch", "bash-sh": "4.4:150400.27.6.1:x86_64", "syslog-service": "2.0:150300.13.3.1:noarch", "libboost_regex1_66_0": "1.66.0:150200.12.7.1:x86_64", "libgcrypt20": "1.10.3:150600.3.9.1:x86_64", "libpolkit-agent-1-0": "121:150500.3.6.1:x86_64", "p11-kit": "0.23.22:150500.8.3.1:x86_64", "libboost_thread1_66_0": "1.66.0:150200.12.7.1:x86_64", "docker-buildx": "0.11.2:bp156.1.12:x86_64", "tcl": "8.6.12:150300.14.9.1:x86_64", "libelf1": "0.185:150400.5.8.3:x86_64", "nfs-client": "2.6.4:150600.28.12.1:x86_64", "parted": "3.2:150300.21.3.1:x86_64", "grep": "3.1:150000.4.6.1:x86_64", "yast2-network": "4.6.11:150600.3.6.1:noarch", "systemd-presets-branding-openSUSE": "12.2:lp156.7.3.1:noarch", "libsolv-tools-base": "0.7.34:150600.8.19.2:x86_64", "openssh": "9.6p1:150600.6.34.1:x86_64", "libfreetype6": "2.10.4:150000.4.25.1:x86_64", "crypto-policies": "20230920.570ea89:150600.3.16.1:noarch", "yast2-online-update": "4.6.2:150600.1.2:noarch", "liblognorm5": "2.0.6:150000.3.3.1:x86_64", "boost-license1_66_0": "1.66.0:150200.12.7.1:noarch", "yast2-samba-client": "4.6.1:150600.1.2:noarch", "expect": "5.45.4:3.3.1:x86_64", "libzstd1": "1.5.5:150600.1.3:x86_64", "yast2-http-server": "4.6.1:150600.1.2:noarch", "libatk-1_0-0": "2.50.0:150600.1.2:x86_64", "liblua5_3-5": "5.3.6:3.6.1:x86_64", "yast2-dns-server": "4.6.0:150600.1.2:noarch", "yast2-core": "4.6.0:150600.1.7:x86_64", "libncurses6": "6.1:150000.5.30.1:x86_64", "yast2-users": "4.6.6:150600.3.3.5:x86_64", "yast2-ycp-ui-bindings": "4.6.0:150600.1.5:x86_64", "libcrypt1": "4.4.15:150300.4.7.1:x86_64", "yast2-mail": "4.6.0:150600.1.2:noarch", "crash": "8.0.4:150600.4.6.2:x86_64", "libudev1": "254.27:150600.4.62.1:x86_64", "yast2-add-on": "4.6.2:150600.1.2:noarch", "libgnutls30": "3.8.3:150600.4.17.1:x86_64", "libsigc-2_0-0": "2.12.1:150600.1.2:x86_64", "gpg-pubkey": "3dbdc284:53674dd4:(none)", "libX11-6": "1.8.7:150600.3.6.1:x86_64", "coreutils": "8.32:150400.9.9.1:x86_64", "krb5-client": "1.20.1:150600.11.14.1:x86_64", "gawk": "4.2.1:150000.3.3.1:x86_64", "pmdk": "1.11.1:150400.1.10:x86_64", "cyrus-sasl-digestmd5": "2.1.28:150600.7.14.1:x86_64", "libzypp": "17.37.18:150600.3.82.1:x86_64", "libibverbs1": "49.1:150600.2.5:x86_64", "libnetfilter_conntrack3": "1.0.7:1.38:x86_64", "libuv1": "1.44.2:150500.3.5.1:x86_64", "libmana1": "49.1:150600.2.5:x86_64", "perl-Parse-RecDescent": "1.967015:1.22:x86_64", "libctf0": "2.45:150100.7.57.1:x86_64", "librados2": "16.2.13.66+g54799ee0666:150400.3.11.1:x86_64", "liblockdev1": "1.0.3_git201003141408:1.97:x86_64", "libpgm-5_2-0": "5.2.122:150400.15.6:x86_64", "libsha1detectcoll1": "1.0.3:2.18:x86_64", "perl-Crypt-SmbHash": "0.12:1.24:x86_64", "libblogger2": "2.26:150300.4.6.1:x86_64", "libopencsd_c_api1": "1.4.0:150600.1.5:x86_64", "kbd": "2.4.0:150400.5.9.1:x86_64", "libtirpc-netconfig": "1.3.4:150300.3.23.1:x86_64", "stress-ng": "0.17.04:bp156.1.1:x86_64", "system-user-man": "20170617:150400.24.2.1:noarch", "blog": "2.26:150300.4.6.1:x86_64", "libdrm2": "2.4.118:150600.1.4:x86_64", "at": "3.2.2:150400.4.3.10:x86_64", "cpio": "2.13:150400.3.6.1:x86_64", "libmpfr6": "4.0.2:3.3.1:x86_64", "xtables-plugins": "1.8.7:1.1:x86_64", "kbd-legacy": "2.4.0:150400.5.9.1:noarch", "libsepol1": "3.1:150400.1.70:x86_64", "libopenssl1_1": "1.1.1w:150600.5.21.1:x86_64", "libexpat1": "2.7.1:150400.3.37.1:x86_64", "libwayland-server0": "1.22.0:150600.1.6:x86_64", "libatspi0": "2.50.0:150600.1.2:x86_64", "efibootmgr": "17:150400.3.2.2:x86_64", "linux-glibc-devel": "6.4:150600.2.17:x86_64", "python3": "3.6.15:150300.10.109.1:x86_64", "libip4tc2": "1.8.7:1.1:x86_64", "perl-CPAN-Changes": "0.400002:1.24:noarch", "python3-psutil": "5.9.1:150300.3.6.1:x86_64", "deltarpm": "3.6.5:150000.5.6.3:x86_64", "perl-IO-HTML": "1.001:1.24:noarch", "util-linux": "2.39.3:150600.4.18.1:x86_64", "libdialog14": "1.3:3.3.7:x86_64", "perl-TimeDate": "2.30:3.9.1:noarch", "libpxbackend-1_0": "0.5.3:150600.4.6.2:x86_64", "libruby2_5-2_5": "2.5.9:150000.4.54.1:x86_64", "site-config": "0.2:bp156.3.1:x86_64", "grub2-i386-pc": "2.12:150600.8.49.1:noarch", "libtasn1": "4.13:150000.4.14.1:x86_64", "libdrm_nouveau2": "2.4.118:150600.1.4:x86_64", "python3-pyserial": "3.4:150000.3.4.1:noarch", "ncurses-utils": "6.1:150000.5.30.1:x86_64", "libdrm_intel1": "2.4.118:150600.1.4:x86_64", "python3-jsonpointer": "1.14:150000.3.2.1:noarch", "systemd-rpm-macros": "16:150000.7.42.1:noarch", "perl-HTTP-Date": "6.02:1.24:noarch", "python3-distro": "1.5.0:3.5.1:noarch", "runc": "1.3.4:150000.90.1:x86_64", "perl-HTTP-Message": "6.14:1.16:noarch", "python3-asn1crypto": "0.24.0:150000.3.5.1:noarch", "dialog": "1.3:3.3.7:x86_64", "perl-HTTP-Cookies": "6.04:1.20:noarch", "growpart": "0.31:5.9.3:noarch", "libargon2-1": "20190702:150600.1.4:x86_64", "libLLVM17": "17.0.6:150600.3.7.1:x86_64", "python3-Babel": "2.8.0:3.3.1:noarch", "liblz4-1": "1.9.4:150600.1.4:x86_64", "libcilkrts5": "7.5.0+r278197:150000.4.44.1:x86_64", "scout": "0.2.7+20230124.b4e3468:150500.1.1:noarch", "libtalloc2": "2.4.1:150600.1.3:x86_64", "libubsan0": "7.5.0+r278197:150000.4.44.1:x86_64", "ruby-common": "2.1:3.15:noarch", "openslp": "2.0.0:150600.19.5:x86_64", "libxcb-glx0": "1.13:150000.3.11.1:x86_64", "ruby2.5-rubygem-mini_portile2": "2.3.0:1.27:x86_64", "systemd-presets-common-SUSE": "15:150600.25.2:noarch", "libxcb-sync1": "1.13:150000.3.11.1:x86_64", "yast2-python3-bindings": "4.6.0:150600.1.6:x86_64", "lsof": "4.99.0:150600.1.15:x86_64", "cpp7": "7.5.0+r278197:150000.4.44.1:x86_64", "yast2-ruby-bindings": "4.6.2:150600.1.5:x86_64", "libtevent0": "0.15.0:150600.1.3:x86_64", "Mesa-dri": "23.3.4:150600.83.3.1:x86_64", "python3-ordered-set": "4.0.2:150400.8.34:noarch", "augeas": "1.14.1:150600.3.3.1:x86_64", "postfix": "3.8.4:150600.3.3.1:x86_64", "python3-pyudev": "0.22.0+git.1642212208.d5630bf:150400.5.50:noarch", "libaio1": "0.3.113:150600.15.3.1:x86_64", "cpp": "7:3.9.1:x86_64", "python3-cryptography": "3.3.2:150400.26.1:x86_64", "libbpf1": "1.2.2:150600.3.6.2:x86_64", "gcc": "7:3.9.1:x86_64", "python3-jsonpatch": "1.23:150100.3.5.1:noarch", "libhavege2": "1.9.14:150600.11.3.1:x86_64", "perl-XML-Parser": "2.44:150000.3.3.1:x86_64", "python3-importlib-metadata": "1.5.0:150100.3.8.1:noarch", "libnl-config": "3.9.0:150600.15.4.4:noarch", "Mesa": "23.3.4:150600.83.3.1:x86_64", "python3-passlib": "1.7.4:150300.3.2.1:noarch", "libuuid1": "2.39.3:150600.4.18.1:x86_64", "php8-openssl": "8.2.30:150600.3.25.1:x86_64", "python3-Jinja2": "2.10.1:150000.3.21.1:noarch", "mdadm": "4.3+34.g1edf7b5d:150600.3.20.1:x86_64", "php8-xmlreader": "8.2.30:150600.3.25.1:x86_64", "python3-jsonschema": "3.2.0:150200.9.5.1:noarch", "pkg-config": "0.29.2:150600.15.6.3:x86_64", "php8-zip": "8.2.30:150600.3.25.1:x86_64", "yast2-country-data": "4.6.7:150600.3.3.2:x86_64", "xz": "5.4.1:150600.3.3.1:x86_64", "php8-curl": "8.2.30:150600.3.25.1:x86_64", "wicked-service": "0.6.77:150600.11.15.1:x86_64", "librdkafka1": "0.11.6:150600.16.3.1:x86_64", "phoronix-test-suite": "10.8.4:bp156.4.2:noarch", "python3-targetcli-fb": "2.1.54:150600.11.2:noarch", "libmount1": "2.39.3:150600.4.18.1:x86_64", "metamail": "2.7.19:bp156.5.6:x86_64", "suse-module-tools": "15.6.14:150600.3.17.1:x86_64", "gettext-runtime": "0.21.1:150600.3.3.2:x86_64", "lshw-lang": "B.02.20:150200.3.18.2:noarch", "suseconnect-ng": "1.13.0:150600.3.11.1:x86_64", "libyui-ncurses-pkg16": "4.5.3:150600.6.2.1:x86_64", "ctags": "5.8:150000.3.3.1:x86_64", "cyrus-sasl-saslauthd": "2.1.28:150600.7.14.1:x86_64", "dos2unix": "7.4.0:1.19:x86_64", "libcollection4": "0.7.0:3.3.1:x86_64", "kernel-default": "6.4.0:150600.23.92.1:x86_64", "libedit0": "3.1.snap20150325:2.12:x86_64", "libpath_utils1": "0.2.1:3.3.1:x86_64", "dracut-kiwi-oem-repart": "10.2.33:150600.14.10.2:x86_64", "liblzo2-2": "2.10:2.22:x86_64", "telnet-server": "1.2:150000.3.6.1:x86_64", "fuse-exfat": "1.4.0:bp156.1.5:x86_64", "libtss2-esys0": "3.1.1:150600.2.1:x86_64", "kernel-default-extra": "6.4.0:150600.23.92.1:x86_64", "libsss_certmap0": "2.10.2:150600.3.41.1:x86_64", "net-tools-lang": "2.0+git20170221.479bb4a:150000.5.13.1:noarch", "vsftpd": "3.0.5:150600.10.6.1:x86_64", "sssd-ldap": "2.10.2:150600.3.41.1:x86_64", "apparmor-utils": "3.1.7:150600.5.9.1:noarch", "python3-sssd-config": "2.10.2:150600.3.41.1:x86_64", "libtpm_unseal1": "1.3.9.2:150600.7.3:x86_64", "iperf": "3.19.1:150000.3.15.1:x86_64", "ltrace": "0.7.91:150500.18.1:x86_64", "file-magic": "5.32:7.14.1:noarch", "libsmi2": "0.4.8:1.29:x86_64", "yast2-squid": "4.6.0:150600.1.5:x86_64", "liblzma5": "5.4.1:150600.3.3.1:x86_64", "pigz": "2.3.3:1.28:x86_64", "yast2-pam": "4.6.0:150600.1.2:noarch", "libnpth0": "1.5:2.11:x86_64", "libnsl2": "1.2.0:2.44:x86_64", "libstorage-ng-ruby": "4.5.201:150600.1.3:x86_64", "update-alternatives": "1.19.0.4:150000.4.7.1:x86_64", "yp-tools": "4.2.2:3.16:x86_64", "telnet": "1.2:150000.3.6.1:x86_64", "libacl1": "2.2.52:4.3.1:x86_64", "openSUSE-build-key": "1.0:lp156.8.2:noarch", "cron": "4.2:150400.84.3.1:x86_64", "libreadline7": "7.0:150400.27.6.1:x86_64", "gzip": "1.10:150200.10.1:x86_64", "audit": "3.0.6:150400.4.16.1:x86_64", "libselinux1": "3.5:150600.3.3.1:x86_64", "libp11-kit0": "0.23.22:150500.8.3.1:x86_64", "salt": "3006.0:150500.4.68.2:x86_64", "libssh4": "0.9.8:150600.11.9.1:x86_64", "p11-kit-tools": "0.23.22:150500.8.3.1:x86_64", "salt-minion": "3006.0:150500.4.68.2:x86_64", "libzio1": "1.06:2.20:x86_64", "libparted0": "3.2:150300.21.3.1:x86_64", "yast2-storage-ng": "4.6.18:150600.3.3.2:x86_64", "glibc-locale": "2.38:150600.14.43.1:x86_64", "netcat-openbsd": "1.203:150400.1.5:x86_64", "polkit-default-privs": "13.2+20241216.68f9867:150600.3.3.1:noarch", "rpm-config-SUSE": "1:150400.14.3.1:noarch", "patterns-base-minimal_base": "20200505:lp156.17.3.1:x86_64", "nfs-kernel-server": "2.6.4:150600.28.12.1:x86_64", "system-user-root": "20190513:3.3.1:noarch", "tar": "1.34:150000.3.37.1:x86_64", "cloud-init": "23.3:lp156.3.9:x86_64", "libfa1": "1.14.1:150600.3.3.1:x86_64", "pam": "1.3.0:150000.6.86.1:x86_64", "autofs": "5.1.9:150600.1.4:x86_64", "libattr1": "2.4.47:2.19:x86_64", "hwdata": "0.394:150000.3.77.2:noarch", "yast2-ldap": "4.6.0:150600.1.5:x86_64", "libsqlite3-0": "3.51.3:150000.3.39.1:x86_64", "mokutil": "0.5.0:150600.8.3:x86_64", "yast2-nis-server": "4.6.0:150600.1.2:noarch", "libassuan0": "2.5.5:150000.4.7.1:x86_64", "fontconfig": "2.14.2:150600.1.3:x86_64", "yast2-kdump": "4.6.3:150600.3.3.2:x86_64", "bash": "4.4:150400.27.6.1:x86_64", "yast2-xml": "4.6.0:150600.1.5:x86_64", "yast2-samba-server": "4.6.0:150600.1.2:noarch", "libglib-2_0-0": "2.78.6:150600.4.35.1:x86_64", "iproute2": "6.4:150600.7.9.1:x86_64", "autoyast2-installation": "4.6.6:150600.1.2:noarch", "libboost_system1_66_0": "1.66.0:150200.12.7.1:x86_64", "libpcap1": "1.10.4:150600.3.9.1:x86_64", "info": "6.5:4.17:x86_64", "sudo": "1.9.15p5:150600.3.12.1:x86_64", "pinentry": "1.1.0:4.3.1:x86_64", "openssh-clients": "9.6p1:150600.6.34.1:x86_64", "libndctl6": "78:150600.1.10:x86_64", "rpm": "4.14.3:150400.59.16.1:x86_64", "yast2-pkg-bindings": "4.6.5:150600.3.6.1:x86_64", "libpmem1": "1.11.1:150400.1.10:x86_64", "liblmdb-0_9_30": "0.9.30:150500.3.2.1:x86_64", "perl-gettext": "1.07:1.442:x86_64", "libmlx4-1": "49.1:150600.2.5:x86_64", "libefivar1": "37:6.12.1:x86_64", "perl-Digest-SHA1": "2.13:1.27:x86_64", "librdmacm1": "49.1:150600.2.5:x86_64", "libnuma1": "2.0.14.20.g4ee5e0c:150400.1.24:x86_64", "lockdev": "1.0.3_git201003141408:1.97:x86_64", "python3-pip": "20.0.2:150400.23.1:noarch", "findutils": "4.8.0:150300.3.3.2:x86_64", "libXtst6": "1.2.3:1.24:x86_64", "libslang2": "2.3.1a:150000.5.2.3:x86_64", "libpci3": "3.13.0:150300.13.12.1:x86_64", "sysuser-shadow": "3.2:150400.3.5.3:noarch", "lksctp-tools": "1.0.17:150000.3.3.1:x86_64", "yast2-schema": "4.3.31:150300.3.20.3:x86_64", "system-group-kvm": "20170617:150400.24.2.1:noarch", "libXxf86vm1": "1.1.4:1.23:x86_64", "libx86emu3": "3.1:1.23:x86_64", "pciutils": "3.13.0:150300.13.12.1:x86_64", "libjpeg8": "8.2.2:150600.22.5:x86_64", "groff": "1.22.4:150400.5.2.1:x86_64", "iptables": "1.8.7:1.1:x86_64", "libpciaccess0": "0.14:1.16:x86_64", "libeconf0": "0.5.2:150400.3.6.1:x86_64", "gio-branding-openSUSE": "42.1:lp156.9.2.2:noarch", "libwayland-client0": "1.22.0:150600.1.6:x86_64", "strace": "5.14:150400.3.3.2:x86_64", "libatk-bridge-2_0-0": "2.50.0:150600.1.2:x86_64", "libzip5": "1.10.1:150600.1.5:x86_64", "bc": "1.07.1:11.37:x86_64", "python3-curses": "3.6.15:150300.10.109.1:x86_64", "make-lang": "4.2.1:7.3.2:noarch", "libxtables12": "1.8.7:1.1:x86_64", "python3-PyYAML": "5.4.1:150300.3.6.1:x86_64", "perl-HTML-Tagset": "3.20:1.24:noarch", "keyutils": "1.6.3:5.6.1:x86_64", "python3-zypp-plugin": "0.6.5:150600.18.8.1:noarch", "perl-Test-Pod": "1.51:1.24:noarch", "libpipeline1": "1.4.1:150000.3.2.1:x86_64", "perl-Bootloader": "1.8.2:150600.3.3.1:x86_64", "perl-X11-Protocol": "0.56:1.24:x86_64", "libtasn1-6": "4.13:150000.4.14.1:x86_64", "wget": "1.20.3:150600.19.12.1:x86_64", "libdrm_radeon1": "2.4.118:150600.1.4:x86_64", "mozilla-nspr": "4.36.2:150000.3.36.1:x86_64", "python3-pycparser": "2.17:150000.3.5.1:noarch", "libmpc3": "1.1.0:1.47:x86_64", "sqlite3-tcl": "3.51.3:150000.3.39.1:x86_64", "python3-iniconfig": "1.1.1:150000.1.13.1:noarch", "perl-IO-Socket-SSL": "2.84.0:150600.1.2:noarch", "unzip": "6.00:150000.4.14.1:x86_64", "python3-chardet": "3.0.4:150000.5.6.1:noarch", "perl-Test-Pod-Coverage": "1.10:1.23:noarch", "libcares2": "1.19.1:150000.3.26.1:x86_64", "python3-appdirs": "1.4.3:150000.3.3.1:noarch", "perl-HTTP-Daemon": "6.01:150000.3.5.1:noarch", "cracklib-dict-small": "2.9.11:150600.1.90:x86_64", "python3-contextvars": "2.4:150000.1.3.1:noarch", "hdparm": "9.62:150400.3.5.2:x86_64", "libjson-c5": "0.16:150600.1.4:x86_64", "python3-packaging": "21.3:150200.3.6.1:noarch", "libatomic1": "15.2.0+git10201:150000.1.9.1:x86_64", "libsepol2": "3.5:150600.1.49:x86_64", "python3-urwid": "2.0.1:1.15:x86_64", "liblsan0": "15.2.0+git10201:150000.1.9.1:x86_64", "man-pages": "6.04:150600.1.2:noarch", "ruby2.5-rubygem-simpleidn": "0.0.9:1.17:x86_64", "libxcb-dri3-0": "1.13:150000.3.11.1:x86_64", "sed": "4.9:150600.1.4:x86_64", "ruby2.5-rubygem-fast_gettext": "1.6.0:1.18:x86_64", "libxcb-shm0": "1.13:150000.3.11.1:x86_64", "zstd": "1.5.5:150600.1.3:x86_64", "girepository-1_0": "1.78.1:150600.2.3:x86_64", "glibc-devel": "2.38:150600.14.43.1:x86_64", "libsemanage2": "3.5:150600.1.48:x86_64", "yast2-transfer": "4.6.0:150600.1.5:x86_64", "Mesa-libva": "23.3.4:150600.83.3.1:x86_64", "augeas-lenses": "1.14.1:150600.3.3.1:x86_64", "python3-more-itertools": "8.10.0:150400.10.1:noarch", "gcc7": "7.5.0+r278197:150000.4.44.1:x86_64", "libX11-data": "1.8.7:150600.3.6.1:noarch", "ruby2.5-rubygem-nokogiri": "1.8.5:150400.14.6.1:x86_64", "libgd3": "2.2.5:11.3.1:x86_64", "libblkid1": "2.39.3:150600.4.18.1:x86_64", "python3-pyOpenSSL": "21.0.0:150400.10.1:noarch", "libglvnd": "1.7.0:150600.1.2:x86_64", "libgmodule-2_0-0": "2.78.6:150600.4.35.1:x86_64", "python3-pyrsistent": "0.14.4:150100.3.4.1:x86_64", "php8-dom": "8.2.30:150600.3.25.1:x86_64", "libnfsidmap1": "1.0:150600.28.12.1:x86_64", "shim": "16.1:150300.4.31.3:x86_64", "php8-ctype": "8.2.30:150600.3.25.1:x86_64", "libtextstyle0": "0.21.1:150600.3.3.2:x86_64", "python3-urllib3": "1.25.10:150300.4.24.1:noarch", "Mesa-gallium": "23.3.4:150600.83.3.1:x86_64", "login_defs": "4.17.2:150600.17.18.1:noarch", "python3-pyzmq": "17.1.2:150000.3.8.1:x86_64", "php8-tokenizer": "8.2.30:150600.3.25.1:x86_64", "permissions": "20240826:150600.10.18.2:x86_64", "ruby2.5-rubygem-cfa": "1.0.2:1.33:x86_64", "php8-zlib": "8.2.30:150600.3.25.1:x86_64", "timezone": "2025b:150600.91.6.2:x86_64", "systemd": "254.27:150600.4.62.1:x86_64", "php8-pcntl": "8.2.30:150600.3.25.1:x86_64", "libsystemd0": "254.27:150600.4.62.1:x86_64", "scout-command-not-found": "0.2.7+20230124.b4e3468:150500.1.1:noarch", "xdg-utils": "1.1.3+20210805:150500.1.1:noarch", "libldb2": "2.8.2:150600.3.6.1:x86_64", "python3-oauthlib": "2.0.6:150000.3.6.1:noarch", "sharutils-lang": "4.15.2:150600.17.3:noarch", "libnl3-200": "3.9.0:150600.15.4.4:x86_64", "kmod": "29:150600.13.3.1:x86_64", "lshw": "B.02.20:150200.3.18.2:x86_64", "e2fsprogs": "1.47.0:150600.4.6.2:x86_64", "rsync": "3.2.7:150600.3.14.1:x86_64", "babeltrace": "1.5.8:150300.3.2.1:x86_64", "attr": "2.4.47:2.19:x86_64", "apparmor-parser": "3.1.7:150600.5.9.1:x86_64", "libbasicobjects0": "0.1.1:3.3.1:x86_64", "libXau6": "1.0.8:1.26:x86_64", "libsuseconnect": "1.13.0:150600.3.11.1:x86_64", "libjansson4": "2.14:150000.3.5.1:x86_64", "libldapcpp1": "0.3.1:1.33:x86_64", "yast2": "4.6.8:150600.1.1:x86_64", "libtss2-rc0": "3.1.1:150600.2.1:x86_64", "system-user-ftp": "20170617:150400.24.2.1:noarch", "traceroute": "2.0.21:150000.3.3.1:x86_64", "libnftables1": "0.9.8:150400.6.3.1:x86_64", "evmctl": "1.4:150600.7.3:x86_64", "libdebuginfod1": "0.185:150400.5.8.2:x86_64", "libsss_idmap0": "2.10.2:150600.3.41.1:x86_64", "python3-apparmor": "3.1.7:150600.5.9.1:x86_64", "ibmtss-base": "2.1.1:150600.3.3.2:noarch", "sssd": "2.10.2:150600.3.41.1:x86_64", "libtspi1": "0.3.15:150600.10.3.1:x86_64", "apparmor-utils-lang": "3.1.7:150600.5.9.1:noarch", "tpm-tools": "1.3.9.2:150600.7.3:x86_64", "yast2-support": "4.6.0:150600.1.2:noarch", "glibc": "2.38:150600.14.43.1:x86_64", "system-user-tftp": "20170617:150400.24.2.1:noarch", "which": "2.21:2.20:x86_64", "yast2-audit-laf": "4.6.0:150600.1.2:noarch", "libgpg-error0": "1.47:150600.1.3:x86_64", "libini_config5": "1.3.1:3.3.1:x86_64", "hostname": "3.16:2.22:x86_64", "dhcp-client": "4.3.6.P1:150000.6.22.1:x86_64", "libcap2": "2.63:150400.3.3.1:x86_64", "libldap-2_5-0": "2.5.20+11:150500.11.38.1:x86_64", "libicu65_1-ledata": "65.1:150200.4.15.1:noarch", "python3-salt": "3006.0:150500.4.68.2:x86_64", "libldap-2_4-2": "2.4.46:150600.25.3.1:x86_64", "trousers": "0.3.15:150600.10.3.1:x86_64", "mozilla-nss-certs": "3.112.3:150400.3.63.1:x86_64", "yast2-packager": "4.6.10:150600.3.3.1:x86_64", "libcurl4": "8.14.1:150600.4.40.1:x86_64", "sssd-krb5-common": "2.10.2:150600.3.41.1:x86_64", "gptfdisk": "1.0.8:150400.1.7:x86_64", "yast2-country": "4.6.7:150600.3.3.2:x86_64", "openSUSE-release-dvd": "15.6:lp156.417.4.1:x86_64", "ibmtss": "2.1.1:150600.3.3.2:x86_64", "libprocps8": "3.3.17:150000.7.42.1:x86_64", "yast2-nfs-client": "4.6.2:150600.1.2:noarch", "libpopt0": "1.16:3.22:x86_64", "procps": "3.3.17:150000.7.42.1:x86_64", "yast2-tune": "4.6.0:150600.1.2:x86_64", "libgcc_s1": "15.2.0+git10201:150000.1.9.1:x86_64", "libfontconfig1": "2.14.2:150600.1.3:x86_64", "yast2-sudo": "4.6.1:150600.1.2:noarch", "libxml2-2": "2.10.3:150500.5.38.1:x86_64", "ethtool": "6.4:150600.7.3.2:x86_64", "libpsl5": "0.20.1:150000.3.3.1:x86_64", "pam-config": "1.1:150600.16.8.1:x86_64", "liblttng-ust0": "2.12.0:1.30:x86_64", "openSUSE-release": "15.6:lp156.417.4.1:x86_64", "samba-client-libs": "4.19.8+git.435.78ced6cf30d:150600.3.21.1:x86_64", "libpmemblk1": "1.11.1:150400.1.10:x86_64", "libctf-nobfd0": "2.45:150100.7.57.1:x86_64", "perl-Digest-MD4": "1.9:1.28:x86_64", "fio": "3.23:150600.18.6:x86_64", "liburing2": "2.1:150400.2.4:x86_64", "vim": "9.2.0110:150500.20.43.1:x86_64", "perf": "6.4.0.git38565.b555487b73:150600.3.20.1:x86_64", "systemd-default-settings": "0.10:150300.3.7.1:noarch", "system-group-hardware": "20170617:150400.24.2.1:noarch", "libjbig2": "2.1:150000.3.5.1:x86_64", "fdupes": "2.3.0:150400.3.3.1:x86_64", "libXi6": "1.7.9:3.2.1:x86_64", "libvulkan1": "1.3.275.0:150600.1.2:x86_64", "libxslt1": "1.1.34:150400.3.16.1:x86_64", "python3-base": "3.6.15:150300.10.109.1:x86_64", "make": "4.2.1:7.3.2:x86_64", "liburcu6": "0.12.1:1.30:x86_64", "libgio-2_0-0": "2.78.6:150600.4.35.1:x86_64", "perl-Net-SSLeay": "1.92:150600.1.2:x86_64", "libmaxminddb0": "1.4.3:150000.1.8.1:x86_64", "libproxy1": "0.5.3:150600.4.6.2:x86_64", "system-user-wwwrun": "20170617:150400.24.2.1:noarch", "libyaml-0-2": "0.1.7:150000.3.4.1:x86_64", "python3-pyasn1": "0.4.2:150000.3.16.1:noarch", "perl-Pod-Coverage": "0.23:1.23:noarch", "terminfo": "6.1:150000.5.30.1:x86_64", "python3-certifi": "2018.1.18:150000.3.6.1:noarch", "perl-HTTP-Negotiate": "6.01:1.23:noarch", "btrfsprogs-udev-rules": "6.5.1:150600.2.4:noarch", "python3-six": "1.14.0:150200.15.1:noarch", "libasan4": "7.5.0+r278197:150000.4.44.1:x86_64", "libsemanage-conf": "3.5:150600.1.48:x86_64", "python3-MarkupSafe": "1.0:1.29:x86_64", "libxcb-dri2-0": "1.13:150000.3.11.1:x86_64", "pv": "1.7.24:150600.3.3:x86_64", "ruby2.5-rubygem-abstract_method": "1.2.1:1.28:x86_64", "busybox": "1.37.0:150500.10.17.1:x86_64", "cracklib": "2.9.11:150600.1.90:x86_64", "yast2-hardware-detection": "4.6.0:150600.1.5:x86_64", "libstdc++6-devel-gcc7": "7.5.0+r278197:150000.4.44.1:x86_64", "glibc-i18ndata": "2.38:150600.14.43.1:noarch", "python3-gobject": "3.42.2:150400.10.23:x86_64", "perl-LWP-Protocol-https": "6.06:150000.3.3.1:noarch", "libext2fs2": "1.47.0:150600.4.6.2:x86_64", "python3-py": "1.10.0:150100.5.15.1:noarch", "Mesa-demo-x": "8.3.0:150000.3.6.1:x86_64", "libsmartcols1": "2.39.3:150600.4.18.1:x86_64", "python3-requests": "2.25.1:150300.3.18.1:noarch", "php8-sqlite": "8.2.30:150600.3.25.1:x86_64", "openssh-common": "9.6p1:150600.6.34.1:x86_64", "ruby2.5-rubygem-cheetah": "0.5.2:1.33:x86_64", "php8-posix": "8.2.30:150600.3.25.1:x86_64", "libgobject-2_0-0": "2.78.6:150600.4.35.1:x86_64", "python3-rtslib-fb": "2.1.75:150500.1.4:noarch", "sharutils": "4.15.2:150600.17.3:x86_64", "libhogweed6": "3.9.1:150600.3.2.1:x86_64", "udev": "254.27:150600.4.62.1:x86_64", "acl": "2.2.52:4.3.1:x86_64", "cryptsetup": "2.7.0:150600.3.3.1:x86_64", "qemu-guest-agent": "8.2.10:150600.3.46.1:x86_64", "libimaevm3": "1.4:150600.7.3:x86_64", "libgdbm4": "1.12:1.418:x86_64", "fonts-config": "20200609+git0.42e2b1b:150600.18.2:noarch", "python3-notify2": "0.3.1:150400.5.68:noarch", "libwrap0": "7.6:1.433:x86_64", "yast2-proxy": "4.6.0:150600.1.2:noarch", "libbrotlicommon1": "1.0.7:150200.3.5.1:x86_64", "xinetd": "2.3.15.4:bp156.3.9:x86_64", "liblogging0": "1.0.6:3.21:x86_64", "yast2-services-manager": "4.6.1:150600.1.2:noarch", "libkeyutils1": "1.6.3:5.6.1:x86_64", "dhcp-server": "4.3.6.P1:150000.6.22.1:x86_64", "libcbor0_10": "0.10.1:150500.1.1:x86_64", "chrony-pool-suse": "4.1:150400.21.8.1:noarch", "perl-base": "5.26.1:150300.17.20.1:x86_64", "libstdc++6-pp": "15.2.0+git10201:150000.1.9.1:x86_64", "iputils": "20221126:150500.3.14.1:x86_64", "libpolkit-gobject-1-0": "121:150500.3.6.1:x86_64", "libzck1": "1.1.16:150600.9.3:x86_64", "ntfsprogs": "2022.5.17:150000.3.21.1:x86_64", "ca-certificates": "2+git20240416.98ae794:150300.4.3.3:noarch", "openssh-server": "9.6p1:150600.6.34.1:x86_64", "diffutils": "3.6:4.3.1:x86_64", "libibmtss2": "2.1.1:150600.3.3.2:x86_64", "blktrace": "1.1.0+git.20170126:3.6.1:x86_64", "docker": "28.5.1_ce:150000.243.1:x86_64", "libssh-config": "0.9.8:150600.11.9.1:x86_64", "libiperf0": "3.19.1:150000.3.15.1:x86_64", "quota": "4.05:3.9.1:x86_64", "yast2-ntp-client": "4.6.0:150600.1.3:noarch", "libnghttp2-14": "1.40.0:150600.23.2:x86_64", "libfido2-1": "1.13.0:150600.10.3:x86_64", "yast2-dhcp-server": "4.6.0:150600.1.2:noarch", "libunistring2": "0.9.10:1.1:x86_64", "cyrus-sasl": "2.1.28:150600.7.14.1:x86_64", "yast2-ftp-server": "4.6.0:150600.1.2:noarch", "libaugeas0": "1.14.1:150600.3.3.1:x86_64", "device-mapper": "2.03.22_1.02.196:150600.3.9.3:x86_64", "libdw1": "0.185:150400.5.8.3:x86_64", "cyrus-sasl-gssapi": "2.1.28:150600.7.14.1:x86_64", "rdma-core": "49.1:150600.2.5:x86_64", "catatonit": "0.2.0:150500.3.3.1:x86_64", "perl-XML-NamespaceSupport": "1.12:1.24:noarch", "libefa1": "49.1:150600.2.5:x86_64", "binutils": "2.45:150100.7.57.1:x86_64", "perl-X500-DN": "0.29:1.22:x86_64", "git-core": "2.51.0:150600.3.15.1:x86_64", "libfstrm0": "0.6.1:150300.9.5.1:x86_64", "system-user-nobody": "20170617:150400.24.2.1:noarch", "libXfixes3": "6.0.0:150400.1.4:x86_64", "libtirpc3": "1.3.4:150300.3.23.1:x86_64", "yast2-perl-bindings": "4.6.0:150600.1.5:x86_64", "libmpx2": "8.2.1+r264010:150000.1.6.4:x86_64", "libasm1": "0.185:150400.5.8.3:x86_64", "libutempter0": "1.1.6:3.42:x86_64", "libxcrypt-devel": "4.4.15:150300.4.7.1:x86_64", "elfutils": "0.185:150400.5.8.3:x86_64", "python3-pyparsing": "2.4.7:150300.3.3.1:noarch", "perl-Devel-Symdump": "2.18:1.24:noarch", "dosfstools": "4.1:3.6.1:x86_64", "python3-M2Crypto": "0.44.0:150600.19.3.1:x86_64", "perl-Try-Tiny": "0.30:1.17:noarch", "libsnappy1": "1.1.8:3.3.1:x86_64", "screen": "4.6.2:150000.5.8.1:x86_64", "libdrm_amdgpu1": "2.4.118:150600.1.4:x86_64", "netcfg": "11.6:150000.3.6.1:noarch", "python3-idna": "2.6:150000.3.6.1:noarch", "perl-WWW-RobotRules": "6.02:1.23:noarch", "libmetalink3": "0.1.3:150000.3.2.1:x86_64", "ruby2.5": "2.5.9:150000.4.54.1:x86_64", "Mesa-libglapi0": "23.3.4:150600.83.3.1:x86_64", "libbsd0": "0.8.7:150600.16.2:x86_64", "python3-apipkg": "2.1.0:150500.1.1:noarch", "libgomp1": "15.2.0+git10201:150000.1.9.1:x86_64", "libtdb1": "1.4.9:150600.1.4:x86_64", "ruby2.5-rubygem-ruby-augeas": "0.5.0:1.31:x86_64", "libxcb-present0": "1.13:150000.3.11.1:x86_64", "targetcli-fb-common": "2.1.54:150600.11.2:noarch", "at-spi2-core": "2.50.0:150600.1.2:x86_64", "perl-HTML-Parser": "3.830.0:150000.3.3.1:x86_64", "libpwquality1": "1.4.5:150600.2.3:x86_64", "logrotate": "3.18.1:150400.3.10.1:x86_64", "gcc7-c++": "7.5.0+r278197:150000.4.44.1:x86_64", "libapparmor1": "3.1.7:150600.5.9.1:x86_64", "python3-looseversion": "1.0.2:150100.3.3.1:noarch", "gcc-c++": "7:3.9.1:x86_64", "libkmod2": "29:150600.13.3.1:x86_64", "aaa_base-extras": "84.87+git20180409.04c9dae:150300.10.28.2:x86_64", "Mesa-libGL1": "23.3.4:150600.83.3.1:x86_64", "libyui16": "4.5.3:150600.6.2.1:x86_64", "python3-PyJWT": "2.4.0:150200.3.8.1:noarch", "php8-xmlwriter": "8.2.30:150600.3.25.1:x86_64", "ruby-solv": "0.7.34:150600.8.19.2:x86_64", "wicked": "0.6.77:150600.11.15.1:x86_64", "perl-XML-Twig": "3.52:3.3.1:noarch", "bind-utils": "9.18.33:150600.3.18.1:x86_64", "sysconfig-netconfig": "0.85.10:150200.15.1:x86_64", "procmail": "3.22:2.34:x86_64", "libfdisk1": "2.39.3:150600.4.18.1:x86_64", "haveged": "1.9.14:150600.11.3.1:x86_64", "exfatprogs": "1.0.4:150300.3.12.1:x86_64", "initviocons": "0.5:1.27:x86_64", "suseconnect-ruby-bindings": "1.13.0:150600.3.11.1:x86_64", "libref_array1": "0.1.5:3.3.1:x86_64", "libmnl0": "1.0.4:1.25:x86_64"} Linux 6.4.0.150600.23.92.default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64 x86_64 GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"gcc (SUSE Linux) 7.5.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "70500", "CONFIG_CC_IS_CLANG": "not set", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_IS_LLVM": "not set", "CONFIG_AS_VERSION": "24500", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24500", "CONFIG_LD_IS_LLD": "not set", "CONFIG_LLD_VERSION": "0", "CONFIG_RUST_IS_AVAILABLE": "not set", "CONFIG_CC_CAN_LINK": "y", "CONFIG_CC_CAN_LINK_STATIC": "not set", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "not set", "CONFIG_TOOLS_SUPPORT_RELR": "not set", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_PAHOLE_VERSION": "125", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-150600.23.92-default\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "y", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "y", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_GENERIC_IRQ_INJECTION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_GENERIC_IRQ_CHIP": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "not set", "CONFIG_NO_HZ_FULL": "y", "CONFIG_CONTEXT_TRACKING_USER": "y", "CONFIG_CONTEXT_TRACKING_USER_FORCE": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "y", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_USERMODE_DRIVER": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "y", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "y", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "not set", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "y", "CONFIG_VIRT_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "y", "CONFIG_PSI_DEFAULT_DISABLED": "y", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_NEED_SRCU_NMI_SAFE": "not set", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_RCU_NOCB_CPU": "y", "CONFIG_RCU_NOCB_CPU_DEFAULT_ALL": "not set", "CONFIG_RCU_LAZY": "not set", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "18", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "15", "CONFIG_PRINTK_INDEX": "y", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC11_NO_ARRAY_BOUNDS": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_NUMA_BALANCING": "y", "CONFIG_NUMA_BALANCING_DEFAULT_ENABLED": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_KMEM": "y", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "y", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "y", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CGROUP_HUGETLB": "y", "CONFIG_CPUSETS": "y", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "y", "CONFIG_CGROUP_DEBUG": "not set", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "y", "CONFIG_BOOT_CONFIG_FORCE": "not set", "CONFIG_BOOT_CONFIG_EMBED": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "y", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_BASE_FULL": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "y", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_KALLSYMS_BASE_RELATIVE": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_DEBUG_RSEQ": "not set", "CONFIG_EMBEDDED": "not set", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_GUEST_PERF_EVENTS": "y", "CONFIG_PC104": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "y", "CONFIG_TRACEPOINTS": "y", "CONFIG_CRASH_CORE": "y", "CONFIG_KEXEC_CORE": "y", "CONFIG_HAVE_IMA_KEXEC": "y", "CONFIG_KEXEC": "y", "CONFIG_KEXEC_FILE": "y", "CONFIG_KEXEC_SIG": "y", "CONFIG_KEXEC_SIG_FORCE": "not set", "CONFIG_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_KEXEC_JUMP": "not set", "CONFIG_CRASH_DUMP": "y", "CONFIG_CRASH_HOTPLUG": "y", "CONFIG_CRASH_MAX_MEMORY_RANGES": "8192", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_DYNAMIC_PHYSICAL_MASK": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_FEATURE_NAMES": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_MPPARSE": "y", "CONFIG_GOLDFISH": "not set", "CONFIG_X86_CPU_RESCTRL": "y", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_NUMACHIP": "not set", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_UV": "y", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "y", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_XXL": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "y", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "y", "CONFIG_XEN_PV": "y", "CONFIG_XEN_512GB": "not set", "CONFIG_XEN_PV_SMP": "y", "CONFIG_XEN_PV_DOM0": "y", "CONFIG_XEN_PVHVM": "y", "CONFIG_XEN_PVHVM_SMP": "y", "CONFIG_XEN_PVHVM_GUEST": "y", "CONFIG_XEN_SAVE_RESTORE": "y", "CONFIG_XEN_DEBUG_FS": "y", "CONFIG_XEN_PVH": "y", "CONFIG_XEN_DOM0": "y", "CONFIG_XEN_PV_MSR_SAFE": "y", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "y", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "y", "CONFIG_ACRN_GUEST": "y", "CONFIG_INTEL_TDX_GUEST": "y", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "not set", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "y", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_TSC": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_PROCESSOR_SELECT": "not set", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "y", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "y", "CONFIG_NR_CPUS_RANGE_BEGIN": "8192", "CONFIG_NR_CPUS_RANGE_END": "8192", "CONFIG_NR_CPUS_DEFAULT": "8192", "CONFIG_NR_CPUS": "8192", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "y", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "y", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "m", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "m", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "y", "CONFIG_VM86": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "m", "CONFIG_X86_CPUID": "m", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_X86_MEM_ENCRYPT": "y", "CONFIG_AMD_MEM_ENCRYPT": "y", "CONFIG_NUMA": "y", "CONFIG_AMD_NUMA": "y", "CONFIG_X86_64_ACPI_NUMA": "y", "CONFIG_NUMA_EMU": "y", "CONFIG_NODES_SHIFT": "10", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_MEMORY_PROBE": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY_DEVICE": "y", "CONFIG_X86_PMEM_LEGACY": "m", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_ARCH_USES_PG_UNCACHED": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "not set", "CONFIG_X86_CET": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_X86_INTEL_TSX_MODE_OFF": "not set", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "y", "CONFIG_X86_SGX": "y", "CONFIG_X86_USER_SHADOW_STACK": "y", "CONFIG_INTEL_TDX_HOST": "y", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "y", "CONFIG_EFI_FAKE_MEMMAP": "not set", "CONFIG_EFI_RUNTIME_MAP": "y", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "y", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "not set", "CONFIG_HZ": "250", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SELECTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0xa", "CONFIG_ADDRESS_MASKING": "not set", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_BOOTPARAM_HOTPLUG_CPU0": "not set", "CONFIG_DEBUG_HOTPLUG_CPU0": "not set", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_LIVEPATCH": "y", "CONFIG_LIVEPATCH_IPA_CLONES": "y", "CONFIG_CC_HAS_SLS": "not set", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_SPECULATION_MITIGATIONS": "y", "CONFIG_PAGE_TABLE_ISOLATION": "y", "CONFIG_RETPOLINE": "y", "CONFIG_RETHUNK": "y", "CONFIG_CPU_UNRET_ENTRY": "y", "CONFIG_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_CPU_IBPB_ENTRY": "y", "CONFIG_CPU_IBRS_ENTRY": "y", "CONFIG_CPU_SRSO": "y", "CONFIG_GDS_FORCE_MITIGATION": "not set", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_MITIGATION_VMSCAPE": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_ARCH_HIBERNATION_HEADER": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_SUSPEND_SKIP_SYNC": "not set", "CONFIG_HIBERNATE_CALLBACKS": "y", "CONFIG_HIBERNATION": "y", "CONFIG_HIBERNATE_VERIFICATION": "y", "CONFIG_HIBERNATE_VERIFICATION_FORCE": "not set", "CONFIG_HIBERNATION_SNAPSHOT_DEV": "y", "CONFIG_PM_STD_PARTITION": "\\"\\"", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_DPM_WATCHDOG": "y", "CONFIG_DPM_WATCHDOG_TIMEOUT": "60", "CONFIG_PM_TRACE": "y", "CONFIG_PM_TRACE_RTC": "y", "CONFIG_PM_CLK": "y", "CONFIG_PM_GENERIC_DOMAINS": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_PM_GENERIC_DOMAINS_SLEEP": "y", "CONFIG_ENERGY_MODEL": "y", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_TABLE_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "y", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "m", "CONFIG_ACPI_AC": "m", "CONFIG_ACPI_BATTERY": "m", "CONFIG_ACPI_BUTTON": "m", "CONFIG_ACPI_TINY_POWER_BUTTON": "m", "CONFIG_ACPI_TINY_POWER_BUTTON_SIGNAL": "38", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "m", "CONFIG_ACPI_TAD": "m", "CONFIG_ACPI_DOCK": "y", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_IPMI": "m", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "m", "CONFIG_ACPI_THERMAL": "m", "CONFIG_ACPI_PLATFORM_PROFILE": "m", "CONFIG_ACPI_CUSTOM_DSDT_FILE": "\\"\\"", "CONFIG_ACPI_CUSTOM_DSDT": "not set", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "y", "CONFIG_ACPI_PCI_SLOT": "y", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_MEMORY": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "m", "CONFIG_ACPI_HED": "y", "CONFIG_ACPI_CUSTOM_METHOD": "not set", "CONFIG_ACPI_BGRT": "y", "CONFIG_ACPI_REDUCED_HARDWARE_ONLY": "not set", "CONFIG_ACPI_NFIT": "m", "CONFIG_NFIT_SECURITY_DEBUG": "not set", "CONFIG_ACPI_NUMA": "y", "CONFIG_ACPI_HMAT": "y", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "y", "CONFIG_ACPI_APEI_GHES": "y", "CONFIG_ACPI_APEI_PCIEAER": "y", "CONFIG_ACPI_APEI_MEMORY_FAILURE": "y", "CONFIG_ACPI_APEI_EINJ": "m", "CONFIG_ACPI_APEI_ERST_DEBUG": "not set", "CONFIG_ACPI_DPTF": "y", "CONFIG_DPTF_POWER": "m", "CONFIG_DPTF_PCH_FIVR": "m", "CONFIG_ACPI_WATCHDOG": "y", "CONFIG_ACPI_EXTLOG": "m", "CONFIG_ACPI_ADXL": "y", "CONFIG_ACPI_CONFIGFS": "m", "CONFIG_ACPI_PFRUT": "m", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "y", "CONFIG_PMIC_OPREGION": "y", "CONFIG_XPOWER_PMIC_OPREGION": "y", "CONFIG_BXT_WC_PMIC_OPREGION": "y", "CONFIG_TPS68470_PMIC_OPREGION": "y", "CONFIG_ACPI_VIOT": "y", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "not set", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "m", "CONFIG_CPU_FREQ_GOV_USERSPACE": "m", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "m", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "m", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "m", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "m", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "m", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_X86_SPEEDSTEP_LIB": "not set", "CONFIG_CPUFREQ_ARCH_CUR_FREQ": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "y", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "y", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "m", "CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED": "not set", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_PCI_XEN": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_PCI_CNB20LE_QUIRK": "not set", "CONFIG_ISA_BUS": "not set", "CONFIG_ISA_DMA_API": "y", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_HAVE_KVM": "y", "CONFIG_KVM_COMMON": "y", "CONFIG_HAVE_KVM_PFNCACHE": "y", "CONFIG_HAVE_KVM_IRQCHIP": "y", "CONFIG_HAVE_KVM_IRQ_ROUTING": "y", "CONFIG_HAVE_KVM_DIRTY_RING": "y", "CONFIG_HAVE_KVM_DIRTY_RING_TSO": "y", "CONFIG_HAVE_KVM_DIRTY_RING_ACQ_REL": "y", "CONFIG_KVM_MMIO": "y", "CONFIG_KVM_ASYNC_PF": "y", "CONFIG_HAVE_KVM_MSI": "y", "CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT": "y", "CONFIG_KVM_VFIO": "y", "CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT": "y", "CONFIG_KVM_COMPAT": "y", "CONFIG_HAVE_KVM_IRQ_BYPASS": "y", "CONFIG_HAVE_KVM_NO_POLL": "y", "CONFIG_KVM_XFER_TO_GUEST_WORK": "y", "CONFIG_HAVE_KVM_PM_NOTIFIER": "y", "CONFIG_KVM_GENERIC_HARDWARE_ENABLING": "y", "CONFIG_KVM_GENERIC_MMU_NOTIFIER": "y", "CONFIG_KVM_GENERIC_MEMORY_ATTRIBUTES": "y", "CONFIG_KVM_PRIVATE_MEM": "y", "CONFIG_KVM_GENERIC_PRIVATE_MEM": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "m", "CONFIG_KVM_WERROR": "not set", "CONFIG_KVM_SW_PROTECTED_VM": "y", "CONFIG_KVM_INTEL": "m", "CONFIG_X86_SGX_KVM": "y", "CONFIG_KVM_AMD": "m", "CONFIG_KVM_AMD_SEV": "y", "CONFIG_KVM_SMM": "y", "CONFIG_KVM_HYPERV": "y", "CONFIG_KVM_XEN": "not set", "CONFIG_KVM_PROVE_MMU": "not set", "CONFIG_KVM_EXTERNAL_WRITE_TRACKING": "y", "CONFIG_KVM_MAX_NR_VCPUS": "4096", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "y", "CONFIG_STATIC_KEYS_SELFTEST": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_64BIT_ALIGNED_ACCESS": "not set", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_ARCH_WANT_PMD_MKWRITE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_HAVE_RELIABLE_STACKTRACE": "y", "CONFIG_HAVE_ARCH_HASH": "not set", "CONFIG_ISA_BUS_API": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_EPHEMERAL_INODES": "not set", "CONFIG_CPU_NO_EFFICIENT_FFS": "not set", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "y", "CONFIG_ARCH_OPTIONAL_KERNEL_RWX": "not set", "CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_ARCH_HAS_CC_PLATFORM": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_HAVE_ARCH_NODE_DEV_GROUP": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_BASE_SMALL": "0", "CONFIG_MODULE_SIG_FORMAT": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUGFS": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "y", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "y", "CONFIG_MODVERSIONS": "y", "CONFIG_ASM_MODVERSIONS": "y", "CONFIG_MODULE_SRCVERSION_ALL": "y", "CONFIG_MODULE_SIG": "y", "CONFIG_MODULE_SIG_FORCE": "not set", "CONFIG_MODULE_SIG_ALL": "not set", "CONFIG_MODULE_SIG_SHA1": "not set", "CONFIG_MODULE_SIG_SHA224": "not set", "CONFIG_MODULE_SIG_SHA256": "y", "CONFIG_MODULE_SIG_SHA384": "not set", "CONFIG_MODULE_SIG_SHA512": "not set", "CONFIG_MODULE_SIG_HASH": "\\"sha256\\"", "CONFIG_MODULE_COMPRESS_NONE": "y", "CONFIG_MODULE_COMPRESS_GZIP": "not set", "CONFIG_MODULE_COMPRESS_XZ": "not set", "CONFIG_MODULE_COMPRESS_ZSTD": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_RQ_ALLOC_TIME": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "y", "CONFIG_BLK_DEV_INTEGRITY": "y", "CONFIG_BLK_DEV_INTEGRITY_T10": "m", "CONFIG_BLK_DEV_ZONED": "y", "CONFIG_BLK_DEV_THROTTLING": "y", "CONFIG_BLK_DEV_THROTTLING_LOW": "not set", "CONFIG_BLK_WBT": "y", "CONFIG_BLK_WBT_MQ": "y", "CONFIG_BLK_CGROUP_IOLATENCY": "y", "CONFIG_BLK_CGROUP_FC_APPID": "y", "CONFIG_BLK_CGROUP_IOCOST": "y", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_DEBUG_FS_ZONED": "y", "CONFIG_BLK_SED_OPAL": "y", "CONFIG_BLK_INLINE_ENCRYPTION": "y", "CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK": "y", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "y", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "y", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "y", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "y", "CONFIG_UNIXWARE_DISKLABEL": "y", "CONFIG_LDM_PARTITION": "y", "CONFIG_LDM_DEBUG": "not set", "CONFIG_SGI_PARTITION": "y", "CONFIG_ULTRIX_PARTITION": "y", "CONFIG_SUN_PARTITION": "y", "CONFIG_KARMA_PARTITION": "y", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "y", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_PREEMPT_NOTIFIERS": "y", "CONFIG_PADATA": "y", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_ZPOOL": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "y", "CONFIG_ZSWAP_DEFAULT_ON": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO": "y", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT": "\\"lzo\\"", "CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD": "y", "CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD": "not set", "CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC": "not set", "CONFIG_ZSWAP_ZPOOL_DEFAULT": "\\"zbud\\"", "CONFIG_ZBUD": "y", "CONFIG_Z3FOLD": "m", "CONFIG_ZSMALLOC": "y", "CONFIG_ZSMALLOC_STAT": "not set", "CONFIG_ZSMALLOC_CHAIN_SIZE": "8", "CONFIG_SLAB": "not set", "CONFIG_SLUB": "y", "CONFIG_SLUB_TINY": "not set", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "y", "CONFIG_SLAB_FREELIST_HARDENED": "y", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "y", "CONFIG_COMPAT_BRK": "not set", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_VMEMMAP": "y", "CONFIG_HAVE_FAST_GUP": "y", "CONFIG_ARCH_KEEP_MEMBLOCK": "y", "CONFIG_NUMA_KEEP_MEMINFO": "y", "CONFIG_MEMORY_ISOLATION": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_HAVE_BOOTMEM_INFO_NODE": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE": "y", "CONFIG_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE": "not set", "CONFIG_MEMORY_HOTREMOVE": "y", "CONFIG_MHP_MEMMAP_ON_MEMORY": "y", "CONFIG_SPLIT_PTLOCK_CPUS": "4", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_DEVICE_MIGRATION": "y", "CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION": "y", "CONFIG_ARCH_ENABLE_THP_MIGRATION": "y", "CONFIG_HUGETLB_PAGE_SIZE_VARIABLE": "not set", "CONFIG_CONTIG_ALLOC": "y", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "y", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "65536", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "y", "CONFIG_HWPOISON_INJECT": "m", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "y", "CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS": "y", "CONFIG_TRANSPARENT_HUGEPAGE_MADVISE": "not set", "CONFIG_THP_SWAP": "y", "CONFIG_READ_ONLY_THP_FOR_FS": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_USE_PERCPU_NUMA_NODE_ID": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_FRONTSWAP": "y", "CONFIG_CMA": "y", "CONFIG_CMA_DEBUG": "not set", "CONFIG_CMA_DEBUGFS": "not set", "CONFIG_CMA_SYSFS": "not set", "CONFIG_CMA_AREAS": "19", "CONFIG_MEM_SOFT_DIRTY": "y", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "y", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ARCH_HAS_ZONE_DMA_SET": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_ZONE_DEVICE": "y", "CONFIG_HMM_MIRROR": "y", "CONFIG_GET_FREE_REGION": "y", "CONFIG_DEVICE_PRIVATE": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MAPPING_DIRTY_HELPERS": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "y", "CONFIG_USERFAULTFD": "y", "CONFIG_HAVE_ARCH_USERFAULTFD_WP": "y", "CONFIG_HAVE_ARCH_USERFAULTFD_MINOR": "y", "CONFIG_PTE_MARKER_UFFD_WP": "y", "CONFIG_LRU_GEN": "y", "CONFIG_LRU_GEN_ENABLED": "not set", "CONFIG_LRU_GEN_STATS": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_WANT_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_NET_REDIRECT": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_PACKET": "m", "CONFIG_PACKET_DIAG": "m", "CONFIG_UNIX": "y", "CONFIG_UNIX_SCM": "y", "CONFIG_AF_UNIX_OOB": "not set", "CONFIG_UNIX_DIAG": "m", "CONFIG_TLS": "m", "CONFIG_TLS_DEVICE": "y", "CONFIG_TLS_TOE": "y", "CONFIG_XFRM": "y", "CONFIG_XFRM_OFFLOAD": "y", "CONFIG_XFRM_ALGO": "m", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "m", "CONFIG_XFRM_INTERFACE": "m", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "m", "CONFIG_XFRM_ESP": "m", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XFRM_ESPINTCP": "y", "CONFIG_SMC": "m", "CONFIG_SMC_DIAG": "m", "CONFIG_XDP_SOCKETS": "y", "CONFIG_XDP_SOCKETS_DIAG": "m", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "not set", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "m", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "y", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "m", "CONFIG_NET_UDP_TUNNEL": "m", "CONFIG_NET_FOU": "m", "CONFIG_NET_FOU_IP_TUNNELS": "y", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "m", "CONFIG_INET_ESPINTCP": "y", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "m", "CONFIG_INET_DIAG": "m", "CONFIG_INET_TCP_DIAG": "m", "CONFIG_INET_UDP_DIAG": "m", "CONFIG_INET_RAW_DIAG": "m", "CONFIG_INET_DIAG_DESTROY": "y", "CONFIG_TCP_CONG_ADVANCED": "y", "CONFIG_TCP_CONG_BIC": "m", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_TCP_CONG_WESTWOOD": "m", "CONFIG_TCP_CONG_HTCP": "m", "CONFIG_TCP_CONG_HSTCP": "m", "CONFIG_TCP_CONG_HYBLA": "m", "CONFIG_TCP_CONG_VEGAS": "m", "CONFIG_TCP_CONG_NV": "m", "CONFIG_TCP_CONG_SCALABLE": "m", "CONFIG_TCP_CONG_LP": "m", "CONFIG_TCP_CONG_VENO": "m", "CONFIG_TCP_CONG_YEAH": "m", "CONFIG_TCP_CONG_ILLINOIS": "m", "CONFIG_TCP_CONG_DCTCP": "m", "CONFIG_TCP_CONG_CDG": "m", "CONFIG_TCP_CONG_BBR": "m", "CONFIG_DEFAULT_CUBIC": "y", "CONFIG_DEFAULT_RENO": "not set", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_MD5SIG": "y", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "y", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "m", "CONFIG_INET6_ESP": "m", "CONFIG_INET6_ESP_OFFLOAD": "m", "CONFIG_INET6_ESPINTCP": "y", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "m", "CONFIG_IPV6_ILA": "m", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "m", "CONFIG_IPV6_SIT": "m", "CONFIG_IPV6_SIT_6RD": "y", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "m", "CONFIG_IPV6_FOU": "m", "CONFIG_IPV6_FOU_TUNNEL": "m", "CONFIG_IPV6_MULTIPLE_TABLES": "y", "CONFIG_IPV6_SUBTREES": "y", "CONFIG_IPV6_MROUTE": "y", "CONFIG_IPV6_MROUTE_MULTIPLE_TABLES": "y", "CONFIG_IPV6_PIMSM_V2": "y", "CONFIG_IPV6_SEG6_LWTUNNEL": "y", "CONFIG_IPV6_SEG6_HMAC": "y", "CONFIG_IPV6_SEG6_BPF": "y", "CONFIG_IPV6_RPL_LWTUNNEL": "y", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "y", "CONFIG_MPTCP": "y", "CONFIG_INET_MPTCP_DIAG": "m", "CONFIG_MPTCP_IPV6": "y", "CONFIG_NETWORK_SECMARK": "y", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "m", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "m", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "m", "CONFIG_NETFILTER_NETLINK_ACCT": "m", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "m", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_SECMARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "y", "CONFIG_NF_CONNTRACK_PROCFS": "y", "CONFIG_NF_CONNTRACK_EVENTS": "y", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "y", "CONFIG_NF_CONNTRACK_LABELS": "y", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "m", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "m", "CONFIG_NF_CT_NETLINK_HELPER": "m", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "y", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "m", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "m", "CONFIG_NFT_FIB_INET": "m", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "m", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "m", "CONFIG_NFT_DUP_NETDEV": "m", "CONFIG_NFT_FWD_NETDEV": "m", "CONFIG_NFT_FIB_NETDEV": "m", "CONFIG_NFT_REJECT_NETDEV": "m", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "y", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_SET": "m", "CONFIG_NETFILTER_XT_TARGET_AUDIT": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CONNSECMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "m", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "m", "CONFIG_NETFILTER_XT_TARGET_LED": "m", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "m", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "m", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "m", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "m", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_SECMARK": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "m", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "m", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "m", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "m", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "m", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "m", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "m", "CONFIG_NETFILTER_XT_MATCH_IPVS": "m", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "m", "CONFIG_NETFILTER_XT_MATCH_OSF": "m", "CONFIG_NETFILTER_XT_MATCH_OWNER": "m", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "m", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "m", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "m", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "m", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "m", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "m", "CONFIG_IP_SET_MAX": "256", "CONFIG_IP_SET_BITMAP_IP": "m", "CONFIG_IP_SET_BITMAP_IPMAC": "m", "CONFIG_IP_SET_BITMAP_PORT": "m", "CONFIG_IP_SET_HASH_IP": "m", "CONFIG_IP_SET_HASH_IPMARK": "m", "CONFIG_IP_SET_HASH_IPPORT": "m", "CONFIG_IP_SET_HASH_IPPORTIP": "m", "CONFIG_IP_SET_HASH_IPPORTNET": "m", "CONFIG_IP_SET_HASH_IPMAC": "m", "CONFIG_IP_SET_HASH_MAC": "m", "CONFIG_IP_SET_HASH_NETPORTNET": "m", "CONFIG_IP_SET_HASH_NET": "m", "CONFIG_IP_SET_HASH_NETNET": "m", "CONFIG_IP_SET_HASH_NETPORT": "m", "CONFIG_IP_SET_HASH_NETIFACE": "m", "CONFIG_IP_SET_LIST_SET": "m", "CONFIG_IP_VS": "m", "CONFIG_IP_VS_IPV6": "y", "CONFIG_IP_VS_DEBUG": "not set", "CONFIG_IP_VS_TAB_BITS": "12", "CONFIG_IP_VS_PROTO_TCP": "y", "CONFIG_IP_VS_PROTO_UDP": "y", "CONFIG_IP_VS_PROTO_AH_ESP": "y", "CONFIG_IP_VS_PROTO_ESP": "y", "CONFIG_IP_VS_PROTO_AH": "y", "CONFIG_IP_VS_PROTO_SCTP": "y", "CONFIG_IP_VS_RR": "m", "CONFIG_IP_VS_WRR": "m", "CONFIG_IP_VS_LC": "m", "CONFIG_IP_VS_WLC": "m", "CONFIG_IP_VS_FO": "m", "CONFIG_IP_VS_OVF": "m", "CONFIG_IP_VS_LBLC": "m", "CONFIG_IP_VS_LBLCR": "m", "CONFIG_IP_VS_DH": "m", "CONFIG_IP_VS_SH": "m", "CONFIG_IP_VS_MH": "m", "CONFIG_IP_VS_SED": "m", "CONFIG_IP_VS_NQ": "m", "CONFIG_IP_VS_TWOS": "m", "CONFIG_IP_VS_SH_TAB_BITS": "8", "CONFIG_IP_VS_MH_TAB_INDEX": "12", "CONFIG_IP_VS_FTP": "m", "CONFIG_IP_VS_NFCT": "y", "CONFIG_IP_VS_PE_SIP": "m", "CONFIG_NF_DEFRAG_IPV4": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "m", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "m", "CONFIG_NFT_FIB_IPV4": "m", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "m", "CONFIG_NF_LOG_ARP": "m", "CONFIG_NF_LOG_IPV4": "m", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_SNMP_BASIC": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "m", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "m", "CONFIG_NFT_FIB_IPV6": "m", "CONFIG_NF_DUP_IPV6": "m", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "m", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "m", "CONFIG_IP6_NF_MATCH_RPFILTER": "m", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "m", "CONFIG_IP6_NF_TARGET_HL": "m", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "m", "CONFIG_IP6_NF_TARGET_SYNPROXY": "m", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "m", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "m", "CONFIG_IP6_NF_TARGET_NPT": "m", "CONFIG_NF_DEFRAG_IPV6": "m", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "m", "CONFIG_NFT_BRIDGE_REJECT": "m", "CONFIG_NF_CONNTRACK_BRIDGE": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_BPFILTER": "y", "CONFIG_BPFILTER_UMH": "m", "CONFIG_IP_DCCP": "m", "CONFIG_INET_DCCP_DIAG": "m", "CONFIG_IP_DCCP_CCID2_DEBUG": "not set", "CONFIG_IP_DCCP_CCID3": "y", "CONFIG_IP_DCCP_CCID3_DEBUG": "not set", "CONFIG_IP_DCCP_TFRC_LIB": "y", "CONFIG_IP_DCCP_DEBUG": "not set", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "m", "CONFIG_RDS_RDMA": "m", "CONFIG_RDS_TCP": "m", "CONFIG_RDS_DEBUG": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_IB": "not set", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "m", "CONFIG_ATM_CLIP": "m", "CONFIG_ATM_CLIP_NO_ICMP": "not set", "CONFIG_ATM_LANE": "m", "CONFIG_ATM_MPOA": "m", "CONFIG_ATM_BR2684": "m", "CONFIG_ATM_BR2684_IPFILTER": "not set", "CONFIG_L2TP": "m", "CONFIG_L2TP_DEBUGFS": "m", "CONFIG_L2TP_V3": "y", "CONFIG_L2TP_IP": "m", "CONFIG_L2TP_ETH": "m", "CONFIG_STP": "m", "CONFIG_GARP": "m", "CONFIG_MRP": "m", "CONFIG_BRIDGE": "m", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "y", "CONFIG_BRIDGE_CFM": "y", "CONFIG_NET_DSA": "m", "CONFIG_NET_DSA_TAG_NONE": "m", "CONFIG_NET_DSA_TAG_AR9331": "m", "CONFIG_NET_DSA_TAG_BRCM_COMMON": "m", "CONFIG_NET_DSA_TAG_BRCM": "m", "CONFIG_NET_DSA_TAG_BRCM_LEGACY": "m", "CONFIG_NET_DSA_TAG_BRCM_PREPEND": "m", "CONFIG_NET_DSA_TAG_HELLCREEK": "m", "CONFIG_NET_DSA_TAG_GSWIP": "m", "CONFIG_NET_DSA_TAG_DSA_COMMON": "m", "CONFIG_NET_DSA_TAG_DSA": "m", "CONFIG_NET_DSA_TAG_EDSA": "m", "CONFIG_NET_DSA_TAG_MTK": "m", "CONFIG_NET_DSA_TAG_KSZ": "m", "CONFIG_NET_DSA_TAG_OCELOT": "m", "CONFIG_NET_DSA_TAG_OCELOT_8021Q": "m", "CONFIG_NET_DSA_TAG_QCA": "m", "CONFIG_NET_DSA_TAG_RTL4_A": "m", "CONFIG_NET_DSA_TAG_RTL8_4": "m", "CONFIG_NET_DSA_TAG_RZN1_A5PSW": "m", "CONFIG_NET_DSA_TAG_LAN9303": "m", "CONFIG_NET_DSA_TAG_SJA1105": "m", "CONFIG_NET_DSA_TAG_TRAILER": "m", "CONFIG_NET_DSA_TAG_XRS700X": "m", "CONFIG_VLAN_8021Q": "m", "CONFIG_VLAN_8021Q_GVRP": "y", "CONFIG_VLAN_8021Q_MVRP": "y", "CONFIG_LLC": "m", "CONFIG_LLC2": "m", "CONFIG_ATALK": "not set", "CONFIG_X25": "m", "CONFIG_LAPB": "m", "CONFIG_PHONET": "m", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "m", "CONFIG_6LOWPAN_GHC_UDP": "m", "CONFIG_6LOWPAN_GHC_ICMPV6": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "m", "CONFIG_IEEE802154": "m", "CONFIG_IEEE802154_NL802154_EXPERIMENTAL": "not set", "CONFIG_IEEE802154_SOCKET": "m", "CONFIG_IEEE802154_6LOWPAN": "m", "CONFIG_MAC802154": "m", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "m", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "m", "CONFIG_NET_SCH_ETF": "m", "CONFIG_NET_SCH_MQPRIO_LIB": "m", "CONFIG_NET_SCH_TAPRIO": "m", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "m", "CONFIG_NET_SCH_MQPRIO": "m", "CONFIG_NET_SCH_SKBPRIO": "m", "CONFIG_NET_SCH_CHOKE": "m", "CONFIG_NET_SCH_QFQ": "m", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "m", "CONFIG_NET_SCH_FQ": "m", "CONFIG_NET_SCH_HHF": "m", "CONFIG_NET_SCH_PIE": "m", "CONFIG_NET_SCH_FQ_PIE": "m", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "m", "CONFIG_NET_SCH_ETS": "m", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "m", "CONFIG_NET_CLS_ROUTE4": "m", "CONFIG_NET_CLS_FW": "m", "CONFIG_NET_CLS_U32": "m", "CONFIG_CLS_U32_PERF": "y", "CONFIG_CLS_U32_MARK": "y", "CONFIG_NET_CLS_FLOW": "m", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "m", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "m", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "m", "CONFIG_NET_EMATCH_NBYTE": "m", "CONFIG_NET_EMATCH_U32": "m", "CONFIG_NET_EMATCH_META": "m", "CONFIG_NET_EMATCH_TEXT": "m", "CONFIG_NET_EMATCH_CANID": "m", "CONFIG_NET_EMATCH_IPSET": "m", "CONFIG_NET_EMATCH_IPT": "m", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "m", "CONFIG_GACT_PROB": "y", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "m", "CONFIG_NET_ACT_IPT": "m", "CONFIG_NET_ACT_NAT": "m", "CONFIG_NET_ACT_PEDIT": "m", "CONFIG_NET_ACT_SIMP": "m", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "m", "CONFIG_NET_ACT_MPLS": "m", "CONFIG_NET_ACT_VLAN": "m", "CONFIG_NET_ACT_BPF": "m", "CONFIG_NET_ACT_CONNMARK": "m", "CONFIG_NET_ACT_CTINFO": "m", "CONFIG_NET_ACT_SKBMOD": "m", "CONFIG_NET_ACT_IFE": "m", "CONFIG_NET_ACT_TUNNEL_KEY": "m", "CONFIG_NET_ACT_CT": "m", "CONFIG_NET_ACT_GATE": "m", "CONFIG_NET_IFE_SKBMARK": "m", "CONFIG_NET_IFE_SKBPRIO": "m", "CONFIG_NET_IFE_SKBTCINDEX": "m", "CONFIG_NET_TC_SKB_EXT": "y", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "y", "CONFIG_DNS_RESOLVER": "m", "CONFIG_BATMAN_ADV": "m", "CONFIG_BATMAN_ADV_BATMAN_V": "y", "CONFIG_BATMAN_ADV_BLA": "y", "CONFIG_BATMAN_ADV_DAT": "y", "CONFIG_BATMAN_ADV_NC": "y", "CONFIG_BATMAN_ADV_MCAST": "y", "CONFIG_BATMAN_ADV_DEBUG": "y", "CONFIG_BATMAN_ADV_TRACING": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_OPENVSWITCH_GENEVE": "m", "CONFIG_VSOCKETS": "m", "CONFIG_VSOCKETS_DIAG": "m", "CONFIG_VSOCKETS_LOOPBACK": "m", "CONFIG_VMWARE_VMCI_VSOCKETS": "m", "CONFIG_VIRTIO_VSOCKETS": "m", "CONFIG_VIRTIO_VSOCKETS_COMMON": "m", "CONFIG_HYPERV_VSOCKETS": "m", "CONFIG_NETLINK_DIAG": "m", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "m", "CONFIG_MPLS_IPTUNNEL": "m", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "m", "CONFIG_NET_SWITCHDEV": "y", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "m", "CONFIG_QRTR_SMD": "m", "CONFIG_QRTR_TUN": "m", "CONFIG_QRTR_MHI": "m", "CONFIG_NET_NCSI": "y", "CONFIG_NCSI_OEM_CMD_GET_MAC": "y", "CONFIG_NCSI_OEM_CMD_KEEP_PHY": "y", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "y", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "y", "CONFIG_HAMRADIO": "y", "CONFIG_AX25": "m", "CONFIG_AX25_DAMA_SLAVE": "y", "CONFIG_NETROM": "m", "CONFIG_ROSE": "m", "CONFIG_MKISS": "m", "CONFIG_6PACK": "m", "CONFIG_BPQETHER": "m", "CONFIG_BAYCOM_SER_FDX": "m", "CONFIG_BAYCOM_SER_HDX": "m", "CONFIG_BAYCOM_PAR": "m", "CONFIG_YAM": "m", "CONFIG_CAN": "m", "CONFIG_CAN_RAW": "m", "CONFIG_CAN_BCM": "m", "CONFIG_CAN_GW": "m", "CONFIG_CAN_J1939": "m", "CONFIG_CAN_ISOTP": "m", "CONFIG_BT": "m", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_HS": "y", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "y", "CONFIG_BT_MSFTEXT": "y", "CONFIG_BT_AOSPEXT": "y", "CONFIG_BT_DEBUGFS": "not set", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_INTEL": "m", "CONFIG_BT_BCM": "m", "CONFIG_BT_RTL": "m", "CONFIG_BT_QCA": "m", "CONFIG_BT_MTK": "m", "CONFIG_BT_HCIBTUSB": "m", "CONFIG_BT_HCIBTUSB_AUTOSUSPEND": "y", "CONFIG_BT_HCIBTUSB_POLL_SYNC": "y", "CONFIG_BT_HCIBTUSB_BCM": "y", "CONFIG_BT_HCIBTUSB_MTK": "y", "CONFIG_BT_HCIBTUSB_RTL": "y", "CONFIG_BT_HCIBTSDIO": "m", "CONFIG_BT_HCIUART": "m", "CONFIG_BT_HCIUART_SERDEV": "y", "CONFIG_BT_HCIUART_H4": "y", "CONFIG_BT_HCIUART_NOKIA": "m", "CONFIG_BT_HCIUART_BCSP": "y", "CONFIG_BT_HCIUART_ATH3K": "y", "CONFIG_BT_HCIUART_LL": "y", "CONFIG_BT_HCIUART_3WIRE": "y", "CONFIG_BT_HCIUART_INTEL": "y", "CONFIG_BT_HCIUART_BCM": "y", "CONFIG_BT_HCIUART_RTL": "y", "CONFIG_BT_HCIUART_QCA": "y", "CONFIG_BT_HCIUART_AG6XX": "y", "CONFIG_BT_HCIUART_MRVL": "y", "CONFIG_BT_HCIBCM203X": "m", "CONFIG_BT_HCIBCM4377": "m", "CONFIG_BT_HCIBPA10X": "m", "CONFIG_BT_HCIBFUSB": "m", "CONFIG_BT_HCIVHCI": "m", "CONFIG_BT_MRVL": "m", "CONFIG_BT_MRVL_SDIO": "m", "CONFIG_BT_ATH3K": "m", "CONFIG_BT_MTKSDIO": "m", "CONFIG_BT_MTKUART": "m", "CONFIG_BT_HCIRSI": "m", "CONFIG_BT_VIRTIO": "m", "CONFIG_BT_NXPUART": "m", "CONFIG_AF_RXRPC": "m", "CONFIG_AF_RXRPC_IPV6": "y", "CONFIG_AF_RXRPC_INJECT_LOSS": "not set", "CONFIG_AF_RXRPC_INJECT_RX_DELAY": "not set", "CONFIG_AF_RXRPC_DEBUG": "not set", "CONFIG_RXKAD": "y", "CONFIG_RXPERF": "m", "CONFIG_AF_KCM": "m", "CONFIG_STREAM_PARSER": "y", "CONFIG_MCTP": "y", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WIRELESS_EXT": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_WEXT_SPY": "y", "CONFIG_WEXT_PRIV": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_CERTIFICATION_ONUS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_CFG80211_WEXT_EXPORT": "y", "CONFIG_LIB80211": "m", "CONFIG_LIB80211_CRYPT_WEP": "m", "CONFIG_LIB80211_CRYPT_CCMP": "m", "CONFIG_LIB80211_CRYPT_TKIP": "m", "CONFIG_LIB80211_DEBUG": "not set", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "y", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_DEBUGFS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "m", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "m", "CONFIG_NET_9P": "m", "CONFIG_NET_9P_FD": "m", "CONFIG_NET_9P_VIRTIO": "m", "CONFIG_NET_9P_XEN": "m", "CONFIG_NET_9P_RDMA": "m", "CONFIG_NET_9P_DEBUG": "not set", "CONFIG_CAIF": "m", "CONFIG_CAIF_DEBUG": "not set", "CONFIG_CAIF_NETDEV": "m", "CONFIG_CAIF_USB": "m", "CONFIG_CEPH_LIB": "m", "CONFIG_CEPH_LIB_PRETTYDEBUG": "y", "CONFIG_CEPH_LIB_USE_DNS_RESOLVER": "not set", "CONFIG_NFC": "m", "CONFIG_NFC_DIGITAL": "m", "CONFIG_NFC_NCI": "m", "CONFIG_NFC_NCI_SPI": "not set", "CONFIG_NFC_NCI_UART": "m", "CONFIG_NFC_HCI": "m", "CONFIG_NFC_SHDLC": "y", "CONFIG_NFC_TRF7970A": "not set", "CONFIG_NFC_MEI_PHY": "m", "CONFIG_NFC_SIM": "m", "CONFIG_NFC_PORT100": "m", "CONFIG_NFC_VIRTUAL_NCI": "m", "CONFIG_NFC_FDP": "m", "CONFIG_NFC_FDP_I2C": "m", "CONFIG_NFC_PN544": "m", "CONFIG_NFC_PN544_I2C": "m", "CONFIG_NFC_PN544_MEI": "m", "CONFIG_NFC_PN533": "m", "CONFIG_NFC_PN533_USB": "m", "CONFIG_NFC_PN533_I2C": "m", "CONFIG_NFC_PN532_UART": "m", "CONFIG_NFC_MICROREAD": "m", "CONFIG_NFC_MICROREAD_I2C": "m", "CONFIG_NFC_MICROREAD_MEI": "m", "CONFIG_NFC_MRVL": "m", "CONFIG_NFC_MRVL_USB": "m", "CONFIG_NFC_MRVL_UART": "m", "CONFIG_NFC_MRVL_I2C": "m", "CONFIG_NFC_ST21NFCA": "m", "CONFIG_NFC_ST21NFCA_I2C": "m", "CONFIG_NFC_ST_NCI": "m", "CONFIG_NFC_ST_NCI_I2C": "m", "CONFIG_NFC_ST_NCI_SPI": "m", "CONFIG_NFC_NXP_NCI": "m", "CONFIG_NFC_NXP_NCI_I2C": "m", "CONFIG_NFC_S3FWRN5": "m", "CONFIG_NFC_S3FWRN5_I2C": "m", "CONFIG_NFC_S3FWRN82_UART": "m", "CONFIG_NFC_ST95HF": "m", "CONFIG_PSAMPLE": "m", "CONFIG_NET_IFE": "m", "CONFIG_LWTUNNEL": "y", "CONFIG_LWTUNNEL_BPF": "y", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_SOCK_VALIDATE_XMIT": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "y", "CONFIG_FAILOVER": "m", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_EISA": "y", "CONFIG_EISA": "not set", "CONFIG_HAVE_PCI": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "y", "CONFIG_PCIEAER": "y", "CONFIG_PCIEAER_INJECT": "m", "CONFIG_PCIE_ECRC": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_DPC": "y", "CONFIG_PCIE_PTM": "y", "CONFIG_PCIE_EDR": "y", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "y", "CONFIG_PCI_PF_STUB": "m", "CONFIG_XEN_PCIDEV_FRONTEND": "m", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_DOE": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_P2PDMA": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_PCI_HYPERV": "m", "CONFIG_PCIE_BUS_TUNE_OFF": "not set", "CONFIG_PCIE_BUS_DEFAULT": "y", "CONFIG_PCIE_BUS_SAFE": "not set", "CONFIG_PCIE_BUS_PERFORMANCE": "not set", "CONFIG_PCIE_BUS_PEER2PEER": "not set", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "y", "CONFIG_HOTPLUG_PCI_ACPI_IBM": "m", "CONFIG_HOTPLUG_PCI_CPCI": "y", "CONFIG_HOTPLUG_PCI_CPCI_ZT5550": "m", "CONFIG_HOTPLUG_PCI_CPCI_GENERIC": "m", "CONFIG_HOTPLUG_PCI_SHPC": "y", "CONFIG_VMD": "m", "CONFIG_PCI_HYPERV_INTERFACE": "m", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCIE_DW_PLAT_EP": "not set", "CONFIG_PCI_ENDPOINT": "y", "CONFIG_PCI_ENDPOINT_CONFIGFS": "not set", "CONFIG_PCI_EPF_TEST": "m", "CONFIG_PCI_EPF_NTB": "m", "CONFIG_PCI_EPF_VNTB": "m", "CONFIG_PCI_SW_SWITCHTEC": "m", "CONFIG_CXL_BUS": "m", "CONFIG_CXL_PCI": "m", "CONFIG_CXL_MEM_RAW_COMMANDS": "not set", "CONFIG_CXL_ACPI": "m", "CONFIG_CXL_PMEM": "m", "CONFIG_CXL_MEM": "m", "CONFIG_CXL_PORT": "m", "CONFIG_CXL_SUSPEND": "y", "CONFIG_CXL_REGION": "y", "CONFIG_CXL_REGION_INVALIDATION_TEST": "not set", "CONFIG_PCCARD": "m", "CONFIG_PCMCIA": "not set", "CONFIG_CARDBUS": "y", "CONFIG_YENTA": "m", "CONFIG_YENTA_O2": "y", "CONFIG_YENTA_RICOH": "y", "CONFIG_YENTA_TI": "y", "CONFIG_YENTA_ENE_TUNE": "y", "CONFIG_YENTA_TOSHIBA": "y", "CONFIG_RAPIDIO": "m", "CONFIG_RAPIDIO_TSI721": "m", "CONFIG_RAPIDIO_DISC_TIMEOUT": "30", "CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS": "y", "CONFIG_RAPIDIO_DMA_ENGINE": "y", "CONFIG_RAPIDIO_DEBUG": "y", "CONFIG_RAPIDIO_ENUM_BASIC": "m", "CONFIG_RAPIDIO_CHMAN": "m", "CONFIG_RAPIDIO_MPORT_CDEV": "m", "CONFIG_RAPIDIO_CPS_XX": "m", "CONFIG_RAPIDIO_CPS_GEN2": "m", "CONFIG_RAPIDIO_RXS_GEN3": "m", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "y", "CONFIG_UEVENT_HELPER_PATH": "\\"\\"", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "not set", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_FW_LOADER_DEBUG": "y", "CONFIG_FW_LOADER_PAGED_BUF": "y", "CONFIG_FW_LOADER_SYSFS": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "y", "CONFIG_FW_LOADER_USER_HELPER_FALLBACK": "not set", "CONFIG_FW_LOADER_COMPRESS": "y", "CONFIG_FW_LOADER_COMPRESS_XZ": "y", "CONFIG_FW_LOADER_COMPRESS_ZSTD": "y", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "y", "CONFIG_WANT_DEV_COREDUMP": "y", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_HMEM_REPORTING": "y", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_SYS_HYPERVISOR": "y", "CONFIG_GENERIC_CPU_DEVICES": "not set", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_SOC_BUS": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_REGMAP_SPI": "m", "CONFIG_REGMAP_SPMI": "m", "CONFIG_REGMAP_W1": "m", "CONFIG_REGMAP_MMIO": "m", "CONFIG_REGMAP_IRQ": "y", "CONFIG_REGMAP_SOUNDWIRE": "m", "CONFIG_REGMAP_SOUNDWIRE_MBQ": "m", "CONFIG_REGMAP_SCCB": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "m", "CONFIG_MHI_BUS_DEBUG": "y", "CONFIG_MHI_BUS_PCI_GENERIC": "m", "CONFIG_MHI_BUS_EP": "m", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "m", "CONFIG_EDD_OFF": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "m", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT_FIND": "y", "CONFIG_ISCSI_IBFT": "m", "CONFIG_FW_CFG_SYSFS": "m", "CONFIG_FW_CFG_SYSFS_CMDLINE": "y", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "y", "CONFIG_FW_CS_DSP": "m", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_VARS_PSTORE": "m", "CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE": "y", "CONFIG_EFI_SOFT_RESERVE": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "m", "CONFIG_EFI_CAPSULE_LOADER": "m", "CONFIG_EFI_TEST": "not set", "CONFIG_EFI_DEV_PATH_PARSER": "y", "CONFIG_APPLE_PROPERTIES": "y", "CONFIG_RESET_ATTACK_MITIGATION": "y", "CONFIG_EFI_RCI2_TABLE": "y", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "y", "CONFIG_UNACCEPTED_MEMORY": "y", "CONFIG_EFI_EMBEDDED_FIRMWARE": "y", "CONFIG_EFI_SECRET_KEY": "y", "CONFIG_UEFI_CPER": "y", "CONFIG_UEFI_CPER_X86": "y", "CONFIG_GNSS": "m", "CONFIG_GNSS_SERIAL": "m", "CONFIG_GNSS_MTK_SERIAL": "m", "CONFIG_GNSS_SIRF_SERIAL": "m", "CONFIG_GNSS_UBX_SERIAL": "m", "CONFIG_GNSS_USB": "m", "CONFIG_MTD": "m", "CONFIG_MTD_TESTS": "m", "CONFIG_MTD_AR7_PARTS": "m", "CONFIG_MTD_CMDLINE_PARTS": "not set", "CONFIG_MTD_REDBOOT_PARTS": "m", "CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK": "-1", "CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED": "not set", "CONFIG_MTD_REDBOOT_PARTS_READONLY": "not set", "CONFIG_MTD_BLKDEVS": "m", "CONFIG_MTD_BLOCK": "m", "CONFIG_MTD_BLOCK_RO": "m", "CONFIG_FTL": "m", "CONFIG_NFTL": "m", "CONFIG_NFTL_RW": "y", "CONFIG_INFTL": "m", "CONFIG_RFD_FTL": "m", "CONFIG_SSFDC": "m", "CONFIG_SM_FTL": "not set", "CONFIG_MTD_OOPS": "m", "CONFIG_MTD_PSTORE": "m", "CONFIG_MTD_SWAP": "m", "CONFIG_MTD_PARTITIONED_MASTER": "y", "CONFIG_MTD_CFI": "m", "CONFIG_MTD_JEDECPROBE": "m", "CONFIG_MTD_GEN_PROBE": "m", "CONFIG_MTD_CFI_ADV_OPTIONS": "y", "CONFIG_MTD_CFI_NOSWAP": "y", "CONFIG_MTD_CFI_BE_BYTE_SWAP": "not set", "CONFIG_MTD_CFI_LE_BYTE_SWAP": "not set", "CONFIG_MTD_CFI_GEOMETRY": "y", "CONFIG_MTD_MAP_BANK_WIDTH_1": "y", "CONFIG_MTD_MAP_BANK_WIDTH_2": "y", "CONFIG_MTD_MAP_BANK_WIDTH_4": "y", "CONFIG_MTD_MAP_BANK_WIDTH_8": "y", "CONFIG_MTD_MAP_BANK_WIDTH_16": "y", "CONFIG_MTD_MAP_BANK_WIDTH_32": "y", "CONFIG_MTD_CFI_I1": "y", "CONFIG_MTD_CFI_I2": "y", "CONFIG_MTD_CFI_I4": "y", "CONFIG_MTD_CFI_I8": "y", "CONFIG_MTD_OTP": "y", "CONFIG_MTD_CFI_INTELEXT": "m", "CONFIG_MTD_CFI_AMDSTD": "m", "CONFIG_MTD_CFI_STAA": "m", "CONFIG_MTD_CFI_UTIL": "m", "CONFIG_MTD_RAM": "m", "CONFIG_MTD_ROM": "m", "CONFIG_MTD_ABSENT": "m", "CONFIG_MTD_COMPLEX_MAPPINGS": "y", "CONFIG_MTD_PHYSMAP": "m", "CONFIG_MTD_PHYSMAP_COMPAT": "y", "CONFIG_MTD_PHYSMAP_START": "0x8000000", "CONFIG_MTD_PHYSMAP_LEN": "0", "CONFIG_MTD_PHYSMAP_BANKWIDTH": "2", "CONFIG_MTD_PHYSMAP_GPIO_ADDR": "y", "CONFIG_MTD_SBC_GXX": "m", "CONFIG_MTD_AMD76XROM": "m", "CONFIG_MTD_ICHXROM": "m", "CONFIG_MTD_ESB2ROM": "m", "CONFIG_MTD_CK804XROM": "m", "CONFIG_MTD_SCB2_FLASH": "m", "CONFIG_MTD_NETtel": "m", "CONFIG_MTD_L440GX": "m", "CONFIG_MTD_PCI": "m", "CONFIG_MTD_INTEL_VR_NOR": "m", "CONFIG_MTD_PLATRAM": "m", "CONFIG_MTD_PMC551": "m", "CONFIG_MTD_PMC551_BUGFIX": "y", "CONFIG_MTD_PMC551_DEBUG": "not set", "CONFIG_MTD_DATAFLASH": "not set", "CONFIG_MTD_MCHP23K256": "not set", "CONFIG_MTD_MCHP48L640": "not set", "CONFIG_MTD_SST25L": "not set", "CONFIG_MTD_SLRAM": "m", "CONFIG_MTD_PHRAM": "m", "CONFIG_MTD_MTDRAM": "m", "CONFIG_MTDRAM_TOTAL_SIZE": "4096", "CONFIG_MTDRAM_ERASE_SIZE": "128", "CONFIG_MTD_BLOCK2MTD": "m", "CONFIG_MTD_DOCG3": "m", "CONFIG_BCH_CONST_M": "14", "CONFIG_BCH_CONST_T": "4", "CONFIG_MTD_NAND_CORE": "m", "CONFIG_MTD_ONENAND": "m", "CONFIG_MTD_ONENAND_VERIFY_WRITE": "y", "CONFIG_MTD_ONENAND_GENERIC": "m", "CONFIG_MTD_ONENAND_OTP": "y", "CONFIG_MTD_ONENAND_2X_PROGRAM": "y", "CONFIG_MTD_RAW_NAND": "m", "CONFIG_MTD_NAND_DENALI_PCI": "not set", "CONFIG_MTD_NAND_OMAP_BCH_BUILD": "not set", "CONFIG_MTD_NAND_CAFE": "m", "CONFIG_MTD_NAND_MXIC": "m", "CONFIG_MTD_NAND_GPIO": "m", "CONFIG_MTD_NAND_PLATFORM": "m", "CONFIG_MTD_NAND_ARASAN": "m", "CONFIG_MTD_SM_COMMON": "m", "CONFIG_MTD_NAND_NANDSIM": "m", "CONFIG_MTD_NAND_RICOH": "m", "CONFIG_MTD_NAND_DISKONCHIP": "m", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED": "y", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS": "0", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_HIGH": "y", "CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE": "y", "CONFIG_MTD_SPI_NAND": "m", "CONFIG_MTD_NAND_ECC": "y", "CONFIG_MTD_NAND_ECC_SW_HAMMING": "y", "CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC": "not set", "CONFIG_MTD_NAND_ECC_SW_BCH": "y", "CONFIG_MTD_NAND_ECC_MXIC": "not set", "CONFIG_MTD_LPDDR": "m", "CONFIG_MTD_QINFO_PROBE": "m", "CONFIG_MTD_SPI_NOR": "m", "CONFIG_MTD_SPI_NOR_USE_4K_SECTORS": "y", "CONFIG_MTD_SPI_NOR_SWP_DISABLE": "not set", "CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE": "y", "CONFIG_MTD_SPI_NOR_SWP_KEEP": "not set", "CONFIG_MTD_UBI": "m", "CONFIG_MTD_UBI_WL_THRESHOLD": "4096", "CONFIG_MTD_UBI_BEB_LIMIT": "20", "CONFIG_MTD_UBI_FASTMAP": "not set", "CONFIG_MTD_UBI_GLUEBI": "m", "CONFIG_MTD_UBI_BLOCK": "not set", "CONFIG_MTD_HYPERBUS": "m", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "m", "CONFIG_PARPORT_PC_FIFO": "y", "CONFIG_PARPORT_PC_SUPERIO": "y", "CONFIG_PARPORT_GSC": "not set", "CONFIG_PARPORT_1284": "y", "CONFIG_PARPORT_NOT_PC": "y", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "not set", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "m", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "m", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "m", "CONFIG_ZRAM": "m", "CONFIG_ZRAM_DEF_COMP_LZORLE": "y", "CONFIG_ZRAM_DEF_COMP_ZSTD": "not set", "CONFIG_ZRAM_DEF_COMP_LZ4": "not set", "CONFIG_ZRAM_DEF_COMP_LZO": "not set", "CONFIG_ZRAM_DEF_COMP_LZ4HC": "not set", "CONFIG_ZRAM_DEF_COMP_842": "not set", "CONFIG_ZRAM_DEF_COMP": "\\"lzo-rle\\"", "CONFIG_ZRAM_WRITEBACK": "y", "CONFIG_ZRAM_TRACK_ENTRY_ACTIME": "not set", "CONFIG_ZRAM_MEMORY_TRACKING": "not set", "CONFIG_ZRAM_MULTI_COMP": "y", "CONFIG_BLK_DEV_COW_COMMON": "not set", "CONFIG_BLK_DEV_LOOP": "m", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "m", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "131072", "CONFIG_CDROM_PKTCDVD": "m", "CONFIG_CDROM_PKTCDVD_BUFFERS": "8", "CONFIG_CDROM_PKTCDVD_WCACHE": "y", "CONFIG_ATA_OVER_ETH": "m", "CONFIG_XEN_BLKDEV_FRONTEND": "m", "CONFIG_XEN_BLKDEV_BACKEND": "m", "CONFIG_VIRTIO_BLK": "m", "CONFIG_BLK_DEV_RBD": "m", "CONFIG_BLK_DEV_UBLK": "m", "CONFIG_BLKDEV_UBLK_LEGACY_OPCODES": "y", "CONFIG_BLK_DEV_RNBD": "y", "CONFIG_BLK_DEV_RNBD_CLIENT": "m", "CONFIG_BLK_DEV_RNBD_SERVER": "m", "CONFIG_NVME_KEYRING": "m", "CONFIG_NVME_AUTH": "m", "CONFIG_NVME_CORE": "m", "CONFIG_BLK_DEV_NVME": "m", "CONFIG_NVME_MULTIPATH": "y", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "y", "CONFIG_NVME_FABRICS": "m", "CONFIG_NVME_RDMA": "m", "CONFIG_NVME_FC": "m", "CONFIG_NVME_TCP": "m", "CONFIG_NVME_TCP_TLS": "y", "CONFIG_NVME_HOST_AUTH": "y", "CONFIG_NVME_TARGET": "m", "CONFIG_NVME_TARGET_PASSTHRU": "y", "CONFIG_NVME_TARGET_LOOP": "m", "CONFIG_NVME_TARGET_RDMA": "m", "CONFIG_NVME_TARGET_FC": "m", "CONFIG_NVME_TARGET_FCLOOP": "m", "CONFIG_NVME_TARGET_TCP": "m", "CONFIG_NVME_TARGET_TCP_TLS": "y", "CONFIG_NVME_TARGET_AUTH": "y", "CONFIG_SENSORS_LIS3LV02D": "m", "CONFIG_AD525X_DPOT": "m", "CONFIG_AD525X_DPOT_I2C": "m", "CONFIG_AD525X_DPOT_SPI": "not set", "CONFIG_DUMMY_IRQ": "m", "CONFIG_IBM_ASM": "m", "CONFIG_PHANTOM": "m", "CONFIG_TIFM_CORE": "m", "CONFIG_TIFM_7XX1": "m", "CONFIG_ICS932S401": "m", "CONFIG_ENCLOSURE_SERVICES": "m", "CONFIG_SGI_XP": "m", "CONFIG_HP_ILO": "m", "CONFIG_SGI_GRU": "m", "CONFIG_SGI_GRU_DEBUG": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "m", "CONFIG_SENSORS_TSL2550": "m", "CONFIG_SENSORS_BH1770": "m", "CONFIG_SENSORS_APDS990X": "m", "CONFIG_HMC6352": "m", "CONFIG_DS1682": "m", "CONFIG_VMWARE_BALLOON": "m", "CONFIG_LATTICE_ECP3_CONFIG": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "m", "CONFIG_PCI_ENDPOINT_TEST": "m", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_MISC_RTSX": "m", "CONFIG_C2PORT": "m", "CONFIG_C2PORT_DURAMAR_2150": "m", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_AT25": "not set", "CONFIG_EEPROM_LEGACY": "m", "CONFIG_EEPROM_MAX6875": "m", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_93XX46": "not set", "CONFIG_EEPROM_IDT_89HPESX": "m", "CONFIG_EEPROM_EE1004": "m", "CONFIG_CB710_CORE": "m", "CONFIG_CB710_DEBUG": "not set", "CONFIG_CB710_DEBUG_ASSUMPTIONS": "y", "CONFIG_TI_ST": "m", "CONFIG_SENSORS_LIS3_I2C": "m", "CONFIG_ALTERA_STAPL": "m", "CONFIG_INTEL_MEI": "m", "CONFIG_INTEL_MEI_ME": "m", "CONFIG_INTEL_MEI_TXE": "m", "CONFIG_INTEL_MEI_GSC": "m", "CONFIG_INTEL_MEI_HDCP": "m", "CONFIG_INTEL_MEI_PXP": "m", "CONFIG_INTEL_MEI_GSC_PROXY": "m", "CONFIG_VMWARE_VMCI": "m", "CONFIG_GENWQE": "m", "CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY": "0", "CONFIG_ECHO": "m", "CONFIG_BCM_VK": "m", "CONFIG_BCM_VK_TTY": "y", "CONFIG_MISC_ALCOR_PCI": "m", "CONFIG_MISC_RTSX_PCI": "m", "CONFIG_MISC_RTSX_USB": "m", "CONFIG_UACCE": "m", "CONFIG_PVPANIC": "y", "CONFIG_PVPANIC_MMIO": "m", "CONFIG_PVPANIC_PCI": "m", "CONFIG_GP_PCI1XXXX": "m", "CONFIG_SCSI_MOD": "m", "CONFIG_RAID_ATTRS": "m", "CONFIG_SCSI_COMMON": "m", "CONFIG_SCSI": "m", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_NETLINK": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "m", "CONFIG_CHR_DEV_ST": "m", "CONFIG_BLK_DEV_SR": "m", "CONFIG_CHR_DEV_SG": "m", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "m", "CONFIG_SCSI_ENCLOSURE": "m", "CONFIG_SCSI_CONSTANTS": "y", "CONFIG_SCSI_LOGGING": "y", "CONFIG_SCSI_SCAN_ASYNC": "y", "CONFIG_SCSI_SPI_ATTRS": "m", "CONFIG_SCSI_FC_ATTRS": "m", "CONFIG_SCSI_ISCSI_ATTRS": "m", "CONFIG_SCSI_SAS_ATTRS": "m", "CONFIG_SCSI_SAS_LIBSAS": "m", "CONFIG_SCSI_SAS_ATA": "y", "CONFIG_SCSI_SAS_HOST_SMP": "y", "CONFIG_SCSI_SRP_ATTRS": "m", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "m", "CONFIG_ISCSI_BOOT_SYSFS": "m", "CONFIG_SCSI_CXGB3_ISCSI": "m", "CONFIG_SCSI_CXGB4_ISCSI": "m", "CONFIG_SCSI_BNX2_ISCSI": "m", "CONFIG_SCSI_BNX2X_FCOE": "m", "CONFIG_BE2ISCSI": "m", "CONFIG_BLK_DEV_3W_XXXX_RAID": "m", "CONFIG_SCSI_HPSA": "m", "CONFIG_SCSI_3W_9XXX": "m", "CONFIG_SCSI_3W_SAS": "m", "CONFIG_SCSI_ACARD": "m", "CONFIG_SCSI_AACRAID": "m", "CONFIG_SCSI_AIC7XXX": "m", "CONFIG_AIC7XXX_CMDS_PER_DEVICE": "32", "CONFIG_AIC7XXX_RESET_DELAY_MS": "15000", "CONFIG_AIC7XXX_DEBUG_ENABLE": "not set", "CONFIG_AIC7XXX_DEBUG_MASK": "0", "CONFIG_AIC7XXX_REG_PRETTY_PRINT": "y", "CONFIG_SCSI_AIC79XX": "m", "CONFIG_AIC79XX_CMDS_PER_DEVICE": "32", "CONFIG_AIC79XX_RESET_DELAY_MS": "5000", "CONFIG_AIC79XX_DEBUG_ENABLE": "not set", "CONFIG_AIC79XX_DEBUG_MASK": "0", "CONFIG_AIC79XX_REG_PRETTY_PRINT": "y", "CONFIG_SCSI_AIC94XX": "m", "CONFIG_AIC94XX_DEBUG": "not set", "CONFIG_SCSI_MVSAS": "m", "CONFIG_SCSI_MVSAS_DEBUG": "not set", "CONFIG_SCSI_MVSAS_TASKLET": "y", "CONFIG_SCSI_MVUMI": "m", "CONFIG_SCSI_ADVANSYS": "m", "CONFIG_SCSI_ARCMSR": "m", "CONFIG_SCSI_ESAS2R": "m", "CONFIG_MEGARAID_NEWGEN": "y", "CONFIG_MEGARAID_MM": "m", "CONFIG_MEGARAID_MAILBOX": "m", "CONFIG_MEGARAID_LEGACY": "m", "CONFIG_MEGARAID_SAS": "m", "CONFIG_SCSI_MPT3SAS": "m", "CONFIG_SCSI_MPT2SAS_MAX_SGE": "128", "CONFIG_SCSI_MPT3SAS_MAX_SGE": "128", "CONFIG_SCSI_MPT2SAS": "m", "CONFIG_SCSI_MPI3MR": "m", "CONFIG_SCSI_SMARTPQI": "m", "CONFIG_SCSI_HPTIOP": "m", "CONFIG_SCSI_BUSLOGIC": "m", "CONFIG_SCSI_FLASHPOINT": "not set", "CONFIG_SCSI_MYRB": "m", "CONFIG_SCSI_MYRS": "m", "CONFIG_VMWARE_PVSCSI": "m", "CONFIG_XEN_SCSI_FRONTEND": "m", "CONFIG_HYPERV_STORAGE": "m", "CONFIG_LIBFC": "m", "CONFIG_LIBFCOE": "m", "CONFIG_FCOE": "m", "CONFIG_FCOE_FNIC": "m", "CONFIG_SCSI_SNIC": "m", "CONFIG_SCSI_SNIC_DEBUG_FS": "y", "CONFIG_SCSI_DMX3191D": "m", "CONFIG_SCSI_FDOMAIN": "m", "CONFIG_SCSI_FDOMAIN_PCI": "m", "CONFIG_SCSI_ISCI": "m", "CONFIG_SCSI_IPS": "m", "CONFIG_SCSI_INITIO": "m", "CONFIG_SCSI_INIA100": "m", "CONFIG_SCSI_PPA": "m", "CONFIG_SCSI_IMM": "m", "CONFIG_SCSI_IZIP_EPP16": "not set", "CONFIG_SCSI_IZIP_SLOW_CTR": "not set", "CONFIG_SCSI_STEX": "m", "CONFIG_SCSI_SYM53C8XX_2": "m", "CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE": "1", "CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS": "16", "CONFIG_SCSI_SYM53C8XX_MAX_TAGS": "64", "CONFIG_SCSI_SYM53C8XX_MMIO": "y", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "m", "CONFIG_SCSI_QLA_FC": "m", "CONFIG_TCM_QLA2XXX": "m", "CONFIG_TCM_QLA2XXX_DEBUG": "not set", "CONFIG_SCSI_QLA_ISCSI": "m", "CONFIG_QEDI": "m", "CONFIG_QEDF": "m", "CONFIG_SCSI_LPFC": "m", "CONFIG_SCSI_LPFC_DEBUG_FS": "not set", "CONFIG_SCSI_EFCT": "m", "CONFIG_SCSI_DC395x": "m", "CONFIG_SCSI_AM53C974": "m", "CONFIG_SCSI_WD719X": "m", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "m", "CONFIG_SCSI_PM8001": "m", "CONFIG_SCSI_BFA_FC": "m", "CONFIG_SCSI_VIRTIO": "m", "CONFIG_SCSI_CHELSIO_FCOE": "m", "CONFIG_SCSI_DH": "y", "CONFIG_SCSI_DH_RDAC": "m", "CONFIG_SCSI_DH_HP_SW": "m", "CONFIG_SCSI_DH_EMC": "m", "CONFIG_SCSI_DH_ALUA": "m", "CONFIG_ATA": "m", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "y", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "m", "CONFIG_SATA_MOBILE_LPM_POLICY": "0", "CONFIG_SATA_AHCI_PLATFORM": "m", "CONFIG_AHCI_DWC": "m", "CONFIG_SATA_INIC162X": "m", "CONFIG_SATA_ACARD_AHCI": "m", "CONFIG_SATA_SIL24": "m", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "m", "CONFIG_SATA_QSTOR": "m", "CONFIG_SATA_SX4": "m", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "m", "CONFIG_SATA_DWC": "not set", "CONFIG_SATA_MV": "m", "CONFIG_SATA_NV": "m", "CONFIG_SATA_PROMISE": "m", "CONFIG_SATA_SIL": "m", "CONFIG_SATA_SIS": "m", "CONFIG_SATA_SVW": "m", "CONFIG_SATA_ULI": "m", "CONFIG_SATA_VIA": "m", "CONFIG_SATA_VITESSE": "m", "CONFIG_PATA_ALI": "m", "CONFIG_PATA_AMD": "m", "CONFIG_PATA_ARTOP": "m", "CONFIG_PATA_ATIIXP": "m", "CONFIG_PATA_ATP867X": "m", "CONFIG_PATA_CMD64X": "m", "CONFIG_PATA_CYPRESS": "m", "CONFIG_PATA_EFAR": "m", "CONFIG_PATA_HPT366": "m", "CONFIG_PATA_HPT37X": "m", "CONFIG_PATA_HPT3X2N": "m", "CONFIG_PATA_HPT3X3": "m", "CONFIG_PATA_HPT3X3_DMA": "not set", "CONFIG_PATA_IT8213": "m", "CONFIG_PATA_IT821X": "m", "CONFIG_PATA_JMICRON": "m", "CONFIG_PATA_MARVELL": "m", "CONFIG_PATA_NETCELL": "m", "CONFIG_PATA_NINJA32": "m", "CONFIG_PATA_NS87415": "m", "CONFIG_PATA_OLDPIIX": "m", "CONFIG_PATA_OPTIDMA": "m", "CONFIG_PATA_PDC2027X": "m", "CONFIG_PATA_PDC_OLD": "m", "CONFIG_PATA_RADISYS": "m", "CONFIG_PATA_RDC": "m", "CONFIG_PATA_SCH": "m", "CONFIG_PATA_SERVERWORKS": "m", "CONFIG_PATA_SIL680": "m", "CONFIG_PATA_SIS": "m", "CONFIG_PATA_TOSHIBA": "m", "CONFIG_PATA_TRIFLEX": "m", "CONFIG_PATA_VIA": "m", "CONFIG_PATA_WINBOND": "m", "CONFIG_PATA_CMD640_PCI": "m", "CONFIG_PATA_MPIIX": "m", "CONFIG_PATA_NS87410": "m", "CONFIG_PATA_OPTI": "m", "CONFIG_PATA_RZ1000": "m", "CONFIG_PATA_PARPORT": "m", "CONFIG_PATA_PARPORT_ATEN": "m", "CONFIG_PATA_PARPORT_BPCK": "m", "CONFIG_PATA_PARPORT_BPCK6": "m", "CONFIG_PATA_PARPORT_COMM": "m", "CONFIG_PATA_PARPORT_DSTR": "m", "CONFIG_PATA_PARPORT_FIT2": "m", "CONFIG_PATA_PARPORT_FIT3": "m", "CONFIG_PATA_PARPORT_EPAT": "m", "CONFIG_PATA_PARPORT_EPATC8": "y", "CONFIG_PATA_PARPORT_EPIA": "m", "CONFIG_PATA_PARPORT_FRIQ": "m", "CONFIG_PATA_PARPORT_FRPW": "m", "CONFIG_PATA_PARPORT_KBIC": "m", "CONFIG_PATA_PARPORT_KTTI": "m", "CONFIG_PATA_PARPORT_ON20": "m", "CONFIG_PATA_PARPORT_ON26": "m", "CONFIG_PATA_ACPI": "m", "CONFIG_ATA_GENERIC": "m", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "m", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "m", "CONFIG_MD_RAID0": "m", "CONFIG_MD_RAID1": "m", "CONFIG_MD_RAID10": "m", "CONFIG_MD_RAID456": "m", "CONFIG_MD_MULTIPATH": "not set", "CONFIG_MD_FAULTY": "m", "CONFIG_MD_CLUSTER": "m", "CONFIG_BCACHE": "m", "CONFIG_BCACHE_DEBUG": "not set", "CONFIG_BCACHE_ASYNC_REGISTRATION": "y", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "m", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "m", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "m", "CONFIG_DM_CRYPT": "m", "CONFIG_DM_SNAPSHOT": "m", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "m", "CONFIG_DM_CACHE_SMQ": "m", "CONFIG_DM_WRITECACHE": "m", "CONFIG_DM_EBS": "m", "CONFIG_DM_ERA": "m", "CONFIG_DM_CLONE": "m", "CONFIG_DM_MIRROR": "m", "CONFIG_DM_LOG_USERSPACE": "m", "CONFIG_DM_RAID": "m", "CONFIG_DM_ZERO": "m", "CONFIG_DM_MULTIPATH": "m", "CONFIG_DM_MULTIPATH_QL": "m", "CONFIG_DM_MULTIPATH_ST": "m", "CONFIG_DM_MULTIPATH_HST": "m", "CONFIG_DM_MULTIPATH_IOA": "m", "CONFIG_DM_DELAY": "m", "CONFIG_DM_DUST": "m", "CONFIG_DM_UEVENT": "y", "CONFIG_DM_FLAKEY": "m", "CONFIG_DM_VERITY": "m", "CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG": "y", "CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING": "y", "CONFIG_DM_VERITY_FEC": "y", "CONFIG_DM_SWITCH": "m", "CONFIG_DM_LOG_WRITES": "m", "CONFIG_DM_INTEGRITY": "m", "CONFIG_DM_ZONED": "m", "CONFIG_DM_AUDIT": "y", "CONFIG_TARGET_CORE": "m", "CONFIG_TCM_IBLOCK": "m", "CONFIG_TCM_FILEIO": "m", "CONFIG_TCM_PSCSI": "m", "CONFIG_TCM_USER2": "m", "CONFIG_LOOPBACK_TARGET": "m", "CONFIG_TCM_FC": "m", "CONFIG_ISCSI_TARGET": "m", "CONFIG_ISCSI_TARGET_CXGB4": "m", "CONFIG_SBP_TARGET": "m", "CONFIG_REMOTE_TARGET": "m", "CONFIG_FUSION": "y", "CONFIG_FUSION_SPI": "m", "CONFIG_FUSION_FC": "m", "CONFIG_FUSION_SAS": "m", "CONFIG_FUSION_MAX_SGE": "128", "CONFIG_FUSION_CTL": "m", "CONFIG_FUSION_LAN": "m", "CONFIG_FUSION_LOGGING": "not set", "CONFIG_FIREWIRE": "m", "CONFIG_FIREWIRE_OHCI": "m", "CONFIG_FIREWIRE_SBP2": "m", "CONFIG_FIREWIRE_NET": "m", "CONFIG_FIREWIRE_NOSY": "m", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "m", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "m", "CONFIG_WIREGUARD_DEBUG": "not set", "CONFIG_EQUALIZER": "m", "CONFIG_NET_FC": "y", "CONFIG_IFB": "m", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "m", "CONFIG_MACVTAP": "m", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "m", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "m", "CONFIG_BAREUDP": "m", "CONFIG_GTP": "m", "CONFIG_AMT": "m", "CONFIG_MACSEC": "m", "CONFIG_NETCONSOLE": "m", "CONFIG_NETCONSOLE_DYNAMIC": "y", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_NTB_NETDEV": "m", "CONFIG_RIONET": "m", "CONFIG_RIONET_TX_SIZE": "128", "CONFIG_RIONET_RX_SIZE": "128", "CONFIG_TUN": "m", "CONFIG_TAP": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "m", "CONFIG_VIRTIO_NET": "m", "CONFIG_NLMON": "m", "CONFIG_NET_VRF": "m", "CONFIG_VSOCKMON": "m", "CONFIG_MHI_NET": "m", "CONFIG_SUNGEM_PHY": "m", "CONFIG_ARCNET": "not set", "CONFIG_ATM_DRIVERS": "y", "CONFIG_ATM_DUMMY": "m", "CONFIG_ATM_TCP": "m", "CONFIG_ATM_LANAI": "m", "CONFIG_ATM_ENI": "m", "CONFIG_ATM_ENI_DEBUG": "not set", "CONFIG_ATM_ENI_TUNE_BURST": "y", "CONFIG_ATM_ENI_BURST_TX_16W": "y", "CONFIG_ATM_ENI_BURST_TX_8W": "y", "CONFIG_ATM_ENI_BURST_TX_4W": "y", "CONFIG_ATM_ENI_BURST_TX_2W": "y", "CONFIG_ATM_ENI_BURST_RX_16W": "y", "CONFIG_ATM_ENI_BURST_RX_8W": "y", "CONFIG_ATM_ENI_BURST_RX_4W": "y", "CONFIG_ATM_ENI_BURST_RX_2W": "y", "CONFIG_ATM_NICSTAR": "m", "CONFIG_ATM_NICSTAR_USE_SUNI": "y", "CONFIG_ATM_NICSTAR_USE_IDT77105": "y", "CONFIG_ATM_IDT77252": "m", "CONFIG_ATM_IDT77252_DEBUG": "not set", "CONFIG_ATM_IDT77252_RCV_ALL": "not set", "CONFIG_ATM_IDT77252_USE_SUNI": "y", "CONFIG_ATM_IA": "m", "CONFIG_ATM_IA_DEBUG": "not set", "CONFIG_ATM_FORE200E": "m", "CONFIG_ATM_FORE200E_USE_TASKLET": "y", "CONFIG_ATM_FORE200E_TX_RETRY": "16", "CONFIG_ATM_FORE200E_DEBUG": "0", "CONFIG_ATM_HE": "m", "CONFIG_ATM_HE_USE_SUNI": "y", "CONFIG_ATM_SOLOS": "m", "CONFIG_CAIF_DRIVERS": "y", "CONFIG_CAIF_TTY": "m", "CONFIG_CAIF_VIRTIO": "m", "CONFIG_B53": "m", "CONFIG_B53_SPI_DRIVER": "not set", "CONFIG_B53_MDIO_DRIVER": "not set", "CONFIG_B53_MMAP_DRIVER": "not set", "CONFIG_B53_SRAB_DRIVER": "not set", "CONFIG_B53_SERDES": "not set", "CONFIG_NET_DSA_BCM_SF2": "m", "CONFIG_NET_DSA_LOOP": "m", "CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK": "m", "CONFIG_NET_DSA_LANTIQ_GSWIP": "m", "CONFIG_NET_DSA_MT7530": "m", "CONFIG_NET_DSA_MT7530_MDIO": "m", "CONFIG_NET_DSA_MT7530_MMIO": "m", "CONFIG_NET_DSA_MV88E6060": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_SPI": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_PTP": "y", "CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI": "m", "CONFIG_NET_DSA_MV88E6XXX": "m", "CONFIG_NET_DSA_MV88E6XXX_PTP": "y", "CONFIG_NET_DSA_MSCC_FELIX_DSA_LIB": "m", "CONFIG_NET_DSA_MSCC_OCELOT_EXT": "m", "CONFIG_NET_DSA_MSCC_SEVILLE": "m", "CONFIG_NET_DSA_AR9331": "m", "CONFIG_NET_DSA_QCA8K": "m", "CONFIG_NET_DSA_QCA8K_LEDS_SUPPORT": "y", "CONFIG_NET_DSA_SJA1105": "m", "CONFIG_NET_DSA_SJA1105_PTP": "y", "CONFIG_NET_DSA_SJA1105_TAS": "y", "CONFIG_NET_DSA_SJA1105_VL": "y", "CONFIG_NET_DSA_XRS700X": "m", "CONFIG_NET_DSA_XRS700X_I2C": "m", "CONFIG_NET_DSA_XRS700X_MDIO": "m", "CONFIG_NET_DSA_REALTEK": "m", "CONFIG_NET_DSA_REALTEK_RTL8365MB": "not set", "CONFIG_NET_DSA_REALTEK_RTL8366RB": "not set", "CONFIG_NET_DSA_SMSC_LAN9303": "m", "CONFIG_NET_DSA_SMSC_LAN9303_I2C": "m", "CONFIG_NET_DSA_SMSC_LAN9303_MDIO": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX_SPI": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM": "m", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "m", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "m", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "m", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "m", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "m", "CONFIG_ACENIC_OMIT_TIGON_I": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "m", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "m", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "m", "CONFIG_AMD_XGBE_DCB": "y", "CONFIG_AMD_XGBE_HAVE_ECC": "y", "CONFIG_PDS_CORE": "m", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "m", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_SPI_AX88796C": "m", "CONFIG_SPI_AX88796C_COMPRESSION": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "m", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "m", "CONFIG_B44_PCI_AUTOSELECT": "y", "CONFIG_B44_PCICORE_AUTOSELECT": "y", "CONFIG_B44_PCI": "y", "CONFIG_BCMGENET": "m", "CONFIG_BNX2": "m", "CONFIG_CNIC": "m", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "m", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_DCB": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "m", "CONFIG_LIQUIDIO": "m", "CONFIG_LIQUIDIO_VF": "m", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "m", "CONFIG_CHELSIO_T1_1G": "y", "CONFIG_CHELSIO_T3": "m", "CONFIG_CHELSIO_T4": "m", "CONFIG_CHELSIO_T4_DCB": "y", "CONFIG_CHELSIO_T4_FCOE": "y", "CONFIG_CHELSIO_T4VF": "m", "CONFIG_CHELSIO_LIB": "m", "CONFIG_CHELSIO_INLINE_CRYPTO": "y", "CONFIG_CRYPTO_DEV_CHELSIO_TLS": "m", "CONFIG_CHELSIO_IPSEC_INLINE": "m", "CONFIG_CHELSIO_TLS_DEVICE": "m", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "m", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DM9051": "m", "CONFIG_DNET": "m", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "y", "CONFIG_DE2104X": "m", "CONFIG_DE2104X_DSL": "0", "CONFIG_TULIP": "m", "CONFIG_TULIP_MWI": "not set", "CONFIG_TULIP_MMIO": "not set", "CONFIG_TULIP_NAPI": "y", "CONFIG_TULIP_NAPI_HW_MITIGATION": "y", "CONFIG_WINBOND_840": "m", "CONFIG_DM9102": "m", "CONFIG_ULI526X": "m", "CONFIG_PCMCIA_XIRCOM": "m", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "m", "CONFIG_SUNDANCE_MMIO": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "m", "CONFIG_BE2NET_HWMON": "y", "CONFIG_BE2NET_BE2": "y", "CONFIG_BE2NET_BE3": "y", "CONFIG_BE2NET_LANCER": "y", "CONFIG_BE2NET_SKYHAWK": "y", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "m", "CONFIG_TSNEP_SELFTESTS": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_CORE": "m", "CONFIG_FUN_ETH": "m", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "m", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "m", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "m", "CONFIG_E1000": "m", "CONFIG_E1000E": "m", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "m", "CONFIG_IGB_HWMON": "y", "CONFIG_IGB_DCA": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "m", "CONFIG_IXGBE_HWMON": "y", "CONFIG_IXGBE_DCA": "y", "CONFIG_IXGBE_DCB": "y", "CONFIG_IXGBE_IPSEC": "y", "CONFIG_IXGBEVF": "m", "CONFIG_IXGBEVF_IPSEC": "y", "CONFIG_I40E": "m", "CONFIG_I40E_DCB": "y", "CONFIG_IAVF": "m", "CONFIG_I40EVF": "m", "CONFIG_ICE": "m", "CONFIG_ICE_HWMON": "y", "CONFIG_ICE_SWITCHDEV": "y", "CONFIG_ICE_HWTS": "y", "CONFIG_FM10K": "m", "CONFIG_IGC": "m", "CONFIG_IDPF": "m", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_ADI": "y", "CONFIG_ADIN1110": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "y", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "m", "CONFIG_PRESTERA": "m", "CONFIG_PRESTERA_PCI": "m", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "m", "CONFIG_MLX4_EN_DCB": "y", "CONFIG_MLX4_CORE": "m", "CONFIG_MLX4_DEBUG": "y", "CONFIG_MLX4_CORE_GEN2": "y", "CONFIG_MLX5_CORE": "m", "CONFIG_MLX5_FPGA": "y", "CONFIG_MLX5_CORE_EN": "y", "CONFIG_MLX5_EN_ARFS": "y", "CONFIG_MLX5_EN_RXNFC": "y", "CONFIG_MLX5_MPFS": "y", "CONFIG_MLX5_ESWITCH": "y", "CONFIG_MLX5_BRIDGE": "y", "CONFIG_MLX5_CLS_ACT": "y", "CONFIG_MLX5_TC_CT": "y", "CONFIG_MLX5_TC_SAMPLE": "y", "CONFIG_MLX5_CORE_EN_DCB": "y", "CONFIG_MLX5_CORE_IPOIB": "y", "CONFIG_MLX5_MACSEC": "y", "CONFIG_MLX5_EN_IPSEC": "y", "CONFIG_MLX5_EN_TLS": "y", "CONFIG_MLX5_SW_STEERING": "y", "CONFIG_MLX5_SF": "y", "CONFIG_MLX5_SF_MANAGER": "y", "CONFIG_MLX5_DPLL": "m", "CONFIG_MLXSW_CORE": "m", "CONFIG_MLXSW_CORE_HWMON": "y", "CONFIG_MLXSW_CORE_THERMAL": "y", "CONFIG_MLXSW_PCI": "m", "CONFIG_MLXSW_I2C": "m", "CONFIG_MLXSW_SPECTRUM": "m", "CONFIG_MLXSW_SPECTRUM_DCB": "y", "CONFIG_MLXSW_MINIMAL": "m", "CONFIG_MLXFW": "m", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8842": "m", "CONFIG_KS8851": "not set", "CONFIG_KS8851_MLL": "m", "CONFIG_KSZ884X_PCI": "m", "CONFIG_NET_VENDOR_MICROCHIP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_MSCC_OCELOT_SWITCH_LIB": "m", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_MICROSOFT_MANA": "m", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "m", "CONFIG_MYRI10GE_DCA": "y", "CONFIG_FEALNX": "m", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "m", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "m", "CONFIG_NS83820": "m", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "m", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "m", "CONFIG_NFP_APP_FLOWER": "y", "CONFIG_NFP_APP_ABM_NIC": "y", "CONFIG_NFP_NET_IPSEC": "y", "CONFIG_NFP_DEBUG": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "m", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "m", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "m", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "m", "CONFIG_YELLOWFIN": "m", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "m", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "m", "CONFIG_QLCNIC": "m", "CONFIG_QLCNIC_SRIOV": "y", "CONFIG_QLCNIC_DCB": "y", "CONFIG_QLCNIC_HWMON": "y", "CONFIG_NETXEN_NIC": "m", "CONFIG_QED": "m", "CONFIG_QED_LL2": "y", "CONFIG_QED_SRIOV": "y", "CONFIG_QEDE": "m", "CONFIG_QED_RDMA": "y", "CONFIG_QED_ISCSI": "y", "CONFIG_QED_FCOE": "y", "CONFIG_QED_OOO": "y", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "m", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "m", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "m", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "not set", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "y", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_ROCKER": "m", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "m", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "m", "CONFIG_SIS190": "m", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "m", "CONFIG_SFC_MTD": "y", "CONFIG_SFC_MCDI_MON": "y", "CONFIG_SFC_SRIOV": "y", "CONFIG_SFC_MCDI_LOGGING": "y", "CONFIG_SFC_FALCON": "m", "CONFIG_SFC_FALCON_MTD": "y", "CONFIG_SFC_SIENA": "m", "CONFIG_SFC_SIENA_MTD": "y", "CONFIG_SFC_SIENA_MCDI_MON": "y", "CONFIG_SFC_SIENA_SRIOV": "y", "CONFIG_SFC_SIENA_MCDI_LOGGING": "y", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "m", "CONFIG_SMSC911X": "m", "CONFIG_SMSC911X_ARCH_HOOKS": "not set", "CONFIG_SMSC9420": "m", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "m", "CONFIG_STMMAC_SELFTESTS": "not set", "CONFIG_STMMAC_PLATFORM": "not set", "CONFIG_DWMAC_INTEL": "m", "CONFIG_STMMAC_PCI": "m", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "m", "CONFIG_SUNGEM": "m", "CONFIG_CASSINI": "m", "CONFIG_NIU": "m", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "m", "CONFIG_DWC_XLGMAC_PCI": "m", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "m", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "m", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_MSE102X": "m", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "m", "CONFIG_VIA_RHINE_MMIO": "y", "CONFIG_VIA_VELOCITY": "m", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_LIBWX": "m", "CONFIG_NGBE": "m", "CONFIG_TXGBE": "m", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "m", "CONFIG_WIZNET_W5300": "m", "CONFIG_WIZNET_BUS_DIRECT": "not set", "CONFIG_WIZNET_BUS_INDIRECT": "not set", "CONFIG_WIZNET_BUS_ANY": "y", "CONFIG_WIZNET_W5100_SPI": "m", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_AXI_EMAC": "m", "CONFIG_XILINX_LL_TEMAC": "m", "CONFIG_FDDI": "m", "CONFIG_DEFXX": "m", "CONFIG_SKFP": "m", "CONFIG_HIPPI": "y", "CONFIG_ROADRUNNER": "m", "CONFIG_ROADRUNNER_LARGE_RINGS": "not set", "CONFIG_NET_SB1000": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "y", "CONFIG_PHYLIB_LEDS": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "m", "CONFIG_AMD_PHY": "m", "CONFIG_ADIN_PHY": "m", "CONFIG_ADIN1100_PHY": "m", "CONFIG_AQUANTIA_PHY": "m", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "m", "CONFIG_BCM54140_PHY": "m", "CONFIG_BCM7XXX_PHY": "m", "CONFIG_BCM84881_PHY": "m", "CONFIG_BCM87XX_PHY": "m", "CONFIG_BCM_NET_PHYLIB": "m", "CONFIG_CICADA_PHY": "m", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "m", "CONFIG_ICPLUS_PHY": "m", "CONFIG_LXT_PHY": "m", "CONFIG_INTEL_XWAY_PHY": "m", "CONFIG_LSI_ET1011C_PHY": "m", "CONFIG_MARVELL_PHY": "m", "CONFIG_MARVELL_10G_PHY": "m", "CONFIG_MARVELL_88X2222_PHY": "m", "CONFIG_MAXLINEAR_GPHY": "m", "CONFIG_MEDIATEK_GE_PHY": "m", "CONFIG_MICREL_PHY": "m", "CONFIG_MICROCHIP_T1S_PHY": "m", "CONFIG_MICROCHIP_PHY": "m", "CONFIG_MICROCHIP_T1_PHY": "m", "CONFIG_MICROSEMI_PHY": "m", "CONFIG_MOTORCOMM_PHY": "m", "CONFIG_NATIONAL_PHY": "m", "CONFIG_NXP_CBTX_PHY": "m", "CONFIG_NXP_C45_TJA11XX_PHY": "m", "CONFIG_NXP_TJA11XX_PHY": "m", "CONFIG_NCN26000_PHY": "m", "CONFIG_AT803X_PHY": "m", "CONFIG_QSEMI_PHY": "m", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "m", "CONFIG_ROCKCHIP_PHY": "m", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "m", "CONFIG_TERANETICS_PHY": "m", "CONFIG_DP83822_PHY": "m", "CONFIG_DP83TC811_PHY": "m", "CONFIG_DP83848_PHY": "m", "CONFIG_DP83867_PHY": "m", "CONFIG_DP83869_PHY": "m", "CONFIG_DP83TD510_PHY": "m", "CONFIG_VITESSE_PHY": "m", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MICREL_KS8995MA": "not set", "CONFIG_PSE_CONTROLLER": "y", "CONFIG_PSE_REGULATOR": "m", "CONFIG_CAN_DEV": "m", "CONFIG_CAN_VCAN": "m", "CONFIG_CAN_VXCAN": "m", "CONFIG_CAN_NETLINK": "y", "CONFIG_CAN_CALC_BITTIMING": "y", "CONFIG_CAN_RX_OFFLOAD": "y", "CONFIG_CAN_CAN327": "m", "CONFIG_CAN_KVASER_PCIEFD": "m", "CONFIG_CAN_SLCAN": "m", "CONFIG_CAN_C_CAN": "m", "CONFIG_CAN_C_CAN_PLATFORM": "not set", "CONFIG_CAN_C_CAN_PCI": "m", "CONFIG_CAN_CC770": "not set", "CONFIG_CAN_CTUCANFD": "m", "CONFIG_CAN_CTUCANFD_PCI": "m", "CONFIG_CAN_IFI_CANFD": "m", "CONFIG_CAN_M_CAN": "m", "CONFIG_CAN_M_CAN_PCI": "m", "CONFIG_CAN_M_CAN_PLATFORM": "m", "CONFIG_CAN_M_CAN_TCAN4X5X": "m", "CONFIG_CAN_PEAK_PCIEFD": "m", "CONFIG_CAN_SJA1000": "m", "CONFIG_CAN_EMS_PCI": "m", "CONFIG_CAN_F81601": "m", "CONFIG_CAN_KVASER_PCI": "m", "CONFIG_CAN_PEAK_PCI": "m", "CONFIG_CAN_PEAK_PCIEC": "y", "CONFIG_CAN_PLX_PCI": "m", "CONFIG_CAN_SJA1000_ISA": "not set", "CONFIG_CAN_SJA1000_PLATFORM": "not set", "CONFIG_CAN_SOFTING": "m", "CONFIG_CAN_HI311X": "m", "CONFIG_CAN_MCP251X": "not set", "CONFIG_CAN_MCP251XFD": "m", "CONFIG_CAN_MCP251XFD_SANITY": "not set", "CONFIG_CAN_8DEV_USB": "m", "CONFIG_CAN_EMS_USB": "m", "CONFIG_CAN_ESD_USB": "m", "CONFIG_CAN_ETAS_ES58X": "m", "CONFIG_CAN_GS_USB": "m", "CONFIG_CAN_KVASER_USB": "m", "CONFIG_CAN_MCBA_USB": "m", "CONFIG_CAN_PEAK_USB": "m", "CONFIG_CAN_UCAN": "m", "CONFIG_CAN_DEBUG_DEVICES": "not set", "CONFIG_MCTP_SERIAL": "m", "CONFIG_MDIO_DEVICE": "m", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "m", "CONFIG_MDIO_BCM_UNIMAC": "m", "CONFIG_MDIO_GPIO": "m", "CONFIG_MDIO_I2C": "m", "CONFIG_MDIO_MVUSB": "m", "CONFIG_MDIO_MSCC_MIIM": "m", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "m", "CONFIG_PCS_LYNX": "m", "CONFIG_PCS_MTK_LYNXI": "m", "CONFIG_PLIP": "m", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "m", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOATM": "m", "CONFIG_PPPOE": "m", "CONFIG_PPTP": "m", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "m", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "m", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "m", "CONFIG_USB_NET_CDC_MBIM": "m", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "m", "CONFIG_USB_NET_SR9800": "m", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "m", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "m", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "y", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "m", "CONFIG_USB_NET_KALMIA": "m", "CONFIG_USB_NET_QMI_WWAN": "m", "CONFIG_USB_HSO": "m", "CONFIG_USB_NET_INT51X1": "m", "CONFIG_USB_CDC_PHONET": "m", "CONFIG_USB_IPHETH": "m", "CONFIG_USB_SIERRA_NET": "m", "CONFIG_USB_VL600": "m", "CONFIG_USB_NET_CH9200": "m", "CONFIG_USB_NET_AQC111": "m", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "m", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DEBUGFS": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "y", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "y", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "m", "CONFIG_ATH9K_HTC": "m", "CONFIG_ATH9K_HTC_DEBUGFS": "not set", "CONFIG_ATH9K_HWRNG": "y", "CONFIG_CARL9170": "m", "CONFIG_CARL9170_LEDS": "y", "CONFIG_CARL9170_DEBUGFS": "not set", "CONFIG_CARL9170_WPC": "y", "CONFIG_CARL9170_HWRNG": "y", "CONFIG_ATH6KL": "m", "CONFIG_ATH6KL_SDIO": "m", "CONFIG_ATH6KL_USB": "m", "CONFIG_ATH6KL_DEBUG": "not set", "CONFIG_ATH6KL_TRACING": "not set", "CONFIG_AR5523": "m", "CONFIG_WIL6210": "m", "CONFIG_WIL6210_ISR_COR": "y", "CONFIG_WIL6210_TRACING": "y", "CONFIG_WIL6210_DEBUGFS": "not set", "CONFIG_ATH10K": "m", "CONFIG_ATH10K_CE": "y", "CONFIG_ATH10K_PCI": "m", "CONFIG_ATH10K_SDIO": "m", "CONFIG_ATH10K_USB": "m", "CONFIG_ATH10K_DEBUG": "not set", "CONFIG_ATH10K_DEBUGFS": "not set", "CONFIG_ATH10K_TRACING": "not set", "CONFIG_WCN36XX": "m", "CONFIG_WCN36XX_DEBUGFS": "not set", "CONFIG_ATH11K": "m", "CONFIG_ATH11K_PCI": "m", "CONFIG_ATH11K_DEBUG": "not set", "CONFIG_ATH11K_DEBUGFS": "not set", "CONFIG_ATH11K_TRACING": "not set", "CONFIG_ATH12K": "m", "CONFIG_ATH12K_DEBUG": "not set", "CONFIG_ATH12K_TRACING": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_ATMEL": "m", "CONFIG_PCI_ATMEL": "m", "CONFIG_AT76C50X_USB": "m", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "m", "CONFIG_B43_BCMA": "y", "CONFIG_B43_SSB": "y", "CONFIG_B43_BUSES_BCMA_AND_SSB": "y", "CONFIG_B43_BUSES_BCMA": "not set", "CONFIG_B43_BUSES_SSB": "not set", "CONFIG_B43_PCI_AUTOSELECT": "y", "CONFIG_B43_PCICORE_AUTOSELECT": "y", "CONFIG_B43_SDIO": "y", "CONFIG_B43_BCMA_PIO": "y", "CONFIG_B43_PIO": "y", "CONFIG_B43_PHY_G": "y", "CONFIG_B43_PHY_N": "y", "CONFIG_B43_PHY_LP": "y", "CONFIG_B43_PHY_HT": "y", "CONFIG_B43_LEDS": "y", "CONFIG_B43_HWRNG": "y", "CONFIG_B43_DEBUG": "not set", "CONFIG_B43LEGACY": "m", "CONFIG_B43LEGACY_PCI_AUTOSELECT": "y", "CONFIG_B43LEGACY_PCICORE_AUTOSELECT": "y", "CONFIG_B43LEGACY_LEDS": "y", "CONFIG_B43LEGACY_HWRNG": "y", "CONFIG_B43LEGACY_DEBUG": "not set", "CONFIG_B43LEGACY_DMA": "y", "CONFIG_B43LEGACY_PIO": "y", "CONFIG_B43LEGACY_DMA_AND_PIO_MODE": "y", "CONFIG_B43LEGACY_DMA_MODE": "not set", "CONFIG_B43LEGACY_PIO_MODE": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMSMAC_LEDS": "y", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_CISCO": "y", "CONFIG_AIRO": "m", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "m", "CONFIG_IPW2100_MONITOR": "y", "CONFIG_IPW2100_DEBUG": "y", "CONFIG_IPW2200": "m", "CONFIG_IPW2200_MONITOR": "y", "CONFIG_IPW2200_RADIOTAP": "y", "CONFIG_IPW2200_PROMISCUOUS": "y", "CONFIG_IPW2200_QOS": "y", "CONFIG_IPW2200_DEBUG": "y", "CONFIG_LIBIPW": "m", "CONFIG_LIBIPW_DEBUG": "y", "CONFIG_IWLEGACY": "m", "CONFIG_IWL4965": "m", "CONFIG_IWL3945": "m", "CONFIG_IWLEGACY_DEBUG": "not set", "CONFIG_IWLEGACY_DEBUGFS": "not set", "CONFIG_IWLWIFI": "m", "CONFIG_IWLWIFI_LEDS": "y", "CONFIG_IWLDVM": "m", "CONFIG_IWLMVM": "m", "CONFIG_IWLWIFI_OPMODE_MODULAR": "y", "CONFIG_IWLWIFI_DEBUG": "y", "CONFIG_IWLWIFI_DEBUGFS": "y", "CONFIG_IWLWIFI_DEVICE_TRACING": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_HOSTAP": "m", "CONFIG_HOSTAP_FIRMWARE": "y", "CONFIG_HOSTAP_FIRMWARE_NVRAM": "y", "CONFIG_HOSTAP_PLX": "m", "CONFIG_HOSTAP_PCI": "m", "CONFIG_HERMES": "m", "CONFIG_HERMES_PRISM": "y", "CONFIG_HERMES_CACHE_FW_ON_INIT": "y", "CONFIG_PLX_HERMES": "m", "CONFIG_TMD_HERMES": "m", "CONFIG_NORTEL_HERMES": "m", "CONFIG_PCI_HERMES": "m", "CONFIG_ORINOCO_USB": "m", "CONFIG_P54_COMMON": "m", "CONFIG_P54_USB": "m", "CONFIG_P54_PCI": "m", "CONFIG_P54_SPI": "not set", "CONFIG_P54_LEDS": "y", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "m", "CONFIG_LIBERTAS_USB": "m", "CONFIG_LIBERTAS_SDIO": "m", "CONFIG_LIBERTAS_SPI": "not set", "CONFIG_LIBERTAS_DEBUG": "not set", "CONFIG_LIBERTAS_MESH": "y", "CONFIG_LIBERTAS_THINFIRM": "m", "CONFIG_LIBERTAS_THINFIRM_DEBUG": "not set", "CONFIG_LIBERTAS_THINFIRM_USB": "m", "CONFIG_MWIFIEX": "m", "CONFIG_MWIFIEX_SDIO": "m", "CONFIG_MWIFIEX_PCIE": "m", "CONFIG_MWIFIEX_USB": "m", "CONFIG_MWL8K": "m", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76_CORE": "m", "CONFIG_MT76_LEDS": "y", "CONFIG_MT76_USB": "m", "CONFIG_MT76_SDIO": "m", "CONFIG_MT76x02_LIB": "m", "CONFIG_MT76x02_USB": "m", "CONFIG_MT76_CONNAC_LIB": "m", "CONFIG_MT792x_LIB": "m", "CONFIG_MT792x_USB": "m", "CONFIG_MT76x0_COMMON": "m", "CONFIG_MT76x0U": "m", "CONFIG_MT76x0E": "m", "CONFIG_MT76x2_COMMON": "m", "CONFIG_MT76x2E": "m", "CONFIG_MT76x2U": "m", "CONFIG_MT7603E": "m", "CONFIG_MT7615_COMMON": "m", "CONFIG_MT7615E": "m", "CONFIG_MT7663_USB_SDIO_COMMON": "m", "CONFIG_MT7663U": "m", "CONFIG_MT7663S": "m", "CONFIG_MT7915E": "m", "CONFIG_MT7921_COMMON": "m", "CONFIG_MT7921E": "m", "CONFIG_MT7921S": "m", "CONFIG_MT7921U": "m", "CONFIG_MT7996E": "m", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WILC1000_SPI": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "m", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "m", "CONFIG_RT2500PCI": "m", "CONFIG_RT61PCI": "m", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "m", "CONFIG_RT73USB": "m", "CONFIG_RT2800USB": "m", "CONFIG_RT2800USB_RT33XX": "y", "CONFIG_RT2800USB_RT35XX": "y", "CONFIG_RT2800USB_RT3573": "y", "CONFIG_RT2800USB_RT53XX": "y", "CONFIG_RT2800USB_RT55XX": "y", "CONFIG_RT2800USB_UNKNOWN": "y", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB_USB": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_LIB_DEBUGFS": "not set", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "m", "CONFIG_RTL8187": "m", "CONFIG_RTL8187_LEDS": "y", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "m", "CONFIG_RTL8192SE": "m", "CONFIG_RTL8192DE": "m", "CONFIG_RTL8723AE": "m", "CONFIG_RTL8723BE": "m", "CONFIG_RTL8188EE": "m", "CONFIG_RTL8192EE": "m", "CONFIG_RTL8821AE": "m", "CONFIG_RTL8192CU": "m", "CONFIG_RTLWIFI": "m", "CONFIG_RTLWIFI_PCI": "m", "CONFIG_RTLWIFI_USB": "m", "CONFIG_RTLWIFI_DEBUG": "y", "CONFIG_RTL8192C_COMMON": "m", "CONFIG_RTL8723_COMMON": "m", "CONFIG_RTLBTCOEXIST": "m", "CONFIG_RTL8XXXU": "m", "CONFIG_RTL8XXXU_UNTESTED": "y", "CONFIG_RTW88": "m", "CONFIG_RTW88_CORE": "m", "CONFIG_RTW88_PCI": "m", "CONFIG_RTW88_SDIO": "m", "CONFIG_RTW88_USB": "m", "CONFIG_RTW88_8822B": "m", "CONFIG_RTW88_8822C": "m", "CONFIG_RTW88_8723D": "m", "CONFIG_RTW88_8821C": "m", "CONFIG_RTW88_8822BE": "m", "CONFIG_RTW88_8822BS": "m", "CONFIG_RTW88_8822BU": "m", "CONFIG_RTW88_8822CE": "m", "CONFIG_RTW88_8822CS": "m", "CONFIG_RTW88_8822CU": "m", "CONFIG_RTW88_8723DE": "m", "CONFIG_RTW88_8723DS": "not set", "CONFIG_RTW88_8723DU": "m", "CONFIG_RTW88_8821CE": "m", "CONFIG_RTW88_8821CS": "m", "CONFIG_RTW88_8821CU": "m", "CONFIG_RTW88_DEBUG": "not set", "CONFIG_RTW88_DEBUGFS": "not set", "CONFIG_RTW89": "m", "CONFIG_RTW89_CORE": "m", "CONFIG_RTW89_PCI": "m", "CONFIG_RTW89_8852A": "m", "CONFIG_RTW89_8852B": "m", "CONFIG_RTW89_8852C": "m", "CONFIG_RTW89_8851BE": "not set", "CONFIG_RTW89_8852AE": "m", "CONFIG_RTW89_8852BE": "m", "CONFIG_RTW89_8852CE": "m", "CONFIG_RTW89_DEBUGMSG": "not set", "CONFIG_RTW89_DEBUGFS": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "m", "CONFIG_RSI_DEBUGFS": "not set", "CONFIG_RSI_SDIO": "m", "CONFIG_RSI_USB": "m", "CONFIG_RSI_COEX": "y", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "m", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "m", "CONFIG_CW1200_WLAN_SDIO": "m", "CONFIG_CW1200_WLAN_SPI": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "m", "CONFIG_WL1251_SPI": "not set", "CONFIG_WL1251_SDIO": "m", "CONFIG_WL12XX": "m", "CONFIG_WL18XX": "m", "CONFIG_WLCORE": "m", "CONFIG_WLCORE_SDIO": "m", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_USB_ZD1201": "m", "CONFIG_ZD1211RW": "m", "CONFIG_ZD1211RW_DEBUG": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC": "m", "CONFIG_QTNFMAC_PCIE": "m", "CONFIG_USB_NET_RNDIS_WLAN": "m", "CONFIG_MAC80211_HWSIM": "m", "CONFIG_VIRT_WIFI": "m", "CONFIG_WAN": "y", "CONFIG_HDLC": "m", "CONFIG_HDLC_RAW": "m", "CONFIG_HDLC_RAW_ETH": "m", "CONFIG_HDLC_CISCO": "m", "CONFIG_HDLC_FR": "m", "CONFIG_HDLC_PPP": "m", "CONFIG_HDLC_X25": "m", "CONFIG_PCI200SYN": "m", "CONFIG_WANXL": "m", "CONFIG_PC300TOO": "m", "CONFIG_FARSYNC": "m", "CONFIG_LAPBETHER": "m", "CONFIG_IEEE802154_DRIVERS": "m", "CONFIG_IEEE802154_FAKELB": "m", "CONFIG_IEEE802154_AT86RF230": "not set", "CONFIG_IEEE802154_MRF24J40": "not set", "CONFIG_IEEE802154_CC2520": "not set", "CONFIG_IEEE802154_ATUSB": "not set", "CONFIG_IEEE802154_ADF7242": "m", "CONFIG_IEEE802154_CA8210": "m", "CONFIG_IEEE802154_CA8210_DEBUGFS": "not set", "CONFIG_IEEE802154_MCR20A": "m", "CONFIG_IEEE802154_HWSIM": "m", "CONFIG_WWAN": "y", "CONFIG_WWAN_DEBUGFS": "not set", "CONFIG_WWAN_HWSIM": "m", "CONFIG_MHI_WWAN_CTRL": "m", "CONFIG_MHI_WWAN_MBIM": "m", "CONFIG_RPMSG_WWAN_CTRL": "m", "CONFIG_IOSM": "m", "CONFIG_MTK_T7XX": "m", "CONFIG_XEN_NETDEV_FRONTEND": "m", "CONFIG_XEN_NETDEV_BACKEND": "m", "CONFIG_VMXNET3": "m", "CONFIG_FUJITSU_ES": "m", "CONFIG_USB4_NET": "m", "CONFIG_HYPERV_NET": "m", "CONFIG_NETDEVSIM": "m", "CONFIG_NET_FAILOVER": "m", "CONFIG_ISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "m", "CONFIG_INPUT_SPARSEKMAP": "m", "CONFIG_INPUT_MATRIXKMAP": "m", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "y", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "m", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADC": "not set", "CONFIG_KEYBOARD_ADP5588": "m", "CONFIG_KEYBOARD_ADP5589": "m", "CONFIG_KEYBOARD_APPLESPI": "m", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "m", "CONFIG_KEYBOARD_QT1070": "m", "CONFIG_KEYBOARD_QT2160": "m", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "m", "CONFIG_KEYBOARD_GPIO_POLLED": "m", "CONFIG_KEYBOARD_TCA6416": "m", "CONFIG_KEYBOARD_TCA8418": "m", "CONFIG_KEYBOARD_MATRIX": "m", "CONFIG_KEYBOARD_LM8323": "m", "CONFIG_KEYBOARD_LM8333": "m", "CONFIG_KEYBOARD_MAX7359": "m", "CONFIG_KEYBOARD_MCS": "m", "CONFIG_KEYBOARD_MPR121": "m", "CONFIG_KEYBOARD_NEWTON": "m", "CONFIG_KEYBOARD_OPENCORES": "m", "CONFIG_KEYBOARD_PINEPHONE": "m", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "m", "CONFIG_KEYBOARD_IQS62X": "m", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "m", "CONFIG_KEYBOARD_CROS_EC": "m", "CONFIG_KEYBOARD_CYPRESS_SF": "m", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "y", "CONFIG_MOUSE_PS2_ELANTECH_SMBUS": "y", "CONFIG_MOUSE_PS2_SENTELIC": "y", "CONFIG_MOUSE_PS2_TOUCHKIT": "y", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "y", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "m", "CONFIG_MOUSE_APPLETOUCH": "m", "CONFIG_MOUSE_BCM5974": "m", "CONFIG_MOUSE_CYAPA": "m", "CONFIG_MOUSE_ELAN_I2C": "m", "CONFIG_MOUSE_ELAN_I2C_I2C": "y", "CONFIG_MOUSE_ELAN_I2C_SMBUS": "y", "CONFIG_MOUSE_VSXXXAA": "m", "CONFIG_MOUSE_GPIO": "m", "CONFIG_MOUSE_SYNAPTICS_I2C": "m", "CONFIG_MOUSE_SYNAPTICS_USB": "m", "CONFIG_INPUT_JOYSTICK": "y", "CONFIG_JOYSTICK_ANALOG": "not set", "CONFIG_JOYSTICK_A3D": "not set", "CONFIG_JOYSTICK_ADC": "m", "CONFIG_JOYSTICK_ADI": "not set", "CONFIG_JOYSTICK_COBRA": "not set", "CONFIG_JOYSTICK_GF2K": "not set", "CONFIG_JOYSTICK_GRIP": "not set", "CONFIG_JOYSTICK_GRIP_MP": "not set", "CONFIG_JOYSTICK_GUILLEMOT": "not set", "CONFIG_JOYSTICK_INTERACT": "not set", "CONFIG_JOYSTICK_SIDEWINDER": "not set", "CONFIG_JOYSTICK_TMDC": "not set", "CONFIG_JOYSTICK_IFORCE": "m", "CONFIG_JOYSTICK_IFORCE_USB": "m", "CONFIG_JOYSTICK_IFORCE_232": "m", "CONFIG_JOYSTICK_WARRIOR": "m", "CONFIG_JOYSTICK_MAGELLAN": "m", "CONFIG_JOYSTICK_SPACEORB": "m", "CONFIG_JOYSTICK_SPACEBALL": "m", "CONFIG_JOYSTICK_STINGER": "m", "CONFIG_JOYSTICK_TWIDJOY": "m", "CONFIG_JOYSTICK_ZHENHUA": "m", "CONFIG_JOYSTICK_DB9": "m", "CONFIG_JOYSTICK_GAMECON": "m", "CONFIG_JOYSTICK_TURBOGRAFX": "m", "CONFIG_JOYSTICK_AS5011": "m", "CONFIG_JOYSTICK_JOYDUMP": "not set", "CONFIG_JOYSTICK_XPAD": "m", "CONFIG_JOYSTICK_XPAD_FF": "y", "CONFIG_JOYSTICK_XPAD_LEDS": "y", "CONFIG_JOYSTICK_WALKERA0701": "m", "CONFIG_JOYSTICK_PSXPAD_SPI": "m", "CONFIG_JOYSTICK_PSXPAD_SPI_FF": "y", "CONFIG_JOYSTICK_PXRC": "m", "CONFIG_JOYSTICK_QWIIC": "m", "CONFIG_JOYSTICK_FSIA6B": "m", "CONFIG_JOYSTICK_SENSEHAT": "m", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "m", "CONFIG_TABLET_USB_AIPTEK": "m", "CONFIG_TABLET_USB_HANWANG": "m", "CONFIG_TABLET_USB_KBTAB": "m", "CONFIG_TABLET_USB_PEGASUS": "m", "CONFIG_TABLET_SERIAL_WACOM4": "m", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_ADS7846": "not set", "CONFIG_TOUCHSCREEN_AD7877": "not set", "CONFIG_TOUCHSCREEN_AD7879": "m", "CONFIG_TOUCHSCREEN_AD7879_I2C": "m", "CONFIG_TOUCHSCREEN_AD7879_SPI": "not set", "CONFIG_TOUCHSCREEN_ADC": "m", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "m", "CONFIG_TOUCHSCREEN_ATMEL_MXT_T37": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "m", "CONFIG_TOUCHSCREEN_BU21013": "m", "CONFIG_TOUCHSCREEN_BU21029": "m", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "m", "CONFIG_TOUCHSCREEN_CY8CTMA140": "m", "CONFIG_TOUCHSCREEN_CY8CTMG110": "m", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "m", "CONFIG_TOUCHSCREEN_CYTTSP_I2C": "m", "CONFIG_TOUCHSCREEN_CYTTSP_SPI": "not set", "CONFIG_TOUCHSCREEN_CYTTSP4_CORE": "m", "CONFIG_TOUCHSCREEN_CYTTSP4_I2C": "m", "CONFIG_TOUCHSCREEN_CYTTSP4_SPI": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "m", "CONFIG_TOUCHSCREEN_DYNAPRO": "m", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "m", "CONFIG_TOUCHSCREEN_EETI": "m", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "m", "CONFIG_TOUCHSCREEN_EXC3000": "m", "CONFIG_TOUCHSCREEN_FUJITSU": "m", "CONFIG_TOUCHSCREEN_GOODIX": "m", "CONFIG_TOUCHSCREEN_HIDEEP": "m", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "m", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "m", "CONFIG_TOUCHSCREEN_ILI210X": "m", "CONFIG_TOUCHSCREEN_ILITEK": "m", "CONFIG_TOUCHSCREEN_S6SY761": "m", "CONFIG_TOUCHSCREEN_GUNZE": "m", "CONFIG_TOUCHSCREEN_EKTF2127": "m", "CONFIG_TOUCHSCREEN_ELAN": "m", "CONFIG_TOUCHSCREEN_ELO": "m", "CONFIG_TOUCHSCREEN_WACOM_W8001": "m", "CONFIG_TOUCHSCREEN_WACOM_I2C": "m", "CONFIG_TOUCHSCREEN_MAX11801": "m", "CONFIG_TOUCHSCREEN_MCS5000": "m", "CONFIG_TOUCHSCREEN_MMS114": "m", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "m", "CONFIG_TOUCHSCREEN_MSG2638": "m", "CONFIG_TOUCHSCREEN_MTOUCH": "m", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "m", "CONFIG_TOUCHSCREEN_IMAGIS": "m", "CONFIG_TOUCHSCREEN_INEXIO": "m", "CONFIG_TOUCHSCREEN_MK712": "m", "CONFIG_TOUCHSCREEN_PENMOUNT": "m", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "m", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "m", "CONFIG_TOUCHSCREEN_TOUCHWIN": "m", "CONFIG_TOUCHSCREEN_PIXCIR": "m", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "m", "CONFIG_TOUCHSCREEN_WM97XX": "m", "CONFIG_TOUCHSCREEN_WM9705": "y", "CONFIG_TOUCHSCREEN_WM9712": "y", "CONFIG_TOUCHSCREEN_WM9713": "y", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "m", "CONFIG_TOUCHSCREEN_TSC_SERIO": "m", "CONFIG_TOUCHSCREEN_TSC200X_CORE": "m", "CONFIG_TOUCHSCREEN_TSC2004": "m", "CONFIG_TOUCHSCREEN_TSC2005": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "m", "CONFIG_TOUCHSCREEN_TSC2007_IIO": "y", "CONFIG_TOUCHSCREEN_RM_TS": "m", "CONFIG_TOUCHSCREEN_SILEAD": "m", "CONFIG_TOUCHSCREEN_SIS_I2C": "m", "CONFIG_TOUCHSCREEN_ST1232": "m", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "m", "CONFIG_TOUCHSCREEN_SURFACE3_SPI": "m", "CONFIG_TOUCHSCREEN_SX8654": "m", "CONFIG_TOUCHSCREEN_TPS6507X": "m", "CONFIG_TOUCHSCREEN_ZET6223": "m", "CONFIG_TOUCHSCREEN_ZFORCE": "m", "CONFIG_TOUCHSCREEN_COLIBRI_VF50": "m", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "m", "CONFIG_TOUCHSCREEN_IQS5XX": "m", "CONFIG_TOUCHSCREEN_ZINITIX": "m", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "m", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "m", "CONFIG_INPUT_AD714X_I2C": "m", "CONFIG_INPUT_AD714X_SPI": "not set", "CONFIG_INPUT_BMA150": "m", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "m", "CONFIG_INPUT_MMA8450": "m", "CONFIG_INPUT_APANEL": "m", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "m", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "m", "CONFIG_INPUT_ATI_REMOTE2": "m", "CONFIG_INPUT_KEYSPAN_REMOTE": "m", "CONFIG_INPUT_KXTJ9": "m", "CONFIG_INPUT_POWERMATE": "m", "CONFIG_INPUT_YEALINK": "m", "CONFIG_INPUT_CM109": "m", "CONFIG_INPUT_REGULATOR_HAPTIC": "m", "CONFIG_INPUT_AXP20X_PEK": "m", "CONFIG_INPUT_UINPUT": "m", "CONFIG_INPUT_PCF8574": "m", "CONFIG_INPUT_PWM_BEEPER": "m", "CONFIG_INPUT_PWM_VIBRA": "m", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "m", "CONFIG_INPUT_DA7280_HAPTICS": "m", "CONFIG_INPUT_DA9063_ONKEY": "m", "CONFIG_INPUT_ADXL34X": "m", "CONFIG_INPUT_ADXL34X_I2C": "m", "CONFIG_INPUT_ADXL34X_SPI": "not set", "CONFIG_INPUT_IMS_PCU": "m", "CONFIG_INPUT_IQS269A": "m", "CONFIG_INPUT_IQS626A": "m", "CONFIG_INPUT_IQS7222": "m", "CONFIG_INPUT_CMA3000": "m", "CONFIG_INPUT_CMA3000_I2C": "m", "CONFIG_INPUT_XEN_KBDDEV_FRONTEND": "m", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "m", "CONFIG_INPUT_SOC_BUTTON_ARRAY": "m", "CONFIG_INPUT_DRV260X_HAPTICS": "m", "CONFIG_INPUT_DRV2665_HAPTICS": "m", "CONFIG_INPUT_DRV2667_HAPTICS": "m", "CONFIG_RMI4_CORE": "m", "CONFIG_RMI4_I2C": "m", "CONFIG_RMI4_SPI": "m", "CONFIG_RMI4_SMB": "m", "CONFIG_RMI4_F03": "y", "CONFIG_RMI4_F03_SERIO": "m", "CONFIG_RMI4_2D_SENSOR": "y", "CONFIG_RMI4_F11": "y", "CONFIG_RMI4_F12": "y", "CONFIG_RMI4_F30": "y", "CONFIG_RMI4_F34": "y", "CONFIG_RMI4_F3A": "y", "CONFIG_RMI4_F54": "y", "CONFIG_RMI4_F55": "y", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "m", "CONFIG_SERIO_CT82C710": "m", "CONFIG_SERIO_PARKBD": "m", "CONFIG_SERIO_PCIPS2": "m", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "m", "CONFIG_SERIO_ALTERA_PS2": "m", "CONFIG_SERIO_PS2MULT": "m", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_HYPERV_KEYBOARD": "m", "CONFIG_SERIO_GPIO_PS2": "m", "CONFIG_USERIO": "m", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_HW_CONSOLE": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "y", "CONFIG_LEGACY_PTY_COUNT": "0", "CONFIG_LEGACY_TIOCSTI": "not set", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "not set", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "y", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_DMA": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "32", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "32", "CONFIG_SERIAL_8250_EXTENDED": "y", "CONFIG_SERIAL_8250_MANY_PORTS": "y", "CONFIG_SERIAL_8250_PCI1XXXX": "y", "CONFIG_SERIAL_8250_SHARE_IRQ": "y", "CONFIG_SERIAL_8250_DETECT_IRQ": "not set", "CONFIG_SERIAL_8250_RSA": "y", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_FSL": "not set", "CONFIG_SERIAL_8250_DFL": "m", "CONFIG_SERIAL_8250_DW": "y", "CONFIG_SERIAL_8250_RT288X": "y", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_MAX3100": "not set", "CONFIG_SERIAL_MAX310X": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "m", "CONFIG_SERIAL_LANTIQ": "m", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX_CORE": "m", "CONFIG_SERIAL_SC16IS7XX": "m", "CONFIG_SERIAL_SC16IS7XX_I2C": "y", "CONFIG_SERIAL_SC16IS7XX_SPI": "y", "CONFIG_SERIAL_ALTERA_JTAGUART": "m", "CONFIG_SERIAL_ALTERA_UART": "m", "CONFIG_SERIAL_ALTERA_UART_MAXPORTS": "4", "CONFIG_SERIAL_ALTERA_UART_BAUDRATE": "115200", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "m", "CONFIG_SERIAL_RP2_NR_UARTS": "32", "CONFIG_SERIAL_FSL_LPUART": "m", "CONFIG_SERIAL_FSL_LINFLEXUART": "m", "CONFIG_SERIAL_SPRD": "m", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "y", "CONFIG_MOXA_INTELLIO": "m", "CONFIG_MOXA_SMARTIO": "m", "CONFIG_SYNCLINK_GT": "m", "CONFIG_N_HDLC": "m", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "m", "CONFIG_NULL_TTY": "m", "CONFIG_HVC_DRIVER": "y", "CONFIG_HVC_IRQ": "y", "CONFIG_HVC_XEN": "y", "CONFIG_HVC_XEN_FRONTEND": "y", "CONFIG_RPMSG_TTY": "m", "CONFIG_SERIAL_DEV_BUS": "y", "CONFIG_SERIAL_DEV_CTRL_TTYPORT": "y", "CONFIG_TTY_PRINTK": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "m", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "m", "CONFIG_IPMI_DMI_DECODE": "y", "CONFIG_IPMI_PLAT_DATA": "y", "CONFIG_IPMI_PANIC_EVENT": "y", "CONFIG_IPMI_PANIC_STRING": "not set", "CONFIG_IPMI_DEVICE_INTERFACE": "m", "CONFIG_IPMI_SI": "m", "CONFIG_IPMI_SSIF": "m", "CONFIG_IPMI_WATCHDOG": "m", "CONFIG_IPMI_POWEROFF": "m", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "m", "CONFIG_HW_RANDOM_AMD": "m", "CONFIG_HW_RANDOM_BA431": "m", "CONFIG_HW_RANDOM_VIA": "m", "CONFIG_HW_RANDOM_VIRTIO": "m", "CONFIG_HW_RANDOM_XIPHERA": "m", "CONFIG_APPLICOM": "m", "CONFIG_MWAVE": "m", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "y", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "m", "CONFIG_UV_MMTIMER": "m", "CONFIG_TCG_TPM": "y", "CONFIG_HW_RANDOM_TPM": "y", "CONFIG_TCG_TIS_CORE": "y", "CONFIG_TCG_TIS": "y", "CONFIG_TCG_TIS_SPI": "m", "CONFIG_TCG_TIS_SPI_CR50": "y", "CONFIG_TCG_TIS_I2C": "m", "CONFIG_TCG_TIS_I2C_CR50": "m", "CONFIG_TCG_TIS_I2C_ATMEL": "m", "CONFIG_TCG_TIS_I2C_INFINEON": "m", "CONFIG_TCG_TIS_I2C_NUVOTON": "m", "CONFIG_TCG_NSC": "m", "CONFIG_TCG_ATMEL": "m", "CONFIG_TCG_INFINEON": "m", "CONFIG_TCG_XEN": "m", "CONFIG_TCG_CRB": "y", "CONFIG_TCG_VTPM_PROXY": "m", "CONFIG_TCG_TIS_ST33ZP24": "m", "CONFIG_TCG_TIS_ST33ZP24_I2C": "m", "CONFIG_TCG_TIS_ST33ZP24_SPI": "m", "CONFIG_TELCLOCK": "m", "CONFIG_CRASHER": "m", "CONFIG_XILLYBUS_CLASS": "m", "CONFIG_XILLYBUS": "m", "CONFIG_XILLYBUS_PCIE": "m", "CONFIG_XILLYUSB": "m", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_COMPAT": "not set", "CONFIG_I2C_CHARDEV": "m", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "m", "CONFIG_I2C_MUX_LTC4306": "m", "CONFIG_I2C_MUX_PCA9541": "m", "CONFIG_I2C_MUX_PCA954x": "m", "CONFIG_I2C_MUX_REG": "m", "CONFIG_I2C_MUX_MLXCPLD": "m", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "m", "CONFIG_I2C_ALGOBIT": "m", "CONFIG_I2C_ALGOPCA": "m", "CONFIG_I2C_CCGX_UCSI": "m", "CONFIG_I2C_ALI1535": "m", "CONFIG_I2C_ALI1563": "m", "CONFIG_I2C_ALI15X3": "m", "CONFIG_I2C_AMD756": "m", "CONFIG_I2C_AMD756_S4882": "m", "CONFIG_I2C_AMD8111": "m", "CONFIG_I2C_AMD_MP2": "m", "CONFIG_I2C_I801": "m", "CONFIG_I2C_ISCH": "m", "CONFIG_I2C_ISMT": "m", "CONFIG_I2C_PIIX4": "m", "CONFIG_I2C_NFORCE2": "m", "CONFIG_I2C_NFORCE2_S4985": "m", "CONFIG_I2C_NVIDIA_GPU": "m", "CONFIG_I2C_SIS5595": "m", "CONFIG_I2C_SIS630": "m", "CONFIG_I2C_SIS96X": "m", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "m", "CONFIG_I2C_SCMI": "m", "CONFIG_I2C_CBUS_GPIO": "m", "CONFIG_I2C_DESIGNWARE_CORE": "m", "CONFIG_I2C_DESIGNWARE_SLAVE": "not set", "CONFIG_I2C_DESIGNWARE_PLATFORM": "m", "CONFIG_I2C_DESIGNWARE_AMDPSP": "y", "CONFIG_I2C_DESIGNWARE_BAYTRAIL": "y", "CONFIG_I2C_DESIGNWARE_PCI": "m", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "m", "CONFIG_I2C_GPIO_FAULT_INJECTOR": "not set", "CONFIG_I2C_KEMPLD": "m", "CONFIG_I2C_OCORES": "m", "CONFIG_I2C_PCA_PLATFORM": "m", "CONFIG_I2C_PXA_PCI": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "m", "CONFIG_I2C_DLN2": "m", "CONFIG_I2C_CP2615": "m", "CONFIG_I2C_PARPORT": "m", "CONFIG_I2C_PCI1XXXX": "m", "CONFIG_I2C_ROBOTFUZZ_OSIF": "m", "CONFIG_I2C_TAOS_EVM": "m", "CONFIG_I2C_TINY_USB": "m", "CONFIG_I2C_VIPERBOARD": "m", "CONFIG_I2C_MLXCPLD": "m", "CONFIG_I2C_CROS_EC_TUNNEL": "m", "CONFIG_I2C_VIRTIO": "m", "CONFIG_I2C_STUB": "m", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "m", "CONFIG_CDNS_I3C_MASTER": "m", "CONFIG_DW_I3C_MASTER": "m", "CONFIG_SVC_I3C_MASTER": "m", "CONFIG_MIPI_I3C_HCI": "m", "CONFIG_SPI": "y", "CONFIG_SPI_DEBUG": "not set", "CONFIG_SPI_MASTER": "y", "CONFIG_SPI_MEM": "y", "CONFIG_SPI_ALTERA": "not set", "CONFIG_SPI_ALTERA_CORE": "m", "CONFIG_SPI_ALTERA_DFL": "m", "CONFIG_SPI_AXI_SPI_ENGINE": "not set", "CONFIG_SPI_BITBANG": "y", "CONFIG_SPI_BUTTERFLY": "not set", "CONFIG_SPI_CADENCE": "not set", "CONFIG_SPI_DESIGNWARE": "not set", "CONFIG_SPI_DLN2": "m", "CONFIG_SPI_GPIO": "not set", "CONFIG_SPI_INTEL": "m", "CONFIG_SPI_INTEL_PCI": "m", "CONFIG_SPI_INTEL_PLATFORM": "m", "CONFIG_SPI_LM70_LLP": "not set", "CONFIG_SPI_MICROCHIP_CORE": "m", "CONFIG_SPI_MICROCHIP_CORE_QSPI": "m", "CONFIG_SPI_LANTIQ_SSC": "not set", "CONFIG_SPI_OC_TINY": "not set", "CONFIG_SPI_PCI1XXXX": "not set", "CONFIG_SPI_PXA2XX": "m", "CONFIG_SPI_PXA2XX_PCI": "m", "CONFIG_SPI_SC18IS602": "not set", "CONFIG_SPI_SIFIVE": "not set", "CONFIG_SPI_MXIC": "not set", "CONFIG_SPI_XCOMM": "not set", "CONFIG_SPI_XILINX": "not set", "CONFIG_SPI_ZYNQMP_GQSPI": "not set", "CONFIG_SPI_AMD": "m", "CONFIG_SPI_MUX": "m", "CONFIG_SPI_SPIDEV": "not set", "CONFIG_SPI_LOOPBACK_TEST": "m", "CONFIG_SPI_TLE62X0": "not set", "CONFIG_SPI_SLAVE": "not set", "CONFIG_SPI_DYNAMIC": "y", "CONFIG_SPMI": "m", "CONFIG_SPMI_HISI3670": "not set", "CONFIG_HSI": "m", "CONFIG_HSI_BOARDINFO": "y", "CONFIG_HSI_CHAR": "m", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "m", "CONFIG_PPS_CLIENT_PARPORT": "m", "CONFIG_PPS_CLIENT_GPIO": "m", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "m", "CONFIG_PTP_1588_CLOCK_IDT82P33": "m", "CONFIG_PTP_1588_CLOCK_IDTCM": "m", "CONFIG_PTP_1588_CLOCK_VMW": "m", "CONFIG_PTP_1588_CLOCK_OCP": "m", "CONFIG_PTP_DFL_TOD": "m", "CONFIG_PINCTRL": "y", "CONFIG_PINMUX": "y", "CONFIG_PINCONF": "y", "CONFIG_GENERIC_PINCONF": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "y", "CONFIG_PINCTRL_CY8C95X0": "m", "CONFIG_PINCTRL_DA9062": "m", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_MADERA": "m", "CONFIG_PINCTRL_CS47L15": "y", "CONFIG_PINCTRL_CS47L35": "y", "CONFIG_PINCTRL_CS47L85": "y", "CONFIG_PINCTRL_CS47L90": "y", "CONFIG_PINCTRL_CS47L92": "y", "CONFIG_PINCTRL_BAYTRAIL": "y", "CONFIG_PINCTRL_CHERRYVIEW": "m", "CONFIG_PINCTRL_LYNXPOINT": "m", "CONFIG_PINCTRL_INTEL": "y", "CONFIG_PINCTRL_ALDERLAKE": "m", "CONFIG_PINCTRL_BROXTON": "m", "CONFIG_PINCTRL_CANNONLAKE": "m", "CONFIG_PINCTRL_CEDARFORK": "m", "CONFIG_PINCTRL_DENVERTON": "m", "CONFIG_PINCTRL_ELKHARTLAKE": "m", "CONFIG_PINCTRL_EMMITSBURG": "m", "CONFIG_PINCTRL_GEMINILAKE": "m", "CONFIG_PINCTRL_ICELAKE": "m", "CONFIG_PINCTRL_JASPERLAKE": "m", "CONFIG_PINCTRL_LAKEFIELD": "m", "CONFIG_PINCTRL_LEWISBURG": "m", "CONFIG_PINCTRL_METEORLAKE": "m", "CONFIG_PINCTRL_SUNRISEPOINT": "m", "CONFIG_PINCTRL_TIGERLAKE": "m", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_GPIOLIB_IRQCHIP": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_SYSFS": "y", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_GENERIC": "m", "CONFIG_GPIO_REGMAP": "m", "CONFIG_GPIO_MAX730X": "m", "CONFIG_GPIO_IDIO_16": "m", "CONFIG_GPIO_AMDPT": "m", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "m", "CONFIG_GPIO_GENERIC_PLATFORM": "m", "CONFIG_GPIO_ICH": "m", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_TANGIER": "m", "CONFIG_GPIO_VX855": "m", "CONFIG_GPIO_AMD_FCH": "m", "CONFIG_GPIO_I8255": "m", "CONFIG_GPIO_104_DIO_48E": "m", "CONFIG_GPIO_104_IDIO_16": "m", "CONFIG_GPIO_104_IDI_48": "m", "CONFIG_GPIO_F7188X": "m", "CONFIG_GPIO_GPIO_MM": "m", "CONFIG_GPIO_IT87": "m", "CONFIG_GPIO_SCH": "m", "CONFIG_GPIO_SCH311X": "m", "CONFIG_GPIO_WINBOND": "m", "CONFIG_GPIO_WS16C48": "m", "CONFIG_GPIO_FXL6408": "m", "CONFIG_GPIO_MAX7300": "m", "CONFIG_GPIO_MAX732X": "m", "CONFIG_GPIO_PCA953X": "m", "CONFIG_GPIO_PCA953X_IRQ": "y", "CONFIG_GPIO_PCA9570": "m", "CONFIG_GPIO_PCF857X": "m", "CONFIG_GPIO_TPIC2810": "m", "CONFIG_GPIO_DLN2": "m", "CONFIG_GPIO_ELKHARTLAKE": "m", "CONFIG_GPIO_KEMPLD": "m", "CONFIG_GPIO_LP3943": "m", "CONFIG_GPIO_MADERA": "m", "CONFIG_GPIO_TPS68470": "not set", "CONFIG_GPIO_TQMX86": "m", "CONFIG_GPIO_WHISKEY_COVE": "m", "CONFIG_GPIO_AMD8111": "m", "CONFIG_GPIO_ML_IOH": "m", "CONFIG_GPIO_PCI_IDIO_16": "m", "CONFIG_GPIO_PCIE_IDIO_24": "m", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_MAX3191X": "m", "CONFIG_GPIO_MAX7301": "not set", "CONFIG_GPIO_MC33880": "not set", "CONFIG_GPIO_PISOSR": "m", "CONFIG_GPIO_XRA1403": "not set", "CONFIG_GPIO_VIPERBOARD": "m", "CONFIG_GPIO_AGGREGATOR": "m", "CONFIG_GPIO_LATCH": "m", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "m", "CONFIG_GPIO_SIM": "m", "CONFIG_W1": "m", "CONFIG_W1_CON": "y", "CONFIG_W1_MASTER_MATROX": "m", "CONFIG_W1_MASTER_DS2490": "m", "CONFIG_W1_MASTER_DS2482": "m", "CONFIG_W1_MASTER_GPIO": "not set", "CONFIG_W1_MASTER_SGI": "m", "CONFIG_W1_SLAVE_THERM": "m", "CONFIG_W1_SLAVE_SMEM": "m", "CONFIG_W1_SLAVE_DS2405": "m", "CONFIG_W1_SLAVE_DS2408": "m", "CONFIG_W1_SLAVE_DS2408_READBACK": "y", "CONFIG_W1_SLAVE_DS2413": "m", "CONFIG_W1_SLAVE_DS2406": "m", "CONFIG_W1_SLAVE_DS2423": "m", "CONFIG_W1_SLAVE_DS2805": "m", "CONFIG_W1_SLAVE_DS2430": "m", "CONFIG_W1_SLAVE_DS2431": "m", "CONFIG_W1_SLAVE_DS2433": "m", "CONFIG_W1_SLAVE_DS2433_CRC": "y", "CONFIG_W1_SLAVE_DS2438": "m", "CONFIG_W1_SLAVE_DS250X": "m", "CONFIG_W1_SLAVE_DS2780": "m", "CONFIG_W1_SLAVE_DS2781": "m", "CONFIG_W1_SLAVE_DS28E04": "m", "CONFIG_W1_SLAVE_DS28E17": "m", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_GENERIC_ADC_BATTERY": "not set", "CONFIG_IP5XXX_POWER": "m", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "m", "CONFIG_BATTERY_CW2015": "m", "CONFIG_BATTERY_DS2760": "m", "CONFIG_BATTERY_DS2780": "m", "CONFIG_BATTERY_DS2781": "m", "CONFIG_BATTERY_DS2782": "m", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "m", "CONFIG_CHARGER_SBS": "m", "CONFIG_MANAGER_SBS": "m", "CONFIG_BATTERY_BQ27XXX": "m", "CONFIG_BATTERY_BQ27XXX_I2C": "m", "CONFIG_BATTERY_BQ27XXX_HDQ": "m", "CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM": "not set", "CONFIG_CHARGER_AXP20X": "m", "CONFIG_BATTERY_AXP20X": "m", "CONFIG_AXP20X_POWER": "m", "CONFIG_AXP288_CHARGER": "m", "CONFIG_AXP288_FUEL_GAUGE": "m", "CONFIG_BATTERY_MAX17040": "m", "CONFIG_BATTERY_MAX17042": "m", "CONFIG_BATTERY_MAX1721X": "m", "CONFIG_CHARGER_ISP1704": "m", "CONFIG_CHARGER_MAX8903": "m", "CONFIG_CHARGER_LP8727": "m", "CONFIG_CHARGER_GPIO": "m", "CONFIG_CHARGER_MANAGER": "y", "CONFIG_CHARGER_LT3651": "m", "CONFIG_CHARGER_LTC4162L": "m", "CONFIG_CHARGER_MAX77976": "m", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24190": "m", "CONFIG_CHARGER_BQ24257": "m", "CONFIG_CHARGER_BQ24735": "m", "CONFIG_CHARGER_BQ2515X": "m", "CONFIG_CHARGER_BQ25890": "m", "CONFIG_CHARGER_BQ25980": "m", "CONFIG_CHARGER_BQ256XX": "m", "CONFIG_CHARGER_SMB347": "m", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "m", "CONFIG_BATTERY_RT5033": "m", "CONFIG_CHARGER_RT9455": "m", "CONFIG_CHARGER_RT9467": "m", "CONFIG_CHARGER_RT9471": "m", "CONFIG_CHARGER_CROS_USBPD": "m", "CONFIG_CHARGER_CROS_PCHG": "m", "CONFIG_CHARGER_BD99954": "m", "CONFIG_CHARGER_WILCO": "m", "CONFIG_BATTERY_SURFACE": "m", "CONFIG_CHARGER_SURFACE": "m", "CONFIG_BATTERY_UG3105": "m", "CONFIG_HWMON": "y", "CONFIG_HWMON_VID": "m", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "m", "CONFIG_SENSORS_ABITUGURU3": "m", "CONFIG_SENSORS_AD7314": "not set", "CONFIG_SENSORS_AD7414": "m", "CONFIG_SENSORS_AD7418": "m", "CONFIG_SENSORS_ADM1025": "m", "CONFIG_SENSORS_ADM1026": "m", "CONFIG_SENSORS_ADM1029": "m", "CONFIG_SENSORS_ADM1031": "m", "CONFIG_SENSORS_ADM1177": "m", "CONFIG_SENSORS_ADM9240": "m", "CONFIG_SENSORS_ADT7X10": "m", "CONFIG_SENSORS_ADT7310": "not set", "CONFIG_SENSORS_ADT7410": "m", "CONFIG_SENSORS_ADT7411": "m", "CONFIG_SENSORS_ADT7462": "m", "CONFIG_SENSORS_ADT7470": "m", "CONFIG_SENSORS_ADT7475": "m", "CONFIG_SENSORS_AHT10": "m", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "m", "CONFIG_SENSORS_AS370": "m", "CONFIG_SENSORS_ASC7621": "m", "CONFIG_SENSORS_AXI_FAN_CONTROL": "m", "CONFIG_SENSORS_K8TEMP": "m", "CONFIG_SENSORS_K10TEMP": "m", "CONFIG_SENSORS_FAM15H_POWER": "m", "CONFIG_SENSORS_APPLESMC": "m", "CONFIG_SENSORS_ASB100": "m", "CONFIG_SENSORS_ATXP1": "m", "CONFIG_SENSORS_CORSAIR_CPRO": "m", "CONFIG_SENSORS_CORSAIR_PSU": "m", "CONFIG_SENSORS_DRIVETEMP": "m", "CONFIG_SENSORS_DS620": "m", "CONFIG_SENSORS_DS1621": "m", "CONFIG_SENSORS_DELL_SMM": "m", "CONFIG_I8K": "y", "CONFIG_SENSORS_I5K_AMB": "m", "CONFIG_SENSORS_F71805F": "m", "CONFIG_SENSORS_F71882FG": "m", "CONFIG_SENSORS_F75375S": "m", "CONFIG_SENSORS_FSCHMD": "m", "CONFIG_SENSORS_FTSTEUTATES": "m", "CONFIG_SENSORS_GL518SM": "m", "CONFIG_SENSORS_GL520SM": "m", "CONFIG_SENSORS_G760A": "m", "CONFIG_SENSORS_G762": "m", "CONFIG_SENSORS_HIH6130": "m", "CONFIG_SENSORS_IBMAEM": "m", "CONFIG_SENSORS_IBMPEX": "m", "CONFIG_SENSORS_IIO_HWMON": "not set", "CONFIG_SENSORS_I5500": "m", "CONFIG_SENSORS_CORETEMP": "m", "CONFIG_SENSORS_IT87": "m", "CONFIG_SENSORS_JC42": "m", "CONFIG_SENSORS_POWR1220": "m", "CONFIG_SENSORS_LINEAGE": "m", "CONFIG_SENSORS_LTC2945": "m", "CONFIG_SENSORS_LTC2947": "m", "CONFIG_SENSORS_LTC2947_I2C": "m", "CONFIG_SENSORS_LTC2947_SPI": "m", "CONFIG_SENSORS_LTC2990": "m", "CONFIG_SENSORS_LTC2992": "m", "CONFIG_SENSORS_LTC4151": "m", "CONFIG_SENSORS_LTC4215": "m", "CONFIG_SENSORS_LTC4222": "m", "CONFIG_SENSORS_LTC4245": "m", "CONFIG_SENSORS_LTC4260": "m", "CONFIG_SENSORS_LTC4261": "m", "CONFIG_SENSORS_MAX1111": "not set", "CONFIG_SENSORS_MAX127": "m", "CONFIG_SENSORS_MAX16065": "m", "CONFIG_SENSORS_MAX1619": "m", "CONFIG_SENSORS_MAX1668": "m", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31722": "m", "CONFIG_SENSORS_MAX31730": "m", "CONFIG_SENSORS_MAX31760": "m", "CONFIG_SENSORS_MAX6620": "m", "CONFIG_SENSORS_MAX6621": "m", "CONFIG_SENSORS_MAX6639": "m", "CONFIG_SENSORS_MAX6650": "m", "CONFIG_SENSORS_MAX6697": "m", "CONFIG_SENSORS_MAX31790": "m", "CONFIG_SENSORS_MC34VR500": "m", "CONFIG_SENSORS_MCP3021": "m", "CONFIG_SENSORS_MLXREG_FAN": "m", "CONFIG_SENSORS_TC654": "m", "CONFIG_SENSORS_TPS23861": "m", "CONFIG_SENSORS_MR75203": "m", "CONFIG_SENSORS_ADCXX": "not set", "CONFIG_SENSORS_LM63": "m", "CONFIG_SENSORS_LM70": "not set", "CONFIG_SENSORS_LM73": "m", "CONFIG_SENSORS_LM75": "m", "CONFIG_SENSORS_LM77": "m", "CONFIG_SENSORS_LM78": "m", "CONFIG_SENSORS_LM80": "m", "CONFIG_SENSORS_LM83": "m", "CONFIG_SENSORS_LM85": "m", "CONFIG_SENSORS_LM87": "m", "CONFIG_SENSORS_LM90": "m", "CONFIG_SENSORS_LM92": "m", "CONFIG_SENSORS_LM93": "m", "CONFIG_SENSORS_LM95234": "m", "CONFIG_SENSORS_LM95241": "m", "CONFIG_SENSORS_LM95245": "m", "CONFIG_SENSORS_PC87360": "m", "CONFIG_SENSORS_PC87427": "m", "CONFIG_SENSORS_NTC_THERMISTOR": "not set", "CONFIG_SENSORS_NCT6683": "m", "CONFIG_SENSORS_NCT6775_CORE": "m", "CONFIG_SENSORS_NCT6775": "m", "CONFIG_SENSORS_NCT6775_I2C": "m", "CONFIG_SENSORS_NCT7802": "m", "CONFIG_SENSORS_NCT7904": "m", "CONFIG_SENSORS_NPCM7XX": "m", "CONFIG_SENSORS_NZXT_KRAKEN2": "m", "CONFIG_SENSORS_NZXT_SMART2": "m", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "m", "CONFIG_SENSORS_PCF8591": "m", "CONFIG_PMBUS": "m", "CONFIG_SENSORS_PMBUS": "m", "CONFIG_SENSORS_ACBEL_FSG032": "m", "CONFIG_SENSORS_ADM1266": "m", "CONFIG_SENSORS_ADM1275": "m", "CONFIG_SENSORS_BEL_PFE": "m", "CONFIG_SENSORS_BPA_RS600": "m", "CONFIG_SENSORS_DELTA_AHE50DC_FAN": "m", "CONFIG_SENSORS_FSP_3Y": "m", "CONFIG_SENSORS_IBM_CFFPS": "m", "CONFIG_SENSORS_DPS920AB": "m", "CONFIG_SENSORS_INSPUR_IPSPS": "m", "CONFIG_SENSORS_IR35221": "not set", "CONFIG_SENSORS_IR36021": "m", "CONFIG_SENSORS_IR38064": "m", "CONFIG_SENSORS_IR38064_REGULATOR": "y", "CONFIG_SENSORS_IRPS5401": "m", "CONFIG_SENSORS_ISL68137": "m", "CONFIG_SENSORS_LM25066": "m", "CONFIG_SENSORS_LM25066_REGULATOR": "y", "CONFIG_SENSORS_LT7182S": "m", "CONFIG_SENSORS_LTC2978": "m", "CONFIG_SENSORS_LTC2978_REGULATOR": "y", "CONFIG_SENSORS_LTC3815": "m", "CONFIG_SENSORS_MAX15301": "m", "CONFIG_SENSORS_MAX16064": "m", "CONFIG_SENSORS_MAX16601": "m", "CONFIG_SENSORS_MAX20730": "m", "CONFIG_SENSORS_MAX20751": "m", "CONFIG_SENSORS_MAX31785": "m", "CONFIG_SENSORS_MAX34440": "m", "CONFIG_SENSORS_MAX8688": "m", "CONFIG_SENSORS_MP2888": "m", "CONFIG_SENSORS_MP2975": "m", "CONFIG_SENSORS_MP5023": "m", "CONFIG_SENSORS_MPQ7932_REGULATOR": "y", "CONFIG_SENSORS_MPQ7932": "m", "CONFIG_SENSORS_PIM4328": "m", "CONFIG_SENSORS_PLI1209BC": "m", "CONFIG_SENSORS_PLI1209BC_REGULATOR": "y", "CONFIG_SENSORS_PM6764TR": "m", "CONFIG_SENSORS_PXE1610": "m", "CONFIG_SENSORS_Q54SJ108A2": "m", "CONFIG_SENSORS_STPDDC60": "m", "CONFIG_SENSORS_TDA38640": "m", "CONFIG_SENSORS_TDA38640_REGULATOR": "y", "CONFIG_SENSORS_TPS40422": "m", "CONFIG_SENSORS_TPS53679": "m", "CONFIG_SENSORS_TPS546D24": "m", "CONFIG_SENSORS_UCD9000": "m", "CONFIG_SENSORS_UCD9200": "m", "CONFIG_SENSORS_XDPE152": "m", "CONFIG_SENSORS_XDPE122": "m", "CONFIG_SENSORS_XDPE122_REGULATOR": "y", "CONFIG_SENSORS_ZL6100": "m", "CONFIG_SENSORS_SBTSI": "m", "CONFIG_SENSORS_SBRMI": "m", "CONFIG_SENSORS_SHT15": "m", "CONFIG_SENSORS_SHT21": "m", "CONFIG_SENSORS_SHT3x": "m", "CONFIG_SENSORS_SHT4x": "m", "CONFIG_SENSORS_SHTC1": "m", "CONFIG_SENSORS_SIS5595": "m", "CONFIG_SENSORS_DME1737": "m", "CONFIG_SENSORS_EMC1403": "m", "CONFIG_SENSORS_EMC2103": "m", "CONFIG_SENSORS_EMC2305": "m", "CONFIG_SENSORS_EMC6W201": "m", "CONFIG_SENSORS_SMSC47M1": "m", "CONFIG_SENSORS_SMSC47M192": "m", "CONFIG_SENSORS_SMSC47B397": "m", "CONFIG_SENSORS_SCH56XX_COMMON": "m", "CONFIG_SENSORS_SCH5627": "m", "CONFIG_SENSORS_SCH5636": "m", "CONFIG_SENSORS_STTS751": "m", "CONFIG_SENSORS_SMM665": "m", "CONFIG_SENSORS_ADC128D818": "m", "CONFIG_SENSORS_ADS7828": "m", "CONFIG_SENSORS_ADS7871": "not set", "CONFIG_SENSORS_AMC6821": "m", "CONFIG_SENSORS_INA209": "m", "CONFIG_SENSORS_INA2XX": "m", "CONFIG_SENSORS_INA238": "m", "CONFIG_SENSORS_INA3221": "m", "CONFIG_SENSORS_TC74": "m", "CONFIG_SENSORS_THMC50": "m", "CONFIG_SENSORS_TMP102": "m", "CONFIG_SENSORS_TMP103": "m", "CONFIG_SENSORS_TMP108": "m", "CONFIG_SENSORS_TMP401": "m", "CONFIG_SENSORS_TMP421": "m", "CONFIG_SENSORS_TMP464": "m", "CONFIG_SENSORS_TMP513": "m", "CONFIG_SENSORS_VIA_CPUTEMP": "m", "CONFIG_SENSORS_VIA686A": "m", "CONFIG_SENSORS_VT1211": "m", "CONFIG_SENSORS_VT8231": "m", "CONFIG_SENSORS_W83773G": "m", "CONFIG_SENSORS_W83781D": "m", "CONFIG_SENSORS_W83791D": "m", "CONFIG_SENSORS_W83792D": "m", "CONFIG_SENSORS_W83793": "m", "CONFIG_SENSORS_W83795": "m", "CONFIG_SENSORS_W83795_FANCTRL": "not set", "CONFIG_SENSORS_W83L785TS": "m", "CONFIG_SENSORS_W83L786NG": "m", "CONFIG_SENSORS_W83627HF": "m", "CONFIG_SENSORS_W83627EHF": "m", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "m", "CONFIG_SENSORS_ATK0110": "m", "CONFIG_SENSORS_ASUS_WMI": "m", "CONFIG_SENSORS_ASUS_EC": "m", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "y", "CONFIG_THERMAL_STATISTICS": "y", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_ACPI": "y", "CONFIG_THERMAL_WRITABLE_TRIPS": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "y", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "y", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_GOV_POWER_ALLOCATOR": "not set", "CONFIG_DEVFREQ_THERMAL": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "m", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_IOSF_CORE": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "m", "CONFIG_INT340X_THERMAL": "m", "CONFIG_ACPI_THERMAL_REL": "m", "CONFIG_INT3406_THERMAL": "m", "CONFIG_PROC_THERMAL_MMIO_RAPL": "m", "CONFIG_INTEL_BXT_PMIC_THERMAL": "m", "CONFIG_INTEL_PCH_THERMAL": "m", "CONFIG_INTEL_TCC_COOLING": "m", "CONFIG_INTEL_HFI_THERMAL": "y", "CONFIG_GENERIC_ADC_THERMAL": "m", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "y", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "y", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_SEL": "m", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC": "m", "CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP": "y", "CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_SOFT_WATCHDOG_PRETIMEOUT": "y", "CONFIG_DA9062_WATCHDOG": "m", "CONFIG_WDAT_WDT": "m", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "m", "CONFIG_MLX_WDT": "m", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "m", "CONFIG_ADVANTECH_WDT": "m", "CONFIG_ADVANTECH_EC_WDT": "m", "CONFIG_ALIM1535_WDT": "m", "CONFIG_ALIM7101_WDT": "m", "CONFIG_EBC_C384_WDT": "m", "CONFIG_EXAR_WDT": "m", "CONFIG_F71808E_WDT": "m", "CONFIG_SP5100_TCO": "m", "CONFIG_SBC_FITPC2_WATCHDOG": "m", "CONFIG_EUROTECH_WDT": "m", "CONFIG_IB700_WDT": "m", "CONFIG_IBMASR": "m", "CONFIG_WAFER_WDT": "m", "CONFIG_I6300ESB_WDT": "m", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "m", "CONFIG_ITCO_VENDOR_SUPPORT": "y", "CONFIG_IT8712F_WDT": "m", "CONFIG_IT87_WDT": "m", "CONFIG_HP_WATCHDOG": "m", "CONFIG_HPWDT_NMI_DECODING": "y", "CONFIG_KEMPLD_WDT": "m", "CONFIG_SC1200_WDT": "m", "CONFIG_PC87413_WDT": "m", "CONFIG_NV_TCO": "m", "CONFIG_60XX_WDT": "m", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "m", "CONFIG_SMSC37B787_WDT": "m", "CONFIG_TQMX86_WDT": "m", "CONFIG_VIA_WDT": "m", "CONFIG_W83627HF_WDT": "m", "CONFIG_W83877F_WDT": "m", "CONFIG_W83977F_WDT": "m", "CONFIG_MACHZ_WDT": "m", "CONFIG_SBC_EPX_C3_WATCHDOG": "m", "CONFIG_INTEL_MEI_WDT": "m", "CONFIG_NI903X_WDT": "m", "CONFIG_NIC7018_WDT": "m", "CONFIG_SIEMENS_SIMATIC_IPC_WDT": "m", "CONFIG_MEN_A21_WDT": "m", "CONFIG_XEN_WDT": "m", "CONFIG_PCIPCWATCHDOG": "m", "CONFIG_WDTPCI": "m", "CONFIG_USBPCWATCHDOG": "m", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "m", "CONFIG_SSB_SPROM": "y", "CONFIG_SSB_BLOCKIO": "y", "CONFIG_SSB_PCIHOST_POSSIBLE": "y", "CONFIG_SSB_PCIHOST": "y", "CONFIG_SSB_B43_PCI_BRIDGE": "y", "CONFIG_SSB_SDIOHOST_POSSIBLE": "y", "CONFIG_SSB_SDIOHOST": "y", "CONFIG_SSB_DRIVER_PCICORE_POSSIBLE": "y", "CONFIG_SSB_DRIVER_PCICORE": "y", "CONFIG_SSB_DRIVER_GPIO": "y", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_BLOCKIO": "y", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "y", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_CORE": "m", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X": "m", "CONFIG_MFD_AXP20X_I2C": "m", "CONFIG_MFD_CROS_EC_DEV": "m", "CONFIG_MFD_MADERA": "m", "CONFIG_MFD_MADERA_I2C": "m", "CONFIG_MFD_MADERA_SPI": "m", "CONFIG_MFD_CS47L15": "y", "CONFIG_MFD_CS47L35": "y", "CONFIG_MFD_CS47L85": "y", "CONFIG_MFD_CS47L90": "y", "CONFIG_MFD_CS47L92": "y", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_SPI": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "m", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "m", "CONFIG_MFD_MC13XXX_SPI": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "m", "CONFIG_LPC_ICH": "m", "CONFIG_LPC_SCH": "m", "CONFIG_INTEL_SOC_PMIC_BXTWC": "m", "CONFIG_INTEL_SOC_PMIC_MRFLD": "m", "CONFIG_MFD_INTEL_LPSS": "m", "CONFIG_MFD_INTEL_LPSS_ACPI": "m", "CONFIG_MFD_INTEL_LPSS_PCI": "m", "CONFIG_MFD_INTEL_PMC_BXT": "m", "CONFIG_MFD_IQS62X": "m", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "m", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "m", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_OCELOT": "m", "CONFIG_EZX_PCAP": "not set", "CONFIG_MFD_VIPERBOARD": "m", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "m", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SIMPLE_MFD_I2C": "m", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "m", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "m", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "m", "CONFIG_TPS6507X": "m", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS65912_SPI": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "m", "CONFIG_MFD_LM3533": "m", "CONFIG_MFD_TQMX86": "m", "CONFIG_MFD_VX855": "m", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_ARIZONA_SPI": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM831X_SPI": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_RAVE_SP_CORE": "not set", "CONFIG_MFD_INTEL_M10_BMC_CORE": "not set", "CONFIG_MFD_INTEL_M10_BMC_SPI": "not set", "CONFIG_MFD_INTEL_M10_BMC_PMCI": "not set", "CONFIG_REGULATOR": "y", "CONFIG_REGULATOR_DEBUG": "not set", "CONFIG_REGULATOR_FIXED_VOLTAGE": "m", "CONFIG_REGULATOR_VIRTUAL_CONSUMER": "m", "CONFIG_REGULATOR_USERSPACE_CONSUMER": "m", "CONFIG_REGULATOR_88PG86X": "m", "CONFIG_REGULATOR_ACT8865": "m", "CONFIG_REGULATOR_AD5398": "m", "CONFIG_REGULATOR_ARIZONA_LDO1": "m", "CONFIG_REGULATOR_ARIZONA_MICSUPP": "m", "CONFIG_REGULATOR_AXP20X": "m", "CONFIG_REGULATOR_DA9062": "m", "CONFIG_REGULATOR_DA9210": "m", "CONFIG_REGULATOR_DA9211": "m", "CONFIG_REGULATOR_FAN53555": "m", "CONFIG_REGULATOR_GPIO": "m", "CONFIG_REGULATOR_ISL9305": "m", "CONFIG_REGULATOR_ISL6271A": "m", "CONFIG_REGULATOR_LM363X": "m", "CONFIG_REGULATOR_LP3971": "m", "CONFIG_REGULATOR_LP3972": "m", "CONFIG_REGULATOR_LP872X": "m", "CONFIG_REGULATOR_LP8755": "m", "CONFIG_REGULATOR_LTC3589": "m", "CONFIG_REGULATOR_LTC3676": "m", "CONFIG_REGULATOR_MAX1586": "m", "CONFIG_REGULATOR_MAX8649": "m", "CONFIG_REGULATOR_MAX8660": "m", "CONFIG_REGULATOR_MAX8893": "m", "CONFIG_REGULATOR_MAX8907": "m", "CONFIG_REGULATOR_MAX8952": "m", "CONFIG_REGULATOR_MAX20086": "m", "CONFIG_REGULATOR_MAX20411": "m", "CONFIG_REGULATOR_MAX77826": "m", "CONFIG_REGULATOR_MP8859": "m", "CONFIG_REGULATOR_MT6311": "m", "CONFIG_REGULATOR_MT6315": "m", "CONFIG_REGULATOR_PCA9450": "m", "CONFIG_REGULATOR_PV88060": "m", "CONFIG_REGULATOR_PV88080": "m", "CONFIG_REGULATOR_PV88090": "m", "CONFIG_REGULATOR_PWM": "m", "CONFIG_REGULATOR_QCOM_SPMI": "m", "CONFIG_REGULATOR_QCOM_USB_VBUS": "m", "CONFIG_REGULATOR_RT4801": "m", "CONFIG_REGULATOR_RT4803": "m", "CONFIG_REGULATOR_RT4831": "m", "CONFIG_REGULATOR_RT5190A": "m", "CONFIG_REGULATOR_RT5739": "m", "CONFIG_REGULATOR_RT5759": "m", "CONFIG_REGULATOR_RT6160": "m", "CONFIG_REGULATOR_RT6190": "m", "CONFIG_REGULATOR_RT6245": "m", "CONFIG_REGULATOR_RTQ2134": "m", "CONFIG_REGULATOR_RTMV20": "m", "CONFIG_REGULATOR_RTQ6752": "m", "CONFIG_REGULATOR_SLG51000": "m", "CONFIG_REGULATOR_TPS51632": "m", "CONFIG_REGULATOR_TPS62360": "m", "CONFIG_REGULATOR_TPS65023": "m", "CONFIG_REGULATOR_TPS6507X": "m", "CONFIG_REGULATOR_TPS65132": "m", "CONFIG_REGULATOR_TPS6524X": "m", "CONFIG_REGULATOR_TPS68470": "m", "CONFIG_REGULATOR_QCOM_LABIBB": "m", "CONFIG_RC_CORE": "m", "CONFIG_LIRC": "y", "CONFIG_RC_MAP": "m", "CONFIG_RC_DECODERS": "y", "CONFIG_IR_IMON_DECODER": "m", "CONFIG_IR_JVC_DECODER": "m", "CONFIG_IR_MCE_KBD_DECODER": "m", "CONFIG_IR_NEC_DECODER": "m", "CONFIG_IR_RC5_DECODER": "m", "CONFIG_IR_RC6_DECODER": "m", "CONFIG_IR_RCMM_DECODER": "m", "CONFIG_IR_SANYO_DECODER": "m", "CONFIG_IR_SHARP_DECODER": "m", "CONFIG_IR_SONY_DECODER": "m", "CONFIG_IR_XMP_DECODER": "m", "CONFIG_RC_DEVICES": "y", "CONFIG_IR_ENE": "m", "CONFIG_IR_FINTEK": "m", "CONFIG_IR_IGORPLUGUSB": "m", "CONFIG_IR_IGUANA": "m", "CONFIG_IR_IMON": "m", "CONFIG_IR_IMON_RAW": "m", "CONFIG_IR_ITE_CIR": "m", "CONFIG_IR_MCEUSB": "m", "CONFIG_IR_NUVOTON": "m", "CONFIG_IR_REDRAT3": "m", "CONFIG_IR_SERIAL": "m", "CONFIG_IR_SERIAL_TRANSMITTER": "y", "CONFIG_IR_STREAMZAP": "m", "CONFIG_IR_TOY": "m", "CONFIG_IR_TTUSBIR": "m", "CONFIG_IR_WINBOND_CIR": "m", "CONFIG_RC_ATI_REMOTE": "m", "CONFIG_RC_LOOPBACK": "m", "CONFIG_RC_XBOX_DVD": "m", "CONFIG_CEC_CORE": "m", "CONFIG_CEC_NOTIFIER": "y", "CONFIG_CEC_PIN": "y", "CONFIG_MEDIA_CEC_RC": "y", "CONFIG_CEC_PIN_ERROR_INJ": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "y", "CONFIG_CEC_CH7322": "m", "CONFIG_CEC_CROS_EC": "m", "CONFIG_CEC_GPIO": "m", "CONFIG_CEC_SECO": "m", "CONFIG_CEC_SECO_RC": "not set", "CONFIG_USB_PULSE8_CEC": "m", "CONFIG_USB_RAINSHADOW_CEC": "m", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "y", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "y", "CONFIG_MEDIA_RADIO_SUPPORT": "y", "CONFIG_MEDIA_SDR_SUPPORT": "y", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_DVB_CORE": "m", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_VIDEO_TUNER": "m", "CONFIG_V4L2_FLASH_LED_CLASS": "m", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_VIDEOBUF_GEN": "m", "CONFIG_VIDEOBUF_DMA_SG": "m", "CONFIG_MEDIA_CONTROLLER_DVB": "y", "CONFIG_DVB_MMAP": "not set", "CONFIG_DVB_NET": "y", "CONFIG_DVB_MAX_ADAPTERS": "8", "CONFIG_DVB_DYNAMIC_MINORS": "y", "CONFIG_DVB_DEMUX_SECTION_LOSS_LOG": "not set", "CONFIG_DVB_ULE_DEBUG": "not set", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "m", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "m", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "m", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "m", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_GO7007": "m", "CONFIG_VIDEO_GO7007_USB": "m", "CONFIG_VIDEO_GO7007_LOADER": "m", "CONFIG_VIDEO_GO7007_USB_S2250_BOARD": "m", "CONFIG_VIDEO_HDPVR": "m", "CONFIG_VIDEO_PVRUSB2": "m", "CONFIG_VIDEO_PVRUSB2_SYSFS": "y", "CONFIG_VIDEO_PVRUSB2_DVB": "y", "CONFIG_VIDEO_PVRUSB2_DEBUGIFC": "not set", "CONFIG_VIDEO_STK1160_COMMON": "m", "CONFIG_VIDEO_STK1160": "m", "CONFIG_VIDEO_AU0828": "m", "CONFIG_VIDEO_AU0828_V4L2": "y", "CONFIG_VIDEO_AU0828_RC": "y", "CONFIG_VIDEO_CX231XX": "m", "CONFIG_VIDEO_CX231XX_RC": "y", "CONFIG_VIDEO_CX231XX_ALSA": "m", "CONFIG_VIDEO_CX231XX_DVB": "m", "CONFIG_DVB_AS102": "m", "CONFIG_DVB_B2C2_FLEXCOP_USB": "m", "CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG": "not set", "CONFIG_DVB_USB_V2": "m", "CONFIG_DVB_USB_AF9015": "m", "CONFIG_DVB_USB_AF9035": "m", "CONFIG_DVB_USB_ANYSEE": "m", "CONFIG_DVB_USB_AU6610": "m", "CONFIG_DVB_USB_AZ6007": "m", "CONFIG_DVB_USB_CE6230": "m", "CONFIG_DVB_USB_DVBSKY": "m", "CONFIG_DVB_USB_EC168": "m", "CONFIG_DVB_USB_GL861": "m", "CONFIG_DVB_USB_LME2510": "m", "CONFIG_DVB_USB_MXL111SF": "m", "CONFIG_DVB_USB_RTL28XXU": "m", "CONFIG_DVB_USB_ZD1301": "m", "CONFIG_DVB_USB": "m", "CONFIG_DVB_USB_DEBUG": "not set", "CONFIG_DVB_USB_A800": "m", "CONFIG_DVB_USB_AF9005": "m", "CONFIG_DVB_USB_AF9005_REMOTE": "m", "CONFIG_DVB_USB_AZ6027": "m", "CONFIG_DVB_USB_CINERGY_T2": "m", "CONFIG_DVB_USB_CXUSB": "m", "CONFIG_DVB_USB_CXUSB_ANALOG": "y", "CONFIG_DVB_USB_DIB0700": "m", "CONFIG_DVB_USB_DIB3000MC": "m", "CONFIG_DVB_USB_DIBUSB_MB": "m", "CONFIG_DVB_USB_DIBUSB_MB_FAULTY": "not set", "CONFIG_DVB_USB_DIBUSB_MC": "m", "CONFIG_DVB_USB_DIGITV": "m", "CONFIG_DVB_USB_DTT200U": "m", "CONFIG_DVB_USB_DTV5100": "m", "CONFIG_DVB_USB_DW2102": "m", "CONFIG_DVB_USB_GP8PSK": "m", "CONFIG_DVB_USB_M920X": "m", "CONFIG_DVB_USB_NOVA_T_USB2": "m", "CONFIG_DVB_USB_OPERA1": "m", "CONFIG_DVB_USB_PCTV452E": "m", "CONFIG_DVB_USB_TECHNISAT_USB2": "m", "CONFIG_DVB_USB_TTUSB2": "m", "CONFIG_DVB_USB_UMT_010": "m", "CONFIG_DVB_USB_VP702X": "m", "CONFIG_DVB_USB_VP7045": "m", "CONFIG_SMS_USB_DRV": "m", "CONFIG_DVB_TTUSB_BUDGET": "m", "CONFIG_DVB_TTUSB_DEC": "m", "CONFIG_VIDEO_EM28XX": "m", "CONFIG_VIDEO_EM28XX_V4L2": "m", "CONFIG_VIDEO_EM28XX_ALSA": "m", "CONFIG_VIDEO_EM28XX_DVB": "m", "CONFIG_VIDEO_EM28XX_RC": "m", "CONFIG_USB_AIRSPY": "m", "CONFIG_USB_HACKRF": "m", "CONFIG_USB_MSI2500": "m", "CONFIG_MEDIA_PCI_SUPPORT": "y", "CONFIG_VIDEO_SOLO6X10": "m", "CONFIG_VIDEO_TW5864": "m", "CONFIG_VIDEO_TW68": "m", "CONFIG_VIDEO_TW686X": "m", "CONFIG_VIDEO_ZORAN": "m", "CONFIG_VIDEO_ZORAN_DC30": "y", "CONFIG_VIDEO_ZORAN_ZR36060": "y", "CONFIG_VIDEO_ZORAN_BUZ": "y", "CONFIG_VIDEO_ZORAN_DC10": "y", "CONFIG_VIDEO_ZORAN_LML33": "y", "CONFIG_VIDEO_ZORAN_LML33R10": "y", "CONFIG_VIDEO_ZORAN_AVS6EYES": "y", "CONFIG_VIDEO_DT3155": "m", "CONFIG_VIDEO_IVTV": "m", "CONFIG_VIDEO_IVTV_ALSA": "m", "CONFIG_VIDEO_FB_IVTV": "m", "CONFIG_VIDEO_FB_IVTV_FORCE_PAT": "not set", "CONFIG_VIDEO_HEXIUM_GEMINI": "m", "CONFIG_VIDEO_HEXIUM_ORION": "m", "CONFIG_VIDEO_MXB": "m", "CONFIG_VIDEO_BT848": "m", "CONFIG_DVB_BT8XX": "m", "CONFIG_VIDEO_COBALT": "not set", "CONFIG_VIDEO_CX18": "m", "CONFIG_VIDEO_CX18_ALSA": "m", "CONFIG_VIDEO_CX23885": "m", "CONFIG_MEDIA_ALTERA_CI": "m", "CONFIG_VIDEO_CX25821": "m", "CONFIG_VIDEO_CX25821_ALSA": "m", "CONFIG_VIDEO_CX88": "m", "CONFIG_VIDEO_CX88_ALSA": "m", "CONFIG_VIDEO_CX88_BLACKBIRD": "m", "CONFIG_VIDEO_CX88_DVB": "m", "CONFIG_VIDEO_CX88_ENABLE_VP3054": "y", "CONFIG_VIDEO_CX88_VP3054": "m", "CONFIG_VIDEO_CX88_MPEG": "m", "CONFIG_VIDEO_SAA7134": "m", "CONFIG_VIDEO_SAA7134_ALSA": "m", "CONFIG_VIDEO_SAA7134_RC": "y", "CONFIG_VIDEO_SAA7134_DVB": "m", "CONFIG_VIDEO_SAA7134_GO7007": "m", "CONFIG_VIDEO_SAA7164": "m", "CONFIG_DVB_B2C2_FLEXCOP_PCI": "m", "CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG": "not set", "CONFIG_DVB_DDBRIDGE": "m", "CONFIG_DVB_DDBRIDGE_MSIENABLE": "not set", "CONFIG_DVB_DM1105": "m", "CONFIG_MANTIS_CORE": "m", "CONFIG_DVB_MANTIS": "m", "CONFIG_DVB_HOPPER": "m", "CONFIG_DVB_NETUP_UNIDVB": "m", "CONFIG_DVB_NGENE": "m", "CONFIG_DVB_PLUTO2": "m", "CONFIG_DVB_PT1": "m", "CONFIG_DVB_PT3": "m", "CONFIG_DVB_SMIPCIE": "m", "CONFIG_DVB_BUDGET_CORE": "m", "CONFIG_DVB_BUDGET": "m", "CONFIG_DVB_BUDGET_CI": "m", "CONFIG_DVB_BUDGET_AV": "m", "CONFIG_IPU_BRIDGE": "m", "CONFIG_VIDEO_IPU3_CIO2": "m", "CONFIG_CIO2_BRIDGE": "y", "CONFIG_RADIO_ADAPTERS": "m", "CONFIG_RADIO_MAXIRADIO": "m", "CONFIG_RADIO_SAA7706H": "m", "CONFIG_RADIO_SHARK": "m", "CONFIG_RADIO_SHARK2": "m", "CONFIG_RADIO_SI4713": "m", "CONFIG_RADIO_TEA575X": "m", "CONFIG_RADIO_TEA5764": "m", "CONFIG_RADIO_TEF6862": "m", "CONFIG_RADIO_WL1273": "m", "CONFIG_USB_DSBR": "m", "CONFIG_USB_KEENE": "m", "CONFIG_USB_MA901": "m", "CONFIG_USB_MR800": "m", "CONFIG_USB_RAREMONO": "m", "CONFIG_RADIO_SI470X": "m", "CONFIG_USB_SI470X": "m", "CONFIG_I2C_SI470X": "not set", "CONFIG_USB_SI4713": "m", "CONFIG_PLATFORM_SI4713": "m", "CONFIG_I2C_SI4713": "m", "CONFIG_RADIO_WL128X": "m", "CONFIG_DVB_FIREDTV": "m", "CONFIG_DVB_FIREDTV_INPUT": "y", "CONFIG_MEDIA_COMMON_OPTIONS": "y", "CONFIG_CYPRESS_FIRMWARE": "m", "CONFIG_TTPCI_EEPROM": "m", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEO_CX2341X": "m", "CONFIG_VIDEO_TVEEPROM": "m", "CONFIG_DVB_B2C2_FLEXCOP": "m", "CONFIG_VIDEO_SAA7146": "m", "CONFIG_VIDEO_SAA7146_VV": "m", "CONFIG_SMS_SIANO_MDTV": "m", "CONFIG_SMS_SIANO_RC": "y", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_DMA_CONTIG": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_VIDEOBUF2_DMA_SG": "m", "CONFIG_VIDEOBUF2_DVB": "m", "CONFIG_MEDIA_ATTACH": "y", "CONFIG_VIDEO_IR_I2C": "m", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_APTINA_PLL": "m", "CONFIG_VIDEO_CCS_PLL": "m", "CONFIG_VIDEO_AR0521": "m", "CONFIG_VIDEO_HI556": "m", "CONFIG_VIDEO_HI846": "m", "CONFIG_VIDEO_HI847": "m", "CONFIG_VIDEO_IMX208": "m", "CONFIG_VIDEO_IMX214": "m", "CONFIG_VIDEO_IMX219": "m", "CONFIG_VIDEO_IMX258": "m", "CONFIG_VIDEO_IMX274": "m", "CONFIG_VIDEO_IMX290": "m", "CONFIG_VIDEO_IMX296": "m", "CONFIG_VIDEO_IMX319": "m", "CONFIG_VIDEO_IMX355": "m", "CONFIG_VIDEO_MAX9271_LIB": "m", "CONFIG_VIDEO_MT9M001": "m", "CONFIG_VIDEO_MT9M111": "m", "CONFIG_VIDEO_MT9P031": "m", "CONFIG_VIDEO_MT9T112": "m", "CONFIG_VIDEO_MT9V011": "m", "CONFIG_VIDEO_MT9V032": "m", "CONFIG_VIDEO_MT9V111": "m", "CONFIG_VIDEO_OG01A1B": "m", "CONFIG_VIDEO_OV02A10": "m", "CONFIG_VIDEO_OV08D10": "m", "CONFIG_VIDEO_OV08X40": "m", "CONFIG_VIDEO_OV13858": "m", "CONFIG_VIDEO_OV13B10": "m", "CONFIG_VIDEO_OV2640": "m", "CONFIG_VIDEO_OV2659": "m", "CONFIG_VIDEO_OV2680": "m", "CONFIG_VIDEO_OV2685": "m", "CONFIG_VIDEO_OV2740": "m", "CONFIG_VIDEO_OV4689": "m", "CONFIG_VIDEO_OV5647": "m", "CONFIG_VIDEO_OV5648": "m", "CONFIG_VIDEO_OV5670": "m", "CONFIG_VIDEO_OV5675": "m", "CONFIG_VIDEO_OV5693": "m", "CONFIG_VIDEO_OV5695": "m", "CONFIG_VIDEO_OV6650": "m", "CONFIG_VIDEO_OV7251": "m", "CONFIG_VIDEO_OV7640": "m", "CONFIG_VIDEO_OV7670": "m", "CONFIG_VIDEO_OV772X": "m", "CONFIG_VIDEO_OV7740": "m", "CONFIG_VIDEO_OV8856": "m", "CONFIG_VIDEO_OV8858": "m", "CONFIG_VIDEO_OV8865": "m", "CONFIG_VIDEO_OV9640": "m", "CONFIG_VIDEO_OV9650": "m", "CONFIG_VIDEO_OV9734": "m", "CONFIG_VIDEO_RDACM20": "m", "CONFIG_VIDEO_RDACM21": "m", "CONFIG_VIDEO_RJ54N1": "m", "CONFIG_VIDEO_S5C73M3": "m", "CONFIG_VIDEO_S5K5BAF": "m", "CONFIG_VIDEO_S5K6A3": "m", "CONFIG_VIDEO_CCS": "m", "CONFIG_VIDEO_ET8EK8": "m", "CONFIG_VIDEO_AD5820": "m", "CONFIG_VIDEO_AK7375": "m", "CONFIG_VIDEO_DW9714": "m", "CONFIG_VIDEO_DW9768": "m", "CONFIG_VIDEO_DW9807_VCM": "m", "CONFIG_VIDEO_ADP1653": "m", "CONFIG_VIDEO_LM3560": "m", "CONFIG_VIDEO_LM3646": "m", "CONFIG_VIDEO_CS3308": "m", "CONFIG_VIDEO_CS5345": "m", "CONFIG_VIDEO_CS53L32A": "m", "CONFIG_VIDEO_MSP3400": "m", "CONFIG_VIDEO_SONY_BTF_MPX": "m", "CONFIG_VIDEO_TDA1997X": "m", "CONFIG_VIDEO_TDA7432": "m", "CONFIG_VIDEO_TDA9840": "m", "CONFIG_VIDEO_TEA6415C": "m", "CONFIG_VIDEO_TEA6420": "m", "CONFIG_VIDEO_TLV320AIC23B": "m", "CONFIG_VIDEO_TVAUDIO": "m", "CONFIG_VIDEO_UDA1342": "m", "CONFIG_VIDEO_VP27SMPX": "m", "CONFIG_VIDEO_WM8739": "m", "CONFIG_VIDEO_WM8775": "m", "CONFIG_VIDEO_SAA6588": "m", "CONFIG_VIDEO_ADV7180": "m", "CONFIG_VIDEO_ADV7183": "m", "CONFIG_VIDEO_ADV7604": "m", "CONFIG_VIDEO_ADV7604_CEC": "y", "CONFIG_VIDEO_ADV7842": "m", "CONFIG_VIDEO_ADV7842_CEC": "y", "CONFIG_VIDEO_BT819": "m", "CONFIG_VIDEO_BT856": "m", "CONFIG_VIDEO_BT866": "m", "CONFIG_VIDEO_KS0127": "m", "CONFIG_VIDEO_ML86V7667": "m", "CONFIG_VIDEO_SAA7110": "m", "CONFIG_VIDEO_SAA711X": "m", "CONFIG_VIDEO_TC358743": "m", "CONFIG_VIDEO_TC358743_CEC": "y", "CONFIG_VIDEO_TC358746": "m", "CONFIG_VIDEO_TVP514X": "m", "CONFIG_VIDEO_TVP5150": "m", "CONFIG_VIDEO_TVP7002": "m", "CONFIG_VIDEO_TW2804": "m", "CONFIG_VIDEO_TW9903": "m", "CONFIG_VIDEO_TW9906": "m", "CONFIG_VIDEO_TW9910": "m", "CONFIG_VIDEO_VPX3220": "m", "CONFIG_VIDEO_SAA717X": "m", "CONFIG_VIDEO_CX25840": "m", "CONFIG_VIDEO_ADV7170": "m", "CONFIG_VIDEO_ADV7175": "m", "CONFIG_VIDEO_ADV7343": "m", "CONFIG_VIDEO_ADV7393": "m", "CONFIG_VIDEO_ADV7511": "m", "CONFIG_VIDEO_ADV7511_CEC": "y", "CONFIG_VIDEO_AK881X": "m", "CONFIG_VIDEO_SAA7127": "m", "CONFIG_VIDEO_SAA7185": "m", "CONFIG_VIDEO_THS8200": "m", "CONFIG_VIDEO_UPD64031A": "m", "CONFIG_VIDEO_UPD64083": "m", "CONFIG_VIDEO_SAA6752HS": "m", "CONFIG_SDR_MAX2175": "m", "CONFIG_VIDEO_I2C": "m", "CONFIG_VIDEO_M52790": "m", "CONFIG_VIDEO_ST_MIPID02": "not set", "CONFIG_VIDEO_THS7303": "m", "CONFIG_CXD2880_SPI_DRV": "m", "CONFIG_VIDEO_GS1662": "m", "CONFIG_MEDIA_TUNER": "m", "CONFIG_MEDIA_TUNER_E4000": "m", "CONFIG_MEDIA_TUNER_FC0011": "m", "CONFIG_MEDIA_TUNER_FC0012": "m", "CONFIG_MEDIA_TUNER_FC0013": "m", "CONFIG_MEDIA_TUNER_FC2580": "m", "CONFIG_MEDIA_TUNER_IT913X": "m", "CONFIG_MEDIA_TUNER_M88RS6000T": "m", "CONFIG_MEDIA_TUNER_MAX2165": "m", "CONFIG_MEDIA_TUNER_MC44S803": "m", "CONFIG_MEDIA_TUNER_MSI001": "m", "CONFIG_MEDIA_TUNER_MT2060": "m", "CONFIG_MEDIA_TUNER_MT2063": "m", "CONFIG_MEDIA_TUNER_MT20XX": "m", "CONFIG_MEDIA_TUNER_MT2131": "m", "CONFIG_MEDIA_TUNER_MT2266": "m", "CONFIG_MEDIA_TUNER_MXL301RF": "m", "CONFIG_MEDIA_TUNER_MXL5005S": "m", "CONFIG_MEDIA_TUNER_MXL5007T": "m", "CONFIG_MEDIA_TUNER_QM1D1B0004": "m", "CONFIG_MEDIA_TUNER_QM1D1C0042": "m", "CONFIG_MEDIA_TUNER_QT1010": "m", "CONFIG_MEDIA_TUNER_R820T": "m", "CONFIG_MEDIA_TUNER_SI2157": "m", "CONFIG_MEDIA_TUNER_SIMPLE": "m", "CONFIG_MEDIA_TUNER_TDA18212": "m", "CONFIG_MEDIA_TUNER_TDA18218": "m", "CONFIG_MEDIA_TUNER_TDA18250": "m", "CONFIG_MEDIA_TUNER_TDA18271": "m", "CONFIG_MEDIA_TUNER_TDA827X": "m", "CONFIG_MEDIA_TUNER_TDA8290": "m", "CONFIG_MEDIA_TUNER_TDA9887": "m", "CONFIG_MEDIA_TUNER_TEA5761": "m", "CONFIG_MEDIA_TUNER_TEA5767": "m", "CONFIG_MEDIA_TUNER_TUA9001": "m", "CONFIG_MEDIA_TUNER_XC2028": "m", "CONFIG_MEDIA_TUNER_XC4000": "m", "CONFIG_MEDIA_TUNER_XC5000": "m", "CONFIG_DVB_M88DS3103": "m", "CONFIG_DVB_MXL5XX": "m", "CONFIG_DVB_STB0899": "m", "CONFIG_DVB_STB6100": "m", "CONFIG_DVB_STV090x": "m", "CONFIG_DVB_STV0910": "m", "CONFIG_DVB_STV6110x": "m", "CONFIG_DVB_STV6111": "m", "CONFIG_DVB_DRXK": "m", "CONFIG_DVB_MN88472": "m", "CONFIG_DVB_MN88473": "m", "CONFIG_DVB_SI2165": "m", "CONFIG_DVB_TDA18271C2DD": "m", "CONFIG_DVB_CX24110": "m", "CONFIG_DVB_CX24116": "m", "CONFIG_DVB_CX24117": "m", "CONFIG_DVB_CX24120": "m", "CONFIG_DVB_CX24123": "m", "CONFIG_DVB_DS3000": "m", "CONFIG_DVB_MB86A16": "m", "CONFIG_DVB_MT312": "m", "CONFIG_DVB_S5H1420": "m", "CONFIG_DVB_SI21XX": "m", "CONFIG_DVB_STB6000": "m", "CONFIG_DVB_STV0288": "m", "CONFIG_DVB_STV0299": "m", "CONFIG_DVB_STV0900": "m", "CONFIG_DVB_STV6110": "m", "CONFIG_DVB_TDA10071": "m", "CONFIG_DVB_TDA10086": "m", "CONFIG_DVB_TDA8083": "m", "CONFIG_DVB_TDA8261": "m", "CONFIG_DVB_TDA826X": "m", "CONFIG_DVB_TS2020": "m", "CONFIG_DVB_TUA6100": "m", "CONFIG_DVB_TUNER_CX24113": "m", "CONFIG_DVB_TUNER_ITD1000": "m", "CONFIG_DVB_VES1X93": "m", "CONFIG_DVB_ZL10036": "m", "CONFIG_DVB_ZL10039": "m", "CONFIG_DVB_AF9013": "m", "CONFIG_DVB_AS102_FE": "m", "CONFIG_DVB_CX22700": "m", "CONFIG_DVB_CX22702": "m", "CONFIG_DVB_CXD2820R": "m", "CONFIG_DVB_CXD2841ER": "m", "CONFIG_DVB_DIB3000MB": "m", "CONFIG_DVB_DIB3000MC": "m", "CONFIG_DVB_DIB7000M": "m", "CONFIG_DVB_DIB7000P": "m", "CONFIG_DVB_DIB9000": "m", "CONFIG_DVB_DRXD": "m", "CONFIG_DVB_EC100": "m", "CONFIG_DVB_GP8PSK_FE": "m", "CONFIG_DVB_L64781": "m", "CONFIG_DVB_MT352": "m", "CONFIG_DVB_NXT6000": "m", "CONFIG_DVB_RTL2830": "m", "CONFIG_DVB_RTL2832": "m", "CONFIG_DVB_RTL2832_SDR": "m", "CONFIG_DVB_S5H1432": "m", "CONFIG_DVB_SI2168": "m", "CONFIG_DVB_SP887X": "m", "CONFIG_DVB_STV0367": "m", "CONFIG_DVB_TDA10048": "m", "CONFIG_DVB_TDA1004X": "m", "CONFIG_DVB_ZD1301_DEMOD": "m", "CONFIG_DVB_ZL10353": "m", "CONFIG_DVB_CXD2880": "m", "CONFIG_DVB_STV0297": "m", "CONFIG_DVB_TDA10021": "m", "CONFIG_DVB_TDA10023": "m", "CONFIG_DVB_VES1820": "m", "CONFIG_DVB_AU8522": "m", "CONFIG_DVB_AU8522_DTV": "m", "CONFIG_DVB_AU8522_V4L": "m", "CONFIG_DVB_BCM3510": "m", "CONFIG_DVB_LG2160": "m", "CONFIG_DVB_LGDT3305": "m", "CONFIG_DVB_LGDT3306A": "m", "CONFIG_DVB_LGDT330X": "m", "CONFIG_DVB_MXL692": "m", "CONFIG_DVB_NXT200X": "m", "CONFIG_DVB_OR51132": "m", "CONFIG_DVB_OR51211": "m", "CONFIG_DVB_S5H1409": "m", "CONFIG_DVB_S5H1411": "m", "CONFIG_DVB_DIB8000": "m", "CONFIG_DVB_MB86A20S": "m", "CONFIG_DVB_S921": "m", "CONFIG_DVB_MN88443X": "m", "CONFIG_DVB_TC90522": "m", "CONFIG_DVB_PLL": "m", "CONFIG_DVB_TUNER_DIB0070": "m", "CONFIG_DVB_TUNER_DIB0090": "m", "CONFIG_DVB_A8293": "m", "CONFIG_DVB_AF9033": "m", "CONFIG_DVB_ASCOT2E": "m", "CONFIG_DVB_ATBM8830": "m", "CONFIG_DVB_HELENE": "m", "CONFIG_DVB_HORUS3A": "m", "CONFIG_DVB_ISL6405": "m", "CONFIG_DVB_ISL6421": "m", "CONFIG_DVB_ISL6423": "m", "CONFIG_DVB_IX2505V": "m", "CONFIG_DVB_LGS8GL5": "m", "CONFIG_DVB_LGS8GXX": "m", "CONFIG_DVB_LNBH25": "m", "CONFIG_DVB_LNBH29": "m", "CONFIG_DVB_LNBP21": "m", "CONFIG_DVB_LNBP22": "m", "CONFIG_DVB_M88RS2000": "m", "CONFIG_DVB_TDA665x": "m", "CONFIG_DVB_DRX39XYJ": "m", "CONFIG_DVB_CXD2099": "m", "CONFIG_DVB_SP2": "m", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_VIDEO_CMDLINE": "y", "CONFIG_VIDEO_NOMODESET": "y", "CONFIG_AUXDISPLAY": "y", "CONFIG_CHARLCD": "m", "CONFIG_HD44780_COMMON": "m", "CONFIG_HD44780": "m", "CONFIG_KS0108": "m", "CONFIG_KS0108_PORT": "0x378", "CONFIG_KS0108_DELAY": "2", "CONFIG_CFAG12864B": "m", "CONFIG_CFAG12864B_RATE": "20", "CONFIG_IMG_ASCII_LCD": "not set", "CONFIG_HT16K33": "not set", "CONFIG_LCD2S": "not set", "CONFIG_PARPORT_PANEL": "m", "CONFIG_PANEL_PARPORT": "0", "CONFIG_PANEL_PROFILE": "5", "CONFIG_PANEL_CHANGE_MESSAGE": "not set", "CONFIG_CHARLCD_BL_OFF": "not set", "CONFIG_CHARLCD_BL_ON": "not set", "CONFIG_CHARLCD_BL_FLASH": "y", "CONFIG_PANEL": "m", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "y", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "y", "CONFIG_AGP_VIA": "y", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "y", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS": "not set", "CONFIG_DRM_DEBUG_MODESET_LOCK": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM": "not set", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "y", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_DP_AUX_CHARDEV": "y", "CONFIG_DRM_DP_CEC": "y", "CONFIG_DRM_TTM": "m", "CONFIG_DRM_EXEC": "m", "CONFIG_DRM_GPUVM": "m", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "m", "CONFIG_DRM_TTM_HELPER": "m", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_SUBALLOC_HELPER": "m", "CONFIG_DRM_SCHED": "m", "CONFIG_DRM_I2C_CH7006": "m", "CONFIG_DRM_I2C_SIL164": "m", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "m", "CONFIG_DRM_RADEON": "m", "CONFIG_DRM_RADEON_USERPTR": "y", "CONFIG_DRM_AMDGPU": "m", "CONFIG_DRM_AMDGPU_SI": "y", "CONFIG_DRM_AMDGPU_CIK": "y", "CONFIG_DRM_AMDGPU_USERPTR": "y", "CONFIG_DRM_AMDGPU_WERROR": "not set", "CONFIG_DRM_AMD_ACP": "y", "CONFIG_DRM_AMD_DC": "y", "CONFIG_DRM_AMD_DC_FP": "y", "CONFIG_DRM_AMD_DC_SI": "y", "CONFIG_DEBUG_KERNEL_DC": "not set", "CONFIG_DRM_AMD_SECURE_DISPLAY": "y", "CONFIG_HSA_AMD": "y", "CONFIG_HSA_AMD_SVM": "y", "CONFIG_HSA_AMD_P2P": "y", "CONFIG_DRM_NOUVEAU": "m", "CONFIG_NOUVEAU_DEBUG": "5", "CONFIG_NOUVEAU_DEBUG_DEFAULT": "3", "CONFIG_NOUVEAU_DEBUG_MMU": "not set", "CONFIG_NOUVEAU_DEBUG_PUSH": "not set", "CONFIG_DRM_NOUVEAU_BACKLIGHT": "y", "CONFIG_DRM_NOUVEAU_SVM": "y", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_GVT_KVMGT": "m", "CONFIG_DRM_I915_PXP": "y", "CONFIG_DRM_I915_WERROR": "not set", "CONFIG_DRM_I915_DEBUG": "not set", "CONFIG_DRM_I915_DEBUG_MMIO": "not set", "CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS": "not set", "CONFIG_DRM_I915_SW_FENCE_CHECK_DAG": "not set", "CONFIG_DRM_I915_DEBUG_GUC": "not set", "CONFIG_DRM_I915_SELFTEST": "not set", "CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS": "not set", "CONFIG_DRM_I915_DEBUG_VBLANK_EVADE": "not set", "CONFIG_DRM_I915_DEBUG_RUNTIME_PM": "not set", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_I915_GVT": "y", "CONFIG_DRM_VGEM": "m", "CONFIG_DRM_VKMS": "m", "CONFIG_DRM_VMWGFX": "m", "CONFIG_DRM_VMWGFX_MKSSTATS": "not set", "CONFIG_DRM_GMA500": "m", "CONFIG_DRM_UDL": "m", "CONFIG_DRM_AST": "m", "CONFIG_DRM_MGAG200": "m", "CONFIG_DRM_QXL": "m", "CONFIG_DRM_VIRTIO_GPU": "m", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_AUO_A030JTN01": "not set", "CONFIG_DRM_PANEL_ORISETECH_OTA5601A": "not set", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "m", "CONFIG_DRM_PANEL_WIDECHIPS_WS2401": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_LOONGSON": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "m", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "m", "CONFIG_DRM_PANEL_MIPI_DBI": "not set", "CONFIG_DRM_SIMPLEDRM": "y", "CONFIG_TINYDRM_HX8357D": "not set", "CONFIG_TINYDRM_ILI9163": "not set", "CONFIG_TINYDRM_ILI9225": "not set", "CONFIG_TINYDRM_ILI9341": "not set", "CONFIG_TINYDRM_ILI9486": "not set", "CONFIG_TINYDRM_MI0283QT": "not set", "CONFIG_TINYDRM_REPAPER": "not set", "CONFIG_TINYDRM_ST7586": "not set", "CONFIG_TINYDRM_ST7735R": "not set", "CONFIG_DRM_XEN": "y", "CONFIG_DRM_XEN_FRONTEND": "m", "CONFIG_DRM_VBOXVIDEO": "m", "CONFIG_DRM_GUD": "m", "CONFIG_DRM_SSD130X": "m", "CONFIG_DRM_SSD130X_I2C": "m", "CONFIG_DRM_SSD130X_SPI": "m", "CONFIG_DRM_HYPERV": "m", "CONFIG_DRM_LEGACY": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_DRM_LIB_RANDOM": "not set", "CONFIG_DRM_PRIVACY_SCREEN": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "y", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_LE80578": "not set", "CONFIG_FB_INTEL": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "m", "CONFIG_FB_VIRTUAL": "m", "CONFIG_XEN_FBDEV_FRONTEND": "m", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_HYPERV": "not set", "CONFIG_FB_SSD1307": "m", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "y", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYS_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_BACKLIGHT": "m", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "y", "CONFIG_LCD_CLASS_DEVICE": "m", "CONFIG_LCD_L4F00242T03": "not set", "CONFIG_LCD_LMS283GF05": "not set", "CONFIG_LCD_LTV350QV": "not set", "CONFIG_LCD_ILI922X": "not set", "CONFIG_LCD_ILI9320": "not set", "CONFIG_LCD_TDO24M": "not set", "CONFIG_LCD_VGG2432A4": "not set", "CONFIG_LCD_PLATFORM": "m", "CONFIG_LCD_AMS369FG06": "not set", "CONFIG_LCD_LMS501KF03": "not set", "CONFIG_LCD_HX8357": "not set", "CONFIG_LCD_OTM3225A": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "y", "CONFIG_BACKLIGHT_KTD253": "m", "CONFIG_BACKLIGHT_KTZ8866": "m", "CONFIG_BACKLIGHT_LM3533": "m", "CONFIG_BACKLIGHT_PWM": "m", "CONFIG_BACKLIGHT_APPLE": "m", "CONFIG_BACKLIGHT_QCOM_WLED": "m", "CONFIG_BACKLIGHT_RT4831": "m", "CONFIG_BACKLIGHT_SAHARA": "m", "CONFIG_BACKLIGHT_ADP8860": "m", "CONFIG_BACKLIGHT_ADP8870": "m", "CONFIG_BACKLIGHT_LM3630A": "m", "CONFIG_BACKLIGHT_LM3639": "m", "CONFIG_BACKLIGHT_LP855X": "m", "CONFIG_BACKLIGHT_GPIO": "m", "CONFIG_BACKLIGHT_LV5207LP": "m", "CONFIG_BACKLIGHT_BD6107": "m", "CONFIG_BACKLIGHT_ARCXCNN": "m", "CONFIG_VGASTATE": "not set", "CONFIG_VIDEOMODE_HELPERS": "y", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "y", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "y", "CONFIG_DRM_ACCEL_HABANALABS": "m", "CONFIG_DRM_ACCEL_IVPU": "m", "CONFIG_DRM_ACCEL_QAIC": "m", "CONFIG_SOUND": "m", "CONFIG_SOUND_OSS_CORE": "y", "CONFIG_SOUND_OSS_CORE_PRECLAIM": "not set", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_PCM_ELD": "y", "CONFIG_SND_DMAENGINE_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_UMP": "m", "CONFIG_SND_UMP_LEGACY_RAWMIDI": "y", "CONFIG_SND_COMPRESS_OFFLOAD": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "y", "CONFIG_SND_MIXER_OSS": "m", "CONFIG_SND_PCM_OSS": "m", "CONFIG_SND_PCM_OSS_PLUGINS": "y", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "y", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_VERBOSE_PRINTK": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "y", "CONFIG_SND_DEBUG_VERBOSE": "not set", "CONFIG_SND_PCM_XRUN_DEBUG": "y", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_CTL_DEBUG": "not set", "CONFIG_SND_JACK_INJECTION_DEBUG": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "m", "CONFIG_SND_SEQUENCER_OSS": "m", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "y", "CONFIG_SND_SEQ_UMP_CLIENT": "m", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_OPL4_LIB_SEQ": "not set", "CONFIG_SND_VX_LIB": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "m", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_VIRMIDI": "m", "CONFIG_SND_MTPAV": "m", "CONFIG_SND_MTS64": "m", "CONFIG_SND_SERIAL_U16550": "m", "CONFIG_SND_MPU401": "m", "CONFIG_SND_PORTMAN2X4": "m", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_SB_COMMON": "m", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "m", "CONFIG_SND_ALS300": "m", "CONFIG_SND_ALS4000": "m", "CONFIG_SND_ALI5451": "m", "CONFIG_SND_ASIHPI": "m", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "m", "CONFIG_SND_AU8820": "m", "CONFIG_SND_AU8830": "m", "CONFIG_SND_AW2": "m", "CONFIG_SND_AZT3328": "m", "CONFIG_SND_BT87X": "m", "CONFIG_SND_BT87X_OVERCLOCK": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "m", "CONFIG_SND_CS46XX": "m", "CONFIG_SND_CS46XX_NEW_DSP": "y", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "m", "CONFIG_SND_GINA20": "m", "CONFIG_SND_LAYLA20": "m", "CONFIG_SND_DARLA24": "m", "CONFIG_SND_GINA24": "m", "CONFIG_SND_LAYLA24": "m", "CONFIG_SND_MONA": "m", "CONFIG_SND_MIA": "m", "CONFIG_SND_ECHO3G": "m", "CONFIG_SND_INDIGO": "m", "CONFIG_SND_INDIGOIO": "m", "CONFIG_SND_INDIGODJ": "m", "CONFIG_SND_INDIGOIOX": "m", "CONFIG_SND_INDIGODJX": "m", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "m", "CONFIG_SND_ES1938": "m", "CONFIG_SND_ES1968": "m", "CONFIG_SND_ES1968_INPUT": "y", "CONFIG_SND_ES1968_RADIO": "y", "CONFIG_SND_FM801": "m", "CONFIG_SND_FM801_TEA575X_BOOL": "y", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "m", "CONFIG_SND_KORG1212": "m", "CONFIG_SND_LOLA": "m", "CONFIG_SND_LX6464ES": "m", "CONFIG_SND_MAESTRO3": "m", "CONFIG_SND_MAESTRO3_INPUT": "y", "CONFIG_SND_MIXART": "m", "CONFIG_SND_NM256": "m", "CONFIG_SND_PCXHR": "m", "CONFIG_SND_RIPTIDE": "m", "CONFIG_SND_RME32": "m", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "m", "CONFIG_SND_TRIDENT": "m", "CONFIG_SND_VIA82XX": "m", "CONFIG_SND_VIA82XX_MODEM": "m", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "m", "CONFIG_SND_YMFPCI": "m", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "y", "CONFIG_SND_HDA_RECONFIG": "y", "CONFIG_SND_HDA_INPUT_BEEP": "y", "CONFIG_SND_HDA_INPUT_BEEP_MODE": "1", "CONFIG_SND_HDA_PATCH_LOADER": "y", "CONFIG_SND_HDA_CIRRUS_SCODEC": "m", "CONFIG_SND_HDA_SCODEC_CS35L41": "m", "CONFIG_SND_HDA_CS_DSP_CONTROLS": "m", "CONFIG_SND_HDA_SCODEC_CS35L41_I2C": "m", "CONFIG_SND_HDA_SCODEC_CS35L41_SPI": "m", "CONFIG_SND_HDA_SCODEC_CS35L56": "m", "CONFIG_SND_HDA_SCODEC_CS35L56_I2C": "m", "CONFIG_SND_HDA_SCODEC_CS35L56_SPI": "m", "CONFIG_SND_HDA_SCODEC_TAS2781_I2C": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "m", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "1", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_EXT_CORE": "m", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_INTEL_BYT_PREFER_SOF": "y", "CONFIG_SND_SPI": "not set", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "y", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "m", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "m", "CONFIG_SND_USB_CAIAQ_INPUT": "y", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "m", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "m", "CONFIG_SND_USB_LINE6": "m", "CONFIG_SND_USB_POD": "m", "CONFIG_SND_USB_PODHD": "m", "CONFIG_SND_USB_TONEPORT": "m", "CONFIG_SND_USB_VARIAX": "m", "CONFIG_SND_FIREWIRE": "y", "CONFIG_SND_FIREWIRE_LIB": "m", "CONFIG_SND_DICE": "m", "CONFIG_SND_OXFW": "m", "CONFIG_SND_ISIGHT": "m", "CONFIG_SND_FIREWORKS": "m", "CONFIG_SND_BEBOB": "m", "CONFIG_SND_FIREWIRE_DIGI00X": "m", "CONFIG_SND_FIREWIRE_TASCAM": "m", "CONFIG_SND_FIREWIRE_MOTU": "m", "CONFIG_SND_FIREFACE": "m", "CONFIG_SND_SOC": "m", "CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM": "y", "CONFIG_SND_SOC_COMPRESS": "y", "CONFIG_SND_SOC_TOPOLOGY": "y", "CONFIG_SND_SOC_ACPI": "m", "CONFIG_SND_SOC_ADI": "m", "CONFIG_SND_SOC_ADI_AXI_I2S": "m", "CONFIG_SND_SOC_ADI_AXI_SPDIF": "m", "CONFIG_SND_SOC_AMD_ACP": "m", "CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH": "m", "CONFIG_SND_SOC_AMD_CZ_RT5645_MACH": "m", "CONFIG_SND_SOC_AMD_ST_ES8336_MACH": "m", "CONFIG_SND_SOC_AMD_ACP3x": "m", "CONFIG_SND_SOC_AMD_RV_RT5682_MACH": "m", "CONFIG_SND_SOC_AMD_RENOIR": "m", "CONFIG_SND_SOC_AMD_RENOIR_MACH": "m", "CONFIG_SND_SOC_AMD_ACP5x": "m", "CONFIG_SND_SOC_AMD_VANGOGH_MACH": "m", "CONFIG_SND_SOC_AMD_ACP6x": "m", "CONFIG_SND_SOC_AMD_YC_MACH": "m", "CONFIG_SND_AMD_ACP_CONFIG": "m", "CONFIG_SND_SOC_AMD_ACP_COMMON": "m", "CONFIG_SND_SOC_AMD_ACP_PDM": "m", "CONFIG_SND_SOC_AMD_ACP_LEGACY_COMMON": "m", "CONFIG_SND_SOC_AMD_ACP_I2S": "m", "CONFIG_SND_SOC_AMD_ACP_PCM": "m", "CONFIG_SND_SOC_AMD_ACP_PCI": "m", "CONFIG_SND_AMD_ASOC_RENOIR": "m", "CONFIG_SND_AMD_ASOC_REMBRANDT": "m", "CONFIG_SND_SOC_AMD_MACH_COMMON": "m", "CONFIG_SND_SOC_AMD_LEGACY_MACH": "m", "CONFIG_SND_SOC_AMD_SOF_MACH": "m", "CONFIG_SND_SOC_AMD_RPL_ACP6x": "m", "CONFIG_SND_SOC_AMD_PS": "m", "CONFIG_SND_SOC_AMD_PS_MACH": "m", "CONFIG_SND_ATMEL_SOC": "not set", "CONFIG_SND_BCM63XX_I2S_WHISTLER": "not set", "CONFIG_SND_DESIGNWARE_I2S": "m", "CONFIG_SND_DESIGNWARE_PCM": "y", "CONFIG_SND_SOC_FSL_ASRC": "not set", "CONFIG_SND_SOC_FSL_SAI": "not set", "CONFIG_SND_SOC_FSL_AUDMIX": "not set", "CONFIG_SND_SOC_FSL_SSI": "not set", "CONFIG_SND_SOC_FSL_SPDIF": "not set", "CONFIG_SND_SOC_FSL_ESAI": "not set", "CONFIG_SND_SOC_FSL_MICFIL": "not set", "CONFIG_SND_SOC_FSL_XCVR": "not set", "CONFIG_SND_SOC_FSL_RPMSG": "not set", "CONFIG_SND_SOC_IMX_AUDMUX": "not set", "CONFIG_SND_I2S_HI6210_I2S": "m", "CONFIG_SND_SOC_IMG": "not set", "CONFIG_SND_SOC_INTEL_SST_TOPLEVEL": "y", "CONFIG_SND_SOC_INTEL_SST": "m", "CONFIG_SND_SOC_INTEL_CATPT": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE": "m", "CONFIG_SND_SOC_INTEL_SKL": "m", "CONFIG_SND_SOC_INTEL_APL": "m", "CONFIG_SND_SOC_INTEL_KBL": "m", "CONFIG_SND_SOC_INTEL_GLK": "m", "CONFIG_SND_SOC_INTEL_CNL": "m", "CONFIG_SND_SOC_INTEL_CFL": "m", "CONFIG_SND_SOC_INTEL_CML_H": "m", "CONFIG_SND_SOC_INTEL_CML_LP": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_FAMILY": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC": "y", "CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON": "m", "CONFIG_SND_SOC_ACPI_INTEL_MATCH": "m", "CONFIG_SND_SOC_INTEL_AVS": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_DA7219": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_DMIC": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_ES8336": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_HDAUDIO": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_I2S_TEST": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98357A": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98373": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_NAU8825": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT274": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT286": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT298": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT5663": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT5682": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_SSM4567": "m", "CONFIG_SND_SOC_INTEL_MACH": "y", "CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES": "y", "CONFIG_SND_SOC_INTEL_HDA_DSP_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_MAXIM_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_REALTEK_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_CIRRUS_COMMON": "m", "CONFIG_SND_SOC_INTEL_HASWELL_MACH": "m", "CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH": "m", "CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH": "m", "CONFIG_SND_SOC_INTEL_BROADWELL_MACH": "m", "CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH": "m", "CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH": "not set", "CONFIG_SND_SOC_INTEL_SKL_RT286_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_DA7219_MAX98357A_GENERIC": "m", "CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON": "m", "CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_BXT_RT298_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH": "m", "CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_ES8336_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_NAU8825_MACH": "m", "CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH": "m", "CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH": "m", "CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH": "m", "CONFIG_SND_SOC_MTK_BTCVSD": "m", "CONFIG_SND_SOC_SOF_TOPLEVEL": "y", "CONFIG_SND_SOC_SOF_PCI_DEV": "m", "CONFIG_SND_SOC_SOF_PCI": "m", "CONFIG_SND_SOC_SOF_ACPI": "m", "CONFIG_SND_SOC_SOF_ACPI_DEV": "m", "CONFIG_SND_SOC_SOF_DEBUG_PROBES": "m", "CONFIG_SND_SOC_SOF_CLIENT": "m", "CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT": "not set", "CONFIG_SND_SOC_SOF": "m", "CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE": "y", "CONFIG_SND_SOC_SOF_IPC3": "y", "CONFIG_SND_SOC_SOF_INTEL_IPC4": "y", "CONFIG_SND_SOC_SOF_AMD_TOPLEVEL": "m", "CONFIG_SND_SOC_SOF_AMD_COMMON": "m", "CONFIG_SND_SOC_SOF_AMD_RENOIR": "m", "CONFIG_SND_SOC_SOF_AMD_VANGOGH": "m", "CONFIG_SND_SOC_SOF_AMD_REMBRANDT": "m", "CONFIG_SND_SOC_SOF_ACP_PROBES": "m", "CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL": "y", "CONFIG_SND_SOC_SOF_INTEL_HIFI_EP_IPC": "m", "CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP": "m", "CONFIG_SND_SOC_SOF_INTEL_COMMON": "m", "CONFIG_SND_SOC_SOF_BAYTRAIL": "m", "CONFIG_SND_SOC_SOF_BROADWELL": "m", "CONFIG_SND_SOC_SOF_MERRIFIELD": "m", "CONFIG_SND_SOC_SOF_INTEL_SKL": "m", "CONFIG_SND_SOC_SOF_SKYLAKE": "m", "CONFIG_SND_SOC_SOF_KABYLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_APL": "m", "CONFIG_SND_SOC_SOF_APOLLOLAKE": "m", "CONFIG_SND_SOC_SOF_GEMINILAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_CNL": "m", "CONFIG_SND_SOC_SOF_CANNONLAKE": "m", "CONFIG_SND_SOC_SOF_COFFEELAKE": "m", "CONFIG_SND_SOC_SOF_COMETLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_ICL": "m", "CONFIG_SND_SOC_SOF_ICELAKE": "m", "CONFIG_SND_SOC_SOF_JASPERLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_TGL": "m", "CONFIG_SND_SOC_SOF_TIGERLAKE": "m", "CONFIG_SND_SOC_SOF_ELKHARTLAKE": "m", "CONFIG_SND_SOC_SOF_ALDERLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_MTL": "m", "CONFIG_SND_SOC_SOF_METEORLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_LNL": "m", "CONFIG_SND_SOC_SOF_LUNARLAKE": "m", "CONFIG_SND_SOC_SOF_HDA_COMMON": "m", "CONFIG_SND_SOC_SOF_HDA_MLINK": "m", "CONFIG_SND_SOC_SOF_HDA_LINK": "y", "CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC": "y", "CONFIG_SND_SOC_SOF_HDA_LINK_BASELINE": "m", "CONFIG_SND_SOC_SOF_HDA": "m", "CONFIG_SND_SOC_SOF_HDA_PROBES": "m", "CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK_BASELINE": "m", "CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE": "m", "CONFIG_SND_SOC_SOF_XTENSA": "m", "CONFIG_SND_SOC_XILINX_I2S": "not set", "CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER": "not set", "CONFIG_SND_SOC_XILINX_SPDIF": "not set", "CONFIG_SND_SOC_XTFPGA_I2S": "not set", "CONFIG_SND_SOC_I2C_AND_SPI": "m", "CONFIG_SND_SOC_WM_ADSP": "m", "CONFIG_SND_SOC_AC97_CODEC": "not set", "CONFIG_SND_SOC_ADAU1372_I2C": "not set", "CONFIG_SND_SOC_ADAU1372_SPI": "not set", "CONFIG_SND_SOC_ADAU1701": "not set", "CONFIG_SND_SOC_ADAU1761_I2C": "not set", "CONFIG_SND_SOC_ADAU1761_SPI": "not set", "CONFIG_SND_SOC_ADAU7002": "m", "CONFIG_SND_SOC_ADAU7118_HW": "not set", "CONFIG_SND_SOC_ADAU7118_I2C": "not set", "CONFIG_SND_SOC_AK4104": "not set", "CONFIG_SND_SOC_AK4118": "not set", "CONFIG_SND_SOC_AK4375": "not set", "CONFIG_SND_SOC_AK4458": "not set", "CONFIG_SND_SOC_AK4554": "not set", "CONFIG_SND_SOC_AK4613": "not set", "CONFIG_SND_SOC_AK4642": "not set", "CONFIG_SND_SOC_AK5386": "not set", "CONFIG_SND_SOC_AK5558": "not set", "CONFIG_SND_SOC_ALC5623": "not set", "CONFIG_SND_SOC_AW8738": "not set", "CONFIG_SND_SOC_AW88395": "not set", "CONFIG_SND_SOC_BD28623": "not set", "CONFIG_SND_SOC_BT_SCO": "m", "CONFIG_SND_SOC_CROS_EC_CODEC": "m", "CONFIG_SND_SOC_CS35L32": "not set", "CONFIG_SND_SOC_CS35L33": "not set", "CONFIG_SND_SOC_CS35L34": "m", "CONFIG_SND_SOC_CS35L35": "m", "CONFIG_SND_SOC_CS35L36": "m", "CONFIG_SND_SOC_CS35L41_LIB": "m", "CONFIG_SND_SOC_CS35L41": "m", "CONFIG_SND_SOC_CS35L41_SPI": "m", "CONFIG_SND_SOC_CS35L41_I2C": "m", "CONFIG_SND_SOC_CS35L45": "m", "CONFIG_SND_SOC_CS35L45_SPI": "m", "CONFIG_SND_SOC_CS35L45_I2C": "m", "CONFIG_SND_SOC_CS35L56": "m", "CONFIG_SND_SOC_CS35L56_SHARED": "m", "CONFIG_SND_SOC_CS35L56_I2C": "m", "CONFIG_SND_SOC_CS35L56_SPI": "m", "CONFIG_SND_SOC_CS35L56_SDW": "m", "CONFIG_SND_SOC_CS42L42_CORE": "m", "CONFIG_SND_SOC_CS42L42": "m", "CONFIG_SND_SOC_CS42L42_SDW": "m", "CONFIG_SND_SOC_CS42L51_I2C": "not set", "CONFIG_SND_SOC_CS42L52": "not set", "CONFIG_SND_SOC_CS42L56": "not set", "CONFIG_SND_SOC_CS42L73": "not set", "CONFIG_SND_SOC_CS42L83": "not set", "CONFIG_SND_SOC_CS4234": "not set", "CONFIG_SND_SOC_CS4265": "not set", "CONFIG_SND_SOC_CS4270": "not set", "CONFIG_SND_SOC_CS4271_I2C": "not set", "CONFIG_SND_SOC_CS4271_SPI": "not set", "CONFIG_SND_SOC_CS42XX8_I2C": "not set", "CONFIG_SND_SOC_CS43130": "not set", "CONFIG_SND_SOC_CS4341": "m", "CONFIG_SND_SOC_CS4349": "not set", "CONFIG_SND_SOC_CS53L30": "not set", "CONFIG_SND_SOC_CX2072X": "m", "CONFIG_SND_SOC_DA7213": "m", "CONFIG_SND_SOC_DA7219": "m", "CONFIG_SND_SOC_DMIC": "m", "CONFIG_SND_SOC_ES7134": "not set", "CONFIG_SND_SOC_ES7241": "not set", "CONFIG_SND_SOC_ES8316": "m", "CONFIG_SND_SOC_ES8326": "m", "CONFIG_SND_SOC_ES8328_I2C": "not set", "CONFIG_SND_SOC_ES8328_SPI": "not set", "CONFIG_SND_SOC_GTM601": "not set", "CONFIG_SND_SOC_HDAC_HDMI": "m", "CONFIG_SND_SOC_HDAC_HDA": "m", "CONFIG_SND_SOC_HDA": "m", "CONFIG_SND_SOC_ICS43432": "not set", "CONFIG_SND_SOC_IDT821034": "not set", "CONFIG_SND_SOC_INNO_RK3036": "not set", "CONFIG_SND_SOC_MAX98088": "not set", "CONFIG_SND_SOC_MAX98090": "m", "CONFIG_SND_SOC_MAX98357A": "m", "CONFIG_SND_SOC_MAX98504": "not set", "CONFIG_SND_SOC_MAX9867": "not set", "CONFIG_SND_SOC_MAX98927": "m", "CONFIG_SND_SOC_MAX98520": "m", "CONFIG_SND_SOC_MAX98363": "m", "CONFIG_SND_SOC_MAX98373": "m", "CONFIG_SND_SOC_MAX98373_I2C": "m", "CONFIG_SND_SOC_MAX98373_SDW": "m", "CONFIG_SND_SOC_MAX98388": "m", "CONFIG_SND_SOC_MAX98390": "m", "CONFIG_SND_SOC_MAX98396": "m", "CONFIG_SND_SOC_MAX9860": "not set", "CONFIG_SND_SOC_MSM8916_WCD_ANALOG": "not set", "CONFIG_SND_SOC_MSM8916_WCD_DIGITAL": "not set", "CONFIG_SND_SOC_PCM1681": "not set", "CONFIG_SND_SOC_PCM1789_I2C": "not set", "CONFIG_SND_SOC_PCM179X_I2C": "not set", "CONFIG_SND_SOC_PCM179X_SPI": "not set", "CONFIG_SND_SOC_PCM186X_I2C": "not set", "CONFIG_SND_SOC_PCM186X_SPI": "not set", "CONFIG_SND_SOC_PCM3060_I2C": "not set", "CONFIG_SND_SOC_PCM3060_SPI": "not set", "CONFIG_SND_SOC_PCM3168A_I2C": "not set", "CONFIG_SND_SOC_PCM3168A_SPI": "not set", "CONFIG_SND_SOC_PCM5102A": "not set", "CONFIG_SND_SOC_PCM512x": "m", "CONFIG_SND_SOC_PCM512x_I2C": "m", "CONFIG_SND_SOC_PCM512x_SPI": "not set", "CONFIG_SND_SOC_PEB2466": "not set", "CONFIG_SND_SOC_RK3328": "not set", "CONFIG_SND_SOC_RL6231": "m", "CONFIG_SND_SOC_RL6347A": "m", "CONFIG_SND_SOC_RT274": "m", "CONFIG_SND_SOC_RT286": "m", "CONFIG_SND_SOC_RT298": "m", "CONFIG_SND_SOC_RT1011": "m", "CONFIG_SND_SOC_RT1015": "m", "CONFIG_SND_SOC_RT1015P": "m", "CONFIG_SND_SOC_RT1019": "m", "CONFIG_SND_SOC_RT1308": "m", "CONFIG_SND_SOC_RT1308_SDW": "m", "CONFIG_SND_SOC_RT1316_SDW": "m", "CONFIG_SND_SOC_RT1318_SDW": "m", "CONFIG_SND_SOC_RT5514": "m", "CONFIG_SND_SOC_RT5514_SPI": "m", "CONFIG_SND_SOC_RT5514_SPI_BUILTIN": "not set", "CONFIG_SND_SOC_RT5616": "not set", "CONFIG_SND_SOC_RT5631": "not set", "CONFIG_SND_SOC_RT5640": "m", "CONFIG_SND_SOC_RT5645": "m", "CONFIG_SND_SOC_RT5651": "m", "CONFIG_SND_SOC_RT5659": "m", "CONFIG_SND_SOC_RT5660": "m", "CONFIG_SND_SOC_RT5663": "m", "CONFIG_SND_SOC_RT5670": "m", "CONFIG_SND_SOC_RT5677": "m", "CONFIG_SND_SOC_RT5677_SPI": "m", "CONFIG_SND_SOC_RT5682": "m", "CONFIG_SND_SOC_RT5682_I2C": "m", "CONFIG_SND_SOC_RT5682_SDW": "m", "CONFIG_SND_SOC_RT5682S": "m", "CONFIG_SND_SOC_RT700": "m", "CONFIG_SND_SOC_RT700_SDW": "m", "CONFIG_SND_SOC_RT711": "m", "CONFIG_SND_SOC_RT711_SDW": "m", "CONFIG_SND_SOC_RT711_SDCA_SDW": "m", "CONFIG_SND_SOC_RT712_SDCA_SDW": "m", "CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW": "m", "CONFIG_SND_SOC_RT722_SDCA_SDW": "m", "CONFIG_SND_SOC_RT715": "m", "CONFIG_SND_SOC_RT715_SDW": "m", "CONFIG_SND_SOC_RT715_SDCA_SDW": "m", "CONFIG_SND_SOC_RT9120": "m", "CONFIG_SND_SOC_SDW_MOCKUP": "m", "CONFIG_SND_SOC_SGTL5000": "not set", "CONFIG_SND_SOC_SIMPLE_AMPLIFIER": "not set", "CONFIG_SND_SOC_SIMPLE_MUX": "not set", "CONFIG_SND_SOC_SMA1303": "not set", "CONFIG_SND_SOC_SPDIF": "not set", "CONFIG_SND_SOC_SRC4XXX_I2C": "not set", "CONFIG_SND_SOC_SSM2305": "not set", "CONFIG_SND_SOC_SSM2518": "not set", "CONFIG_SND_SOC_SSM2602_SPI": "not set", "CONFIG_SND_SOC_SSM2602_I2C": "not set", "CONFIG_SND_SOC_SSM4567": "m", "CONFIG_SND_SOC_STA32X": "not set", "CONFIG_SND_SOC_STA350": "not set", "CONFIG_SND_SOC_STI_SAS": "not set", "CONFIG_SND_SOC_TAS2552": "not set", "CONFIG_SND_SOC_TAS2562": "not set", "CONFIG_SND_SOC_TAS2764": "not set", "CONFIG_SND_SOC_TAS2770": "not set", "CONFIG_SND_SOC_TAS2780": "not set", "CONFIG_SND_SOC_TAS2781_COMLIB": "m", "CONFIG_SND_SOC_TAS2781_FMWLIB": "m", "CONFIG_SND_SOC_TAS2781_I2C": "m", "CONFIG_SND_SOC_TAS5086": "not set", "CONFIG_SND_SOC_TAS571X": "not set", "CONFIG_SND_SOC_TAS5720": "m", "CONFIG_SND_SOC_TAS5805M": "not set", "CONFIG_SND_SOC_TAS6424": "not set", "CONFIG_SND_SOC_TDA7419": "m", "CONFIG_SND_SOC_TFA9879": "not set", "CONFIG_SND_SOC_TFA989X": "not set", "CONFIG_SND_SOC_TLV320ADC3XXX": "not set", "CONFIG_SND_SOC_TLV320AIC23_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC23_SPI": "not set", "CONFIG_SND_SOC_TLV320AIC31XX": "not set", "CONFIG_SND_SOC_TLV320AIC32X4_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC32X4_SPI": "not set", "CONFIG_SND_SOC_TLV320AIC3X_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC3X_SPI": "not set", "CONFIG_SND_SOC_TLV320ADCX140": "not set", "CONFIG_SND_SOC_TS3A227E": "m", "CONFIG_SND_SOC_TSCS42XX": "not set", "CONFIG_SND_SOC_TSCS454": "not set", "CONFIG_SND_SOC_UDA1334": "not set", "CONFIG_SND_SOC_WCD938X_SDW": "not set", "CONFIG_SND_SOC_WM8510": "not set", "CONFIG_SND_SOC_WM8523": "not set", "CONFIG_SND_SOC_WM8524": "not set", "CONFIG_SND_SOC_WM8580": "not set", "CONFIG_SND_SOC_WM8711": "not set", "CONFIG_SND_SOC_WM8728": "not set", "CONFIG_SND_SOC_WM8731_I2C": "not set", "CONFIG_SND_SOC_WM8731_SPI": "not set", "CONFIG_SND_SOC_WM8737": "not set", "CONFIG_SND_SOC_WM8741": "not set", "CONFIG_SND_SOC_WM8750": "not set", "CONFIG_SND_SOC_WM8753": "not set", "CONFIG_SND_SOC_WM8770": "not set", "CONFIG_SND_SOC_WM8776": "not set", "CONFIG_SND_SOC_WM8782": "not set", "CONFIG_SND_SOC_WM8804": "m", "CONFIG_SND_SOC_WM8804_I2C": "m", "CONFIG_SND_SOC_WM8804_SPI": "not set", "CONFIG_SND_SOC_WM8903": "not set", "CONFIG_SND_SOC_WM8904": "not set", "CONFIG_SND_SOC_WM8940": "not set", "CONFIG_SND_SOC_WM8960": "not set", "CONFIG_SND_SOC_WM8961": "not set", "CONFIG_SND_SOC_WM8962": "not set", "CONFIG_SND_SOC_WM8974": "not set", "CONFIG_SND_SOC_WM8978": "not set", "CONFIG_SND_SOC_WM8985": "not set", "CONFIG_SND_SOC_WSA881X": "not set", "CONFIG_SND_SOC_WSA883X": "not set", "CONFIG_SND_SOC_WSA884X": "not set", "CONFIG_SND_SOC_ZL38060": "not set", "CONFIG_SND_SOC_MAX9759": "not set", "CONFIG_SND_SOC_MT6351": "not set", "CONFIG_SND_SOC_MT6358": "not set", "CONFIG_SND_SOC_MT6660": "not set", "CONFIG_SND_SOC_NAU8315": "m", "CONFIG_SND_SOC_NAU8540": "not set", "CONFIG_SND_SOC_NAU8810": "m", "CONFIG_SND_SOC_NAU8821": "m", "CONFIG_SND_SOC_NAU8822": "not set", "CONFIG_SND_SOC_NAU8824": "m", "CONFIG_SND_SOC_NAU8825": "m", "CONFIG_SND_SOC_TPA6130A2": "not set", "CONFIG_SND_SOC_LPASS_WSA_MACRO": "not set", "CONFIG_SND_SOC_LPASS_VA_MACRO": "not set", "CONFIG_SND_SOC_LPASS_RX_MACRO": "not set", "CONFIG_SND_SOC_LPASS_TX_MACRO": "not set", "CONFIG_SND_SIMPLE_CARD": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "m", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_XEN_FRONTEND": "m", "CONFIG_SND_VIRTIO": "m", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "y", "CONFIG_HIDRAW": "y", "CONFIG_UHID": "m", "CONFIG_HID_GENERIC": "m", "CONFIG_HID_A4TECH": "m", "CONFIG_HID_ACCUTOUCH": "m", "CONFIG_HID_ACRUX": "m", "CONFIG_HID_ACRUX_FF": "y", "CONFIG_HID_APPLE": "m", "CONFIG_HID_APPLEIR": "m", "CONFIG_HID_ASUS": "m", "CONFIG_HID_AUREAL": "m", "CONFIG_HID_BELKIN": "m", "CONFIG_HID_BETOP_FF": "m", "CONFIG_HID_BIGBEN_FF": "m", "CONFIG_HID_CHERRY": "m", "CONFIG_HID_CHICONY": "m", "CONFIG_HID_CORSAIR": "m", "CONFIG_HID_COUGAR": "m", "CONFIG_HID_MACALLY": "m", "CONFIG_HID_PRODIKEYS": "m", "CONFIG_HID_CMEDIA": "m", "CONFIG_HID_CP2112": "m", "CONFIG_HID_CREATIVE_SB0540": "m", "CONFIG_HID_CYPRESS": "m", "CONFIG_HID_DRAGONRISE": "m", "CONFIG_DRAGONRISE_FF": "y", "CONFIG_HID_EMS_FF": "m", "CONFIG_HID_ELAN": "m", "CONFIG_HID_ELECOM": "m", "CONFIG_HID_ELO": "m", "CONFIG_HID_EVISION": "m", "CONFIG_HID_EZKEY": "m", "CONFIG_HID_FT260": "m", "CONFIG_HID_GEMBIRD": "m", "CONFIG_HID_GFRM": "m", "CONFIG_HID_GLORIOUS": "m", "CONFIG_HID_HOLTEK": "m", "CONFIG_HOLTEK_FF": "y", "CONFIG_HID_VIVALDI_COMMON": "m", "CONFIG_HID_GOOGLE_HAMMER": "m", "CONFIG_HID_VIVALDI": "m", "CONFIG_HID_GT683R": "m", "CONFIG_HID_KEYTOUCH": "m", "CONFIG_HID_KYE": "m", "CONFIG_HID_UCLOGIC": "m", "CONFIG_HID_WALTOP": "m", "CONFIG_HID_VIEWSONIC": "m", "CONFIG_HID_VRC2": "m", "CONFIG_HID_XIAOMI": "m", "CONFIG_HID_GYRATION": "m", "CONFIG_HID_ICADE": "m", "CONFIG_HID_ITE": "m", "CONFIG_HID_JABRA": "m", "CONFIG_HID_TWINHAN": "m", "CONFIG_HID_KENSINGTON": "m", "CONFIG_HID_LCPOWER": "m", "CONFIG_HID_LED": "m", "CONFIG_HID_LENOVO": "m", "CONFIG_HID_LETSKETCH": "m", "CONFIG_HID_LOGITECH": "m", "CONFIG_HID_LOGITECH_DJ": "m", "CONFIG_HID_LOGITECH_HIDPP": "m", "CONFIG_LOGITECH_FF": "y", "CONFIG_LOGIRUMBLEPAD2_FF": "y", "CONFIG_LOGIG940_FF": "y", "CONFIG_LOGIWHEELS_FF": "y", "CONFIG_HID_MAGICMOUSE": "m", "CONFIG_HID_MALTRON": "m", "CONFIG_HID_MAYFLASH": "m", "CONFIG_HID_MEGAWORLD_FF": "m", "CONFIG_HID_REDRAGON": "m", "CONFIG_HID_MICROSOFT": "m", "CONFIG_HID_MONTEREY": "m", "CONFIG_HID_MULTITOUCH": "m", "CONFIG_HID_NINTENDO": "m", "CONFIG_NINTENDO_FF": "y", "CONFIG_HID_NTI": "m", "CONFIG_HID_NTRIG": "m", "CONFIG_HID_ORTEK": "m", "CONFIG_HID_PANTHERLORD": "m", "CONFIG_PANTHERLORD_FF": "y", "CONFIG_HID_PENMOUNT": "m", "CONFIG_HID_PETALYNX": "m", "CONFIG_HID_PICOLCD": "m", "CONFIG_HID_PICOLCD_FB": "y", "CONFIG_HID_PICOLCD_BACKLIGHT": "y", "CONFIG_HID_PICOLCD_LCD": "y", "CONFIG_HID_PICOLCD_LEDS": "y", "CONFIG_HID_PICOLCD_CIR": "y", "CONFIG_HID_PLANTRONICS": "m", "CONFIG_HID_PLAYSTATION": "m", "CONFIG_PLAYSTATION_FF": "y", "CONFIG_HID_PXRC": "m", "CONFIG_HID_RAZER": "m", "CONFIG_HID_PRIMAX": "m", "CONFIG_HID_RETRODE": "m", "CONFIG_HID_ROCCAT": "m", "CONFIG_HID_SAITEK": "m", "CONFIG_HID_SAMSUNG": "m", "CONFIG_HID_SEMITEK": "m", "CONFIG_HID_SIGMAMICRO": "m", "CONFIG_HID_SONY": "m", "CONFIG_SONY_FF": "y", "CONFIG_HID_SPEEDLINK": "m", "CONFIG_HID_STEAM": "m", "CONFIG_STEAM_FF": "y", "CONFIG_HID_STEELSERIES": "m", "CONFIG_HID_SUNPLUS": "m", "CONFIG_HID_RMI": "m", "CONFIG_HID_GREENASIA": "m", "CONFIG_GREENASIA_FF": "y", "CONFIG_HID_HYPERV_MOUSE": "m", "CONFIG_HID_SMARTJOYPLUS": "m", "CONFIG_SMARTJOYPLUS_FF": "y", "CONFIG_HID_TIVO": "m", "CONFIG_HID_TOPSEED": "m", "CONFIG_HID_TOPRE": "m", "CONFIG_HID_THINGM": "m", "CONFIG_HID_THRUSTMASTER": "m", "CONFIG_THRUSTMASTER_FF": "y", "CONFIG_HID_UDRAW_PS3": "m", "CONFIG_HID_U2FZERO": "m", "CONFIG_HID_WACOM": "m", "CONFIG_HID_WIIMOTE": "m", "CONFIG_HID_XINMO": "m", "CONFIG_HID_ZEROPLUS": "m", "CONFIG_ZEROPLUS_FF": "y", "CONFIG_HID_ZYDACRON": "m", "CONFIG_HID_SENSOR_HUB": "m", "CONFIG_HID_SENSOR_CUSTOM_SENSOR": "m", "CONFIG_HID_ALPS": "m", "CONFIG_HID_MCP2221": "m", "CONFIG_HID_BPF": "y", "CONFIG_USB_HID": "m", "CONFIG_HID_PID": "y", "CONFIG_USB_HIDDEV": "y", "CONFIG_USB_KBD": "not set", "CONFIG_USB_MOUSE": "not set", "CONFIG_I2C_HID": "m", "CONFIG_I2C_HID_ACPI": "m", "CONFIG_I2C_HID_OF": "m", "CONFIG_I2C_HID_CORE": "m", "CONFIG_INTEL_ISH_HID": "m", "CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER": "m", "CONFIG_AMD_SFH_HID": "m", "CONFIG_SURFACE_HID": "m", "CONFIG_SURFACE_KBD": "m", "CONFIG_SURFACE_HID_CORE": "m", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "y", "CONFIG_USB_ULPI_BUS": "m", "CONFIG_USB_CONN_GPIO": "m", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "m", "CONFIG_USB_PCI": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "y", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "y", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB": "not set", "CONFIG_USB_OTG_FSM": "m", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "m", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_MON": "m", "CONFIG_USB_C67X00_HCD": "m", "CONFIG_USB_XHCI_HCD": "m", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "m", "CONFIG_USB_XHCI_PCI_RENESAS": "m", "CONFIG_USB_XHCI_PLATFORM": "m", "CONFIG_USB_EHCI_HCD": "m", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "m", "CONFIG_USB_EHCI_FSL": "m", "CONFIG_USB_EHCI_HCD_PLATFORM": "m", "CONFIG_USB_OXU210HP_HCD": "m", "CONFIG_USB_ISP116X_HCD": "m", "CONFIG_USB_MAX3421_HCD": "not set", "CONFIG_USB_OHCI_HCD": "m", "CONFIG_USB_OHCI_HCD_PCI": "m", "CONFIG_USB_OHCI_HCD_SSB": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "m", "CONFIG_USB_UHCI_HCD": "m", "CONFIG_USB_SL811_HCD": "m", "CONFIG_USB_SL811_HCD_ISO": "not set", "CONFIG_USB_R8A66597_HCD": "m", "CONFIG_USB_HCD_BCMA": "m", "CONFIG_USB_HCD_SSB": "m", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_XEN_HCD": "m", "CONFIG_USB_ACM": "m", "CONFIG_USB_PRINTER": "m", "CONFIG_USB_WDM": "m", "CONFIG_USB_TMC": "m", "CONFIG_USB_STORAGE": "m", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "m", "CONFIG_REALTEK_AUTOPM": "y", "CONFIG_USB_STORAGE_DATAFAB": "m", "CONFIG_USB_STORAGE_FREECOM": "m", "CONFIG_USB_STORAGE_ISD200": "m", "CONFIG_USB_STORAGE_USBAT": "m", "CONFIG_USB_STORAGE_SDDR09": "m", "CONFIG_USB_STORAGE_SDDR55": "m", "CONFIG_USB_STORAGE_JUMPSHOT": "m", "CONFIG_USB_STORAGE_ALAUDA": "m", "CONFIG_USB_STORAGE_ONETOUCH": "m", "CONFIG_USB_STORAGE_KARMA": "m", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "m", "CONFIG_USB_STORAGE_ENE_UB6250": "m", "CONFIG_USB_UAS": "m", "CONFIG_USB_MDC800": "m", "CONFIG_USB_MICROTEK": "m", "CONFIG_USBIP_CORE": "m", "CONFIG_USBIP_VHCI_HCD": "m", "CONFIG_USBIP_VHCI_HC_PORTS": "8", "CONFIG_USBIP_VHCI_NR_HCS": "1", "CONFIG_USBIP_HOST": "m", "CONFIG_USBIP_VUDC": "m", "CONFIG_USBIP_DEBUG": "not set", "CONFIG_USB_CDNS_SUPPORT": "m", "CONFIG_USB_CDNS_HOST": "y", "CONFIG_USB_CDNS3": "m", "CONFIG_USB_CDNS3_GADGET": "not set", "CONFIG_USB_CDNS3_HOST": "y", "CONFIG_USB_CDNS3_PCI_WRAP": "m", "CONFIG_USB_CDNSP_PCI": "m", "CONFIG_USB_CDNSP_GADGET": "y", "CONFIG_USB_CDNSP_HOST": "y", "CONFIG_USB_MUSB_HDRC": "m", "CONFIG_USB_MUSB_HOST": "y", "CONFIG_USB_MUSB_GADGET": "not set", "CONFIG_USB_MUSB_DUAL_ROLE": "not set", "CONFIG_MUSB_PIO_ONLY": "y", "CONFIG_USB_DWC3": "m", "CONFIG_USB_DWC3_ULPI": "y", "CONFIG_USB_DWC3_HOST": "not set", "CONFIG_USB_DWC3_GADGET": "not set", "CONFIG_USB_DWC3_DUAL_ROLE": "y", "CONFIG_USB_DWC3_PCI": "m", "CONFIG_USB_DWC3_HAPS": "m", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "m", "CONFIG_USB_ISP1760_HCD": "y", "CONFIG_USB_ISP1760_HOST_ROLE": "y", "CONFIG_USB_ISP1760_GADGET_ROLE": "not set", "CONFIG_USB_ISP1760_DUAL_ROLE": "not set", "CONFIG_USB_SERIAL": "m", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "m", "CONFIG_USB_SERIAL_AIRCABLE": "m", "CONFIG_USB_SERIAL_ARK3116": "m", "CONFIG_USB_SERIAL_BELKIN": "m", "CONFIG_USB_SERIAL_CH341": "m", "CONFIG_USB_SERIAL_WHITEHEAT": "m", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "m", "CONFIG_USB_SERIAL_CP210X": "m", "CONFIG_USB_SERIAL_CYPRESS_M8": "m", "CONFIG_USB_SERIAL_EMPEG": "m", "CONFIG_USB_SERIAL_FTDI_SIO": "m", "CONFIG_USB_SERIAL_VISOR": "m", "CONFIG_USB_SERIAL_IPAQ": "m", "CONFIG_USB_SERIAL_IR": "m", "CONFIG_USB_SERIAL_EDGEPORT": "m", "CONFIG_USB_SERIAL_EDGEPORT_TI": "m", "CONFIG_USB_SERIAL_F81232": "m", "CONFIG_USB_SERIAL_F8153X": "m", "CONFIG_USB_SERIAL_GARMIN": "m", "CONFIG_USB_SERIAL_IPW": "m", "CONFIG_USB_SERIAL_IUU": "m", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "m", "CONFIG_USB_SERIAL_KEYSPAN": "m", "CONFIG_USB_SERIAL_KLSI": "m", "CONFIG_USB_SERIAL_KOBIL_SCT": "m", "CONFIG_USB_SERIAL_MCT_U232": "m", "CONFIG_USB_SERIAL_METRO": "m", "CONFIG_USB_SERIAL_MOS7720": "m", "CONFIG_USB_SERIAL_MOS7715_PARPORT": "y", "CONFIG_USB_SERIAL_MOS7840": "m", "CONFIG_USB_SERIAL_MXUPORT": "m", "CONFIG_USB_SERIAL_NAVMAN": "m", "CONFIG_USB_SERIAL_PL2303": "m", "CONFIG_USB_SERIAL_OTI6858": "m", "CONFIG_USB_SERIAL_QCAUX": "m", "CONFIG_USB_SERIAL_QUALCOMM": "m", "CONFIG_USB_SERIAL_SPCP8X5": "m", "CONFIG_USB_SERIAL_SAFE": "m", "CONFIG_USB_SERIAL_SAFE_PADDED": "y", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "m", "CONFIG_USB_SERIAL_SYMBOL": "m", "CONFIG_USB_SERIAL_TI": "m", "CONFIG_USB_SERIAL_CYBERJACK": "m", "CONFIG_USB_SERIAL_WWAN": "m", "CONFIG_USB_SERIAL_OPTION": "m", "CONFIG_USB_SERIAL_OMNINET": "m", "CONFIG_USB_SERIAL_OPTICON": "m", "CONFIG_USB_SERIAL_XSENS_MT": "m", "CONFIG_USB_SERIAL_WISHBONE": "m", "CONFIG_USB_SERIAL_SSU100": "m", "CONFIG_USB_SERIAL_QT2": "m", "CONFIG_USB_SERIAL_UPD78F0730": "m", "CONFIG_USB_SERIAL_XR": "m", "CONFIG_USB_SERIAL_DEBUG": "m", "CONFIG_USB_USS720": "m", "CONFIG_USB_EMI62": "m", "CONFIG_USB_EMI26": "m", "CONFIG_USB_ADUTUX": "m", "CONFIG_USB_SEVSEG": "m", "CONFIG_USB_LEGOTOWER": "m", "CONFIG_USB_LCD": "m", "CONFIG_USB_CYPRESS_CY7C63": "m", "CONFIG_USB_CYTHERM": "m", "CONFIG_USB_IDMOUSE": "m", "CONFIG_USB_APPLEDISPLAY": "m", "CONFIG_APPLE_MFI_FASTCHARGE": "m", "CONFIG_USB_SISUSBVGA": "m", "CONFIG_USB_LD": "m", "CONFIG_USB_TRANCEVIBRATOR": "m", "CONFIG_USB_IOWARRIOR": "m", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "m", "CONFIG_USB_ISIGHTFW": "m", "CONFIG_USB_YUREX": "m", "CONFIG_USB_EZUSB_FX2": "m", "CONFIG_USB_HUB_USB251XB": "m", "CONFIG_USB_HSIC_USB3503": "m", "CONFIG_USB_HSIC_USB4604": "m", "CONFIG_USB_LINK_LAYER_TEST": "m", "CONFIG_USB_CHAOSKEY": "m", "CONFIG_USB_ATM": "m", "CONFIG_USB_SPEEDTOUCH": "m", "CONFIG_USB_CXACRU": "m", "CONFIG_USB_UEAGLEATM": "m", "CONFIG_USB_XUSBATM": "m", "CONFIG_USB_PHY": "y", "CONFIG_NOP_USB_XCEIV": "m", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "m", "CONFIG_USB_GADGET": "y", "CONFIG_USB_GADGET_DEBUG": "not set", "CONFIG_USB_GADGET_DEBUG_FILES": "not set", "CONFIG_USB_GADGET_DEBUG_FS": "not set", "CONFIG_USB_GADGET_VBUS_DRAW": "2", "CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS": "2", "CONFIG_U_SERIAL_CONSOLE": "not set", "CONFIG_USB_GR_UDC": "not set", "CONFIG_USB_R8A66597": "not set", "CONFIG_USB_PXA27X": "not set", "CONFIG_USB_MV_UDC": "not set", "CONFIG_USB_MV_U3D": "not set", "CONFIG_USB_M66592": "not set", "CONFIG_USB_BDC_UDC": "not set", "CONFIG_USB_AMD5536UDC": "not set", "CONFIG_USB_NET2272": "not set", "CONFIG_USB_NET2280": "not set", "CONFIG_USB_GOKU": "not set", "CONFIG_USB_EG20T": "m", "CONFIG_USB_MAX3420_UDC": "not set", "CONFIG_USB_LIBCOMPOSITE": "m", "CONFIG_USB_F_ACM": "m", "CONFIG_USB_F_SS_LB": "m", "CONFIG_USB_U_SERIAL": "m", "CONFIG_USB_U_ETHER": "m", "CONFIG_USB_U_AUDIO": "m", "CONFIG_USB_F_SERIAL": "m", "CONFIG_USB_F_OBEX": "m", "CONFIG_USB_F_NCM": "m", "CONFIG_USB_F_ECM": "m", "CONFIG_USB_F_PHONET": "m", "CONFIG_USB_F_EEM": "m", "CONFIG_USB_F_SUBSET": "m", "CONFIG_USB_F_RNDIS": "m", "CONFIG_USB_F_MASS_STORAGE": "m", "CONFIG_USB_F_FS": "m", "CONFIG_USB_F_UAC1": "m", "CONFIG_USB_F_UAC2": "m", "CONFIG_USB_F_UVC": "m", "CONFIG_USB_F_MIDI": "m", "CONFIG_USB_F_HID": "m", "CONFIG_USB_F_PRINTER": "m", "CONFIG_USB_F_TCM": "m", "CONFIG_USB_CONFIGFS": "m", "CONFIG_USB_CONFIGFS_SERIAL": "y", "CONFIG_USB_CONFIGFS_ACM": "y", "CONFIG_USB_CONFIGFS_OBEX": "y", "CONFIG_USB_CONFIGFS_NCM": "y", "CONFIG_USB_CONFIGFS_ECM": "y", "CONFIG_USB_CONFIGFS_ECM_SUBSET": "y", "CONFIG_USB_CONFIGFS_RNDIS": "y", "CONFIG_USB_CONFIGFS_EEM": "y", "CONFIG_USB_CONFIGFS_PHONET": "y", "CONFIG_USB_CONFIGFS_MASS_STORAGE": "y", "CONFIG_USB_CONFIGFS_F_LB_SS": "y", "CONFIG_USB_CONFIGFS_F_FS": "y", "CONFIG_USB_CONFIGFS_F_UAC1": "y", "CONFIG_USB_CONFIGFS_F_UAC1_LEGACY": "not set", "CONFIG_USB_CONFIGFS_F_UAC2": "y", "CONFIG_USB_CONFIGFS_F_MIDI": "y", "CONFIG_USB_CONFIGFS_F_HID": "y", "CONFIG_USB_CONFIGFS_F_UVC": "y", "CONFIG_USB_CONFIGFS_F_PRINTER": "y", "CONFIG_USB_CONFIGFS_F_TCM": "y", "CONFIG_USB_ZERO": "m", "CONFIG_USB_ZERO_HNPTEST": "y", "CONFIG_USB_AUDIO": "m", "CONFIG_GADGET_UAC1": "y", "CONFIG_GADGET_UAC1_LEGACY": "not set", "CONFIG_USB_ETH": "m", "CONFIG_USB_ETH_RNDIS": "y", "CONFIG_USB_ETH_EEM": "y", "CONFIG_USB_G_NCM": "m", "CONFIG_USB_GADGETFS": "m", "CONFIG_USB_FUNCTIONFS": "m", "CONFIG_USB_FUNCTIONFS_ETH": "y", "CONFIG_USB_FUNCTIONFS_RNDIS": "y", "CONFIG_USB_FUNCTIONFS_GENERIC": "y", "CONFIG_USB_MASS_STORAGE": "m", "CONFIG_USB_GADGET_TARGET": "m", "CONFIG_USB_G_SERIAL": "m", "CONFIG_USB_MIDI_GADGET": "m", "CONFIG_USB_G_PRINTER": "m", "CONFIG_USB_CDC_COMPOSITE": "m", "CONFIG_USB_G_NOKIA": "m", "CONFIG_USB_G_ACM_MS": "m", "CONFIG_USB_G_MULTI": "m", "CONFIG_USB_G_MULTI_RNDIS": "y", "CONFIG_USB_G_MULTI_CDC": "y", "CONFIG_USB_G_HID": "m", "CONFIG_USB_G_DBGP": "m", "CONFIG_USB_G_DBGP_PRINTK": "y", "CONFIG_USB_G_DBGP_SERIAL": "not set", "CONFIG_USB_G_WEBCAM": "m", "CONFIG_USB_RAW_GADGET": "m", "CONFIG_TYPEC": "m", "CONFIG_TYPEC_TCPM": "m", "CONFIG_TYPEC_TCPCI": "m", "CONFIG_TYPEC_RT1711H": "m", "CONFIG_TYPEC_TCPCI_MAXIM": "m", "CONFIG_TYPEC_FUSB302": "m", "CONFIG_TYPEC_WCOVE": "m", "CONFIG_TYPEC_UCSI": "m", "CONFIG_UCSI_CCG": "m", "CONFIG_UCSI_ACPI": "m", "CONFIG_UCSI_STM32G0": "m", "CONFIG_TYPEC_TPS6598X": "m", "CONFIG_TYPEC_ANX7411": "m", "CONFIG_TYPEC_RT1719": "m", "CONFIG_TYPEC_HD3SS3220": "m", "CONFIG_TYPEC_STUSB160X": "m", "CONFIG_TYPEC_WUSB3801": "m", "CONFIG_TYPEC_MUX_FSA4480": "m", "CONFIG_TYPEC_MUX_GPIO_SBU": "m", "CONFIG_TYPEC_MUX_PI3USB30532": "m", "CONFIG_TYPEC_MUX_INTEL_PMC": "m", "CONFIG_TYPEC_DP_ALTMODE": "m", "CONFIG_TYPEC_NVIDIA_ALTMODE": "m", "CONFIG_USB_ROLE_SWITCH": "m", "CONFIG_USB_ROLES_INTEL_XHCI": "m", "CONFIG_MMC": "m", "CONFIG_MMC_BLOCK": "m", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "m", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_CRYPTO": "y", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "m", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "m", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "m", "CONFIG_MMC_SDHCI_PLTFM": "m", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "m", "CONFIG_MMC_ALCOR": "m", "CONFIG_MMC_TIFM_SD": "m", "CONFIG_MMC_SPI": "m", "CONFIG_MMC_CB710": "m", "CONFIG_MMC_VIA_SDMMC": "m", "CONFIG_MMC_VUB300": "m", "CONFIG_MMC_USHC": "m", "CONFIG_MMC_USDHI6ROL0": "m", "CONFIG_MMC_REALTEK_PCI": "m", "CONFIG_MMC_REALTEK_USB": "m", "CONFIG_MMC_CQHCI": "m", "CONFIG_MMC_HSQ": "m", "CONFIG_MMC_TOSHIBA_PCI": "m", "CONFIG_MMC_MTK": "m", "CONFIG_MMC_SDHCI_XENON": "m", "CONFIG_SCSI_UFSHCD": "m", "CONFIG_SCSI_UFS_BSG": "y", "CONFIG_SCSI_UFS_CRYPTO": "y", "CONFIG_SCSI_UFS_HPB": "y", "CONFIG_SCSI_UFS_FAULT_INJECTION": "y", "CONFIG_SCSI_UFS_HWMON": "y", "CONFIG_SCSI_UFSHCD_PCI": "m", "CONFIG_SCSI_UFS_DWC_TC_PCI": "not set", "CONFIG_SCSI_UFSHCD_PLATFORM": "m", "CONFIG_SCSI_UFS_CDNS_PLATFORM": "m", "CONFIG_MEMSTICK": "m", "CONFIG_MEMSTICK_DEBUG": "not set", "CONFIG_MEMSTICK_UNSAFE_RESUME": "not set", "CONFIG_MSPRO_BLOCK": "m", "CONFIG_MS_BLOCK": "m", "CONFIG_MEMSTICK_TIFM_MS": "m", "CONFIG_MEMSTICK_JMICRON_38X": "m", "CONFIG_MEMSTICK_R592": "m", "CONFIG_MEMSTICK_REALTEK_PCI": "m", "CONFIG_MEMSTICK_REALTEK_USB": "m", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "m", "CONFIG_LEDS_CLASS_MULTICOLOR": "m", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "y", "CONFIG_LEDS_APU": "m", "CONFIG_LEDS_LM3530": "m", "CONFIG_LEDS_LM3532": "m", "CONFIG_LEDS_LM3533": "m", "CONFIG_LEDS_LM3642": "m", "CONFIG_LEDS_PCA9532": "m", "CONFIG_LEDS_PCA9532_GPIO": "y", "CONFIG_LEDS_GPIO": "m", "CONFIG_LEDS_LP3944": "m", "CONFIG_LEDS_LP3952": "m", "CONFIG_LEDS_LP50XX": "m", "CONFIG_LEDS_PCA955X": "m", "CONFIG_LEDS_PCA955X_GPIO": "y", "CONFIG_LEDS_PCA963X": "m", "CONFIG_LEDS_DAC124S085": "not set", "CONFIG_LEDS_PWM": "m", "CONFIG_LEDS_REGULATOR": "m", "CONFIG_LEDS_BD2606MVV": "m", "CONFIG_LEDS_BD2802": "m", "CONFIG_LEDS_INTEL_SS4200": "m", "CONFIG_LEDS_LT3593": "m", "CONFIG_LEDS_TCA6507": "m", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "m", "CONFIG_LEDS_IS31FL319X": "m", "CONFIG_LEDS_BLINKM": "m", "CONFIG_LEDS_MLXCPLD": "m", "CONFIG_LEDS_MLXREG": "m", "CONFIG_LEDS_USER": "m", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TI_LMU_COMMON": "m", "CONFIG_LEDS_LM36274": "m", "CONFIG_LEDS_AS3645A": "not set", "CONFIG_LEDS_LM3601X": "m", "CONFIG_LEDS_RT8515": "m", "CONFIG_LEDS_SGM3140": "m", "CONFIG_LEDS_PWM_MULTICOLOR": "m", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "m", "CONFIG_LEDS_TRIGGER_ONESHOT": "m", "CONFIG_LEDS_TRIGGER_DISK": "y", "CONFIG_LEDS_TRIGGER_MTD": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "m", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "m", "CONFIG_LEDS_TRIGGER_CPU": "y", "CONFIG_LEDS_TRIGGER_ACTIVITY": "m", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "m", "CONFIG_LEDS_TRIGGER_TRANSIENT": "m", "CONFIG_LEDS_TRIGGER_CAMERA": "m", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "m", "CONFIG_LEDS_TRIGGER_PATTERN": "m", "CONFIG_LEDS_TRIGGER_AUDIO": "m", "CONFIG_LEDS_TRIGGER_TTY": "m", "CONFIG_LEDS_SIEMENS_SIMATIC_IPC": "m", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "m", "CONFIG_INFINIBAND_USER_MAD": "m", "CONFIG_INFINIBAND_USER_ACCESS": "m", "CONFIG_INFINIBAND_USER_MEM": "y", "CONFIG_INFINIBAND_ON_DEMAND_PAGING": "y", "CONFIG_INFINIBAND_ADDR_TRANS": "y", "CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS": "y", "CONFIG_INFINIBAND_VIRT_DMA": "y", "CONFIG_INFINIBAND_BNXT_RE": "m", "CONFIG_INFINIBAND_CXGB4": "m", "CONFIG_INFINIBAND_EFA": "m", "CONFIG_INFINIBAND_ERDMA": "m", "CONFIG_INFINIBAND_HFI1": "m", "CONFIG_HFI1_DEBUG_SDMA_ORDER": "not set", "CONFIG_SDMA_VERBOSITY": "not set", "CONFIG_INFINIBAND_IRDMA": "m", "CONFIG_MANA_INFINIBAND": "m", "CONFIG_MLX4_INFINIBAND": "m", "CONFIG_MLX5_INFINIBAND": "m", "CONFIG_INFINIBAND_MTHCA": "m", "CONFIG_INFINIBAND_MTHCA_DEBUG": "y", "CONFIG_INFINIBAND_OCRDMA": "m", "CONFIG_INFINIBAND_QEDR": "m", "CONFIG_INFINIBAND_QIB": "m", "CONFIG_INFINIBAND_QIB_DCA": "y", "CONFIG_INFINIBAND_USNIC": "m", "CONFIG_INFINIBAND_VMWARE_PVRDMA": "m", "CONFIG_INFINIBAND_RDMAVT": "m", "CONFIG_RDMA_RXE": "m", "CONFIG_RDMA_SIW": "m", "CONFIG_INFINIBAND_IPOIB": "m", "CONFIG_INFINIBAND_IPOIB_CM": "y", "CONFIG_INFINIBAND_IPOIB_DEBUG": "y", "CONFIG_INFINIBAND_IPOIB_DEBUG_DATA": "not set", "CONFIG_INFINIBAND_SRP": "m", "CONFIG_INFINIBAND_SRPT": "m", "CONFIG_INFINIBAND_ISER": "m", "CONFIG_INFINIBAND_ISERT": "m", "CONFIG_INFINIBAND_RTRS": "m", "CONFIG_INFINIBAND_RTRS_CLIENT": "m", "CONFIG_INFINIBAND_RTRS_SERVER": "m", "CONFIG_INFINIBAND_OPA_VNIC": "m", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_EDAC": "y", "CONFIG_EDAC_LEGACY_SYSFS": "y", "CONFIG_EDAC_DEBUG": "not set", "CONFIG_EDAC_DECODE_MCE": "m", "CONFIG_EDAC_GHES": "y", "CONFIG_EDAC_AMD64": "m", "CONFIG_EDAC_E752X": "m", "CONFIG_EDAC_I82975X": "m", "CONFIG_EDAC_I3000": "m", "CONFIG_EDAC_I3200": "m", "CONFIG_EDAC_IE31200": "m", "CONFIG_EDAC_X38": "m", "CONFIG_EDAC_I5400": "m", "CONFIG_EDAC_I7CORE": "m", "CONFIG_EDAC_I5100": "m", "CONFIG_EDAC_I7300": "m", "CONFIG_EDAC_SBRIDGE": "m", "CONFIG_EDAC_SKX": "m", "CONFIG_EDAC_I10NM": "m", "CONFIG_EDAC_PND2": "m", "CONFIG_EDAC_IGEN6": "m", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "m", "CONFIG_RTC_DRV_ABEOZ9": "m", "CONFIG_RTC_DRV_ABX80X": "m", "CONFIG_RTC_DRV_DS1307": "m", "CONFIG_RTC_DRV_DS1307_CENTURY": "y", "CONFIG_RTC_DRV_DS1374": "m", "CONFIG_RTC_DRV_DS1374_WDT": "y", "CONFIG_RTC_DRV_DS1672": "m", "CONFIG_RTC_DRV_MAX6900": "m", "CONFIG_RTC_DRV_MAX8907": "m", "CONFIG_RTC_DRV_RS5C372": "m", "CONFIG_RTC_DRV_ISL1208": "m", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "m", "CONFIG_RTC_DRV_PCF8523": "m", "CONFIG_RTC_DRV_PCF85063": "m", "CONFIG_RTC_DRV_PCF85363": "m", "CONFIG_RTC_DRV_PCF8563": "m", "CONFIG_RTC_DRV_PCF8583": "m", "CONFIG_RTC_DRV_M41T80": "m", "CONFIG_RTC_DRV_M41T80_WDT": "y", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "m", "CONFIG_RTC_DRV_FM3130": "m", "CONFIG_RTC_DRV_RX8010": "m", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "m", "CONFIG_RTC_DRV_RV3032": "m", "CONFIG_RTC_DRV_RV8803": "m", "CONFIG_RTC_DRV_SD3078": "m", "CONFIG_RTC_DRV_M41T93": "not set", "CONFIG_RTC_DRV_M41T94": "not set", "CONFIG_RTC_DRV_DS1302": "not set", "CONFIG_RTC_DRV_DS1305": "not set", "CONFIG_RTC_DRV_DS1343": "not set", "CONFIG_RTC_DRV_DS1347": "not set", "CONFIG_RTC_DRV_DS1390": "not set", "CONFIG_RTC_DRV_MAX6916": "not set", "CONFIG_RTC_DRV_R9701": "not set", "CONFIG_RTC_DRV_RX4581": "not set", "CONFIG_RTC_DRV_RS5C348": "not set", "CONFIG_RTC_DRV_MAX6902": "not set", "CONFIG_RTC_DRV_PCF2123": "not set", "CONFIG_RTC_DRV_MCP795": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "m", "CONFIG_RTC_DRV_DS3232_HWMON": "y", "CONFIG_RTC_DRV_PCF2127": "m", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_DA9063": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_BQ4802": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_CROS_EC": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_HID_SENSOR_TIME": "not set", "CONFIG_RTC_DRV_GOLDFISH": "m", "CONFIG_RTC_DRV_WILCO_EC": "m", "CONFIG_DMADEVICES": "y", "CONFIG_DMADEVICES_DEBUG": "not set", "CONFIG_DMA_ENGINE": "y", "CONFIG_DMA_VIRTUAL_CHANNELS": "y", "CONFIG_DMA_ACPI": "y", "CONFIG_ALTERA_MSGDMA": "m", "CONFIG_INTEL_IDMA64": "m", "CONFIG_INTEL_IDXD_BUS": "m", "CONFIG_INTEL_IDXD": "m", "CONFIG_INTEL_IDXD_COMPAT": "not set", "CONFIG_INTEL_IDXD_SVM": "y", "CONFIG_INTEL_IDXD_PERFMON": "y", "CONFIG_INTEL_IOATDMA": "m", "CONFIG_PLX_DMA": "m", "CONFIG_XILINX_XDMA": "m", "CONFIG_AMD_PTDMA": "m", "CONFIG_QCOM_HIDMA_MGMT": "not set", "CONFIG_QCOM_HIDMA": "not set", "CONFIG_DW_DMAC_CORE": "y", "CONFIG_DW_DMAC": "m", "CONFIG_DW_DMAC_PCI": "y", "CONFIG_DW_EDMA": "m", "CONFIG_DW_EDMA_PCIE": "m", "CONFIG_HSU_DMA": "y", "CONFIG_SF_PDMA": "m", "CONFIG_TI_K3_PSIL": "not set", "CONFIG_INTEL_LDMA": "y", "CONFIG_ASYNC_TX_DMA": "y", "CONFIG_DMATEST": "not set", "CONFIG_DMA_ENGINE_RAID": "y", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "y", "CONFIG_UDMABUF": "y", "CONFIG_DMABUF_MOVE_NOTIFY": "y", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "y", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_DMABUF_HEAPS_SYSTEM": "y", "CONFIG_DMABUF_HEAPS_CMA": "not set", "CONFIG_DCA": "m", "CONFIG_UIO": "m", "CONFIG_UIO_CIF": "m", "CONFIG_UIO_PDRV_GENIRQ": "m", "CONFIG_UIO_DMEM_GENIRQ": "m", "CONFIG_UIO_AEC": "m", "CONFIG_UIO_SERCOS3": "m", "CONFIG_UIO_PCI_GENERIC": "m", "CONFIG_UIO_NETX": "m", "CONFIG_UIO_PRUSS": "not set", "CONFIG_UIO_MF624": "m", "CONFIG_UIO_HV_GENERIC": "m", "CONFIG_UIO_DFL": "m", "CONFIG_VFIO": "m", "CONFIG_VFIO_GROUP": "y", "CONFIG_VFIO_CONTAINER": "y", "CONFIG_VFIO_IOMMU_TYPE1": "m", "CONFIG_VFIO_NOIOMMU": "not set", "CONFIG_VFIO_VIRQFD": "y", "CONFIG_VFIO_PCI_CORE": "m", "CONFIG_VFIO_PCI_MMAP": "y", "CONFIG_VFIO_PCI_INTX": "y", "CONFIG_VFIO_PCI": "m", "CONFIG_VFIO_PCI_VGA": "y", "CONFIG_VFIO_PCI_IGD": "y", "CONFIG_MLX5_VFIO_PCI": "m", "CONFIG_PDS_VFIO_PCI": "m", "CONFIG_VFIO_MDEV": "m", "CONFIG_IRQ_BYPASS_MANAGER": "m", "CONFIG_VIRT_DRIVERS": "y", "CONFIG_VMGENID": "y", "CONFIG_VBOXGUEST": "m", "CONFIG_NITRO_ENCLAVES": "m", "CONFIG_ACRN_HSM": "m", "CONFIG_TSM_REPORTS": "m", "CONFIG_EFI_SECRET": "m", "CONFIG_SEV_GUEST": "m", "CONFIG_TDX_GUEST_DRIVER": "m", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_VDPA": "m", "CONFIG_VIRTIO_PMEM": "m", "CONFIG_VIRTIO_BALLOON": "m", "CONFIG_VIRTIO_MEM": "m", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "m", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "y", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "m", "CONFIG_VDPA": "m", "CONFIG_VDPA_SIM": "m", "CONFIG_VDPA_SIM_NET": "m", "CONFIG_VDPA_SIM_BLOCK": "m", "CONFIG_VDPA_USER": "not set", "CONFIG_IFCVF": "m", "CONFIG_MLX5_VDPA": "y", "CONFIG_MLX5_VDPA_NET": "m", "CONFIG_MLX5_VDPA_STEERING_DEBUG": "not set", "CONFIG_VP_VDPA": "m", "CONFIG_ALIBABA_ENI_VDPA": "not set", "CONFIG_SNET_VDPA": "not set", "CONFIG_VHOST_IOTLB": "m", "CONFIG_VHOST_RING": "m", "CONFIG_VHOST_TASK": "y", "CONFIG_VHOST": "m", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "m", "CONFIG_VHOST_SCSI": "m", "CONFIG_VHOST_VSOCK": "m", "CONFIG_VHOST_VDPA": "m", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_HYPERV": "m", "CONFIG_HYPERV_VTL_MODE": "not set", "CONFIG_HYPERV_TIMER": "y", "CONFIG_HYPERV_UTILS": "m", "CONFIG_HYPERV_BALLOON": "m", "CONFIG_XEN_BALLOON": "y", "CONFIG_XEN_BALLOON_MEMORY_HOTPLUG": "y", "CONFIG_XEN_MEMORY_HOTPLUG_LIMIT": "512", "CONFIG_XEN_SCRUB_PAGES_DEFAULT": "y", "CONFIG_XEN_DEV_EVTCHN": "m", "CONFIG_XEN_BACKEND": "y", "CONFIG_XENFS": "m", "CONFIG_XEN_COMPAT_XENFS": "y", "CONFIG_XEN_SYS_HYPERVISOR": "y", "CONFIG_XEN_XENBUS_FRONTEND": "y", "CONFIG_XEN_GNTDEV": "m", "CONFIG_XEN_GNTDEV_DMABUF": "y", "CONFIG_XEN_GRANT_DEV_ALLOC": "m", "CONFIG_XEN_GRANT_DMA_ALLOC": "y", "CONFIG_SWIOTLB_XEN": "y", "CONFIG_XEN_PCI_STUB": "y", "CONFIG_XEN_PCIDEV_BACKEND": "m", "CONFIG_XEN_PVCALLS_FRONTEND": "not set", "CONFIG_XEN_PVCALLS_BACKEND": "y", "CONFIG_XEN_SCSI_BACKEND": "m", "CONFIG_XEN_PRIVCMD": "m", "CONFIG_XEN_ACPI_PROCESSOR": "m", "CONFIG_XEN_MCE_LOG": "y", "CONFIG_XEN_HAVE_PVMMU": "y", "CONFIG_XEN_EFI": "y", "CONFIG_XEN_AUTO_XLATE": "y", "CONFIG_XEN_ACPI": "y", "CONFIG_XEN_SYMS": "y", "CONFIG_XEN_HAVE_VPMU": "y", "CONFIG_XEN_FRONT_PGDIR_SHBUF": "m", "CONFIG_XEN_UNPOPULATED_ALLOC": "y", "CONFIG_XEN_GRANT_DMA_OPS": "y", "CONFIG_XEN_VIRTIO": "y", "CONFIG_XEN_VIRTIO_FORCE_GRANT": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "y", "CONFIG_PRISM2_USB": "m", "CONFIG_RTL8192U": "m", "CONFIG_RTLLIB": "m", "CONFIG_RTLLIB_CRYPTO_CCMP": "m", "CONFIG_RTLLIB_CRYPTO_TKIP": "m", "CONFIG_RTLLIB_CRYPTO_WEP": "m", "CONFIG_RTL8192E": "m", "CONFIG_RTL8723BS": "m", "CONFIG_R8712U": "m", "CONFIG_RTS5208": "m", "CONFIG_VT6655": "m", "CONFIG_VT6656": "m", "CONFIG_ADIS16203": "not set", "CONFIG_ADIS16240": "not set", "CONFIG_AD7816": "not set", "CONFIG_ADT7316": "not set", "CONFIG_AD9832": "not set", "CONFIG_AD9834": "not set", "CONFIG_AD5933": "not set", "CONFIG_AD2S1210": "not set", "CONFIG_FB_SM750": "not set", "CONFIG_STAGING_MEDIA": "y", "CONFIG_INTEL_ATOMISP": "y", "CONFIG_VIDEO_ATOMISP": "m", "CONFIG_VIDEO_ATOMISP_ISP2401": "y", "CONFIG_VIDEO_ATOMISP_OV2722": "m", "CONFIG_VIDEO_ATOMISP_GC2235": "m", "CONFIG_VIDEO_ATOMISP_MSRLIST_HELPER": "m", "CONFIG_VIDEO_ATOMISP_MT9M114": "m", "CONFIG_VIDEO_ATOMISP_GC0310": "m", "CONFIG_VIDEO_ATOMISP_OV2680": "m", "CONFIG_VIDEO_ATOMISP_OV5693": "m", "CONFIG_VIDEO_ATOMISP_LM3554": "m", "CONFIG_DVB_AV7110_IR": "y", "CONFIG_DVB_AV7110": "m", "CONFIG_DVB_AV7110_OSD": "y", "CONFIG_DVB_BUDGET_PATCH": "m", "CONFIG_DVB_SP8870": "m", "CONFIG_VIDEO_IPU3_IMGU": "m", "CONFIG_STAGING_MEDIA_DEPRECATED": "y", "CONFIG_VIDEO_ATMEL_ISC_BASE": "not set", "CONFIG_LTE_GDM724X": "m", "CONFIG_FB_TFT": "not set", "CONFIG_KS7010": "m", "CONFIG_PI433": "not set", "CONFIG_FIELDBUS_DEV": "not set", "CONFIG_QLGE": "m", "CONFIG_VME_BUS": "not set", "CONFIG_CHROME_PLATFORMS": "y", "CONFIG_CHROMEOS_ACPI": "m", "CONFIG_CHROMEOS_LAPTOP": "m", "CONFIG_CHROMEOS_PSTORE": "m", "CONFIG_CHROMEOS_TBMC": "m", "CONFIG_CROS_EC": "m", "CONFIG_CROS_EC_I2C": "m", "CONFIG_CROS_EC_ISHTP": "m", "CONFIG_CROS_EC_SPI": "m", "CONFIG_CROS_EC_UART": "m", "CONFIG_CROS_EC_LPC": "m", "CONFIG_CROS_EC_PROTO": "y", "CONFIG_CROS_KBD_LED_BACKLIGHT": "m", "CONFIG_CROS_EC_CHARDEV": "m", "CONFIG_CROS_EC_LIGHTBAR": "m", "CONFIG_CROS_EC_DEBUGFS": "m", "CONFIG_CROS_EC_SENSORHUB": "m", "CONFIG_CROS_EC_SYSFS": "m", "CONFIG_CROS_EC_TYPEC": "m", "CONFIG_CROS_HPS_I2C": "m", "CONFIG_CROS_USBPD_LOGGER": "m", "CONFIG_CROS_USBPD_NOTIFY": "m", "CONFIG_CHROMEOS_PRIVACY_SCREEN": "m", "CONFIG_CROS_TYPEC_SWITCH": "m", "CONFIG_WILCO_EC": "m", "CONFIG_WILCO_EC_DEBUGFS": "not set", "CONFIG_WILCO_EC_EVENTS": "m", "CONFIG_WILCO_EC_TELEMETRY": "m", "CONFIG_MELLANOX_PLATFORM": "y", "CONFIG_MLXREG_HOTPLUG": "m", "CONFIG_MLXREG_IO": "m", "CONFIG_MLXREG_LC": "m", "CONFIG_NVSW_SN2201": "m", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE3_WMI": "m", "CONFIG_SURFACE_3_POWER_OPREGION": "m", "CONFIG_SURFACE_ACPI_NOTIFY": "m", "CONFIG_SURFACE_AGGREGATOR_CDEV": "m", "CONFIG_SURFACE_AGGREGATOR_HUB": "m", "CONFIG_SURFACE_AGGREGATOR_REGISTRY": "m", "CONFIG_SURFACE_AGGREGATOR_TABLET_SWITCH": "m", "CONFIG_SURFACE_DTX": "m", "CONFIG_SURFACE_GPE": "m", "CONFIG_SURFACE_HOTPLUG": "m", "CONFIG_SURFACE_PLATFORM_PROFILE": "m", "CONFIG_SURFACE_PRO3_BUTTON": "m", "CONFIG_SURFACE_AGGREGATOR": "m", "CONFIG_SURFACE_AGGREGATOR_BUS": "y", "CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "m", "CONFIG_UV_SYSFS": "m", "CONFIG_MXM_WMI": "m", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "m", "CONFIG_XIAOMI_WMI": "m", "CONFIG_GIGABYTE_WMI": "m", "CONFIG_YOGABOOK_WMI": "m", "CONFIG_ACERHDF": "m", "CONFIG_ACER_WIRELESS": "m", "CONFIG_ACER_WMI": "m", "CONFIG_AMD_PMF": "m", "CONFIG_AMD_PMC": "m", "CONFIG_AMD_HSMP": "m", "CONFIG_ADV_SWBUTTON": "m", "CONFIG_APPLE_GMUX": "m", "CONFIG_ASUS_LAPTOP": "m", "CONFIG_ASUS_WIRELESS": "m", "CONFIG_ASUS_WMI": "m", "CONFIG_ASUS_NB_WMI": "m", "CONFIG_ASUS_TF103C_DOCK": "m", "CONFIG_MERAKI_MX100": "m", "CONFIG_EEEPC_LAPTOP": "m", "CONFIG_EEEPC_WMI": "m", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "y", "CONFIG_ALIENWARE_WMI": "m", "CONFIG_DCDBAS": "m", "CONFIG_DELL_LAPTOP": "m", "CONFIG_DELL_RBU": "m", "CONFIG_DELL_RBTN": "m", "CONFIG_DELL_SMBIOS": "m", "CONFIG_DELL_SMBIOS_WMI": "y", "CONFIG_DELL_SMBIOS_SMM": "y", "CONFIG_DELL_SMO8800": "m", "CONFIG_DELL_WMI": "m", "CONFIG_DELL_WMI_PRIVACY": "y", "CONFIG_DELL_WMI_AIO": "m", "CONFIG_DELL_WMI_DESCRIPTOR": "m", "CONFIG_DELL_WMI_DDV": "m", "CONFIG_DELL_WMI_LED": "m", "CONFIG_DELL_WMI_SYSMAN": "m", "CONFIG_AMILO_RFKILL": "m", "CONFIG_FUJITSU_LAPTOP": "m", "CONFIG_FUJITSU_TABLET": "m", "CONFIG_GPD_POCKET_FAN": "m", "CONFIG_X86_PLATFORM_DRIVERS_HP": "y", "CONFIG_HP_ACCEL": "m", "CONFIG_HP_WMI": "m", "CONFIG_WIRELESS_HOTKEY": "m", "CONFIG_IBM_RTL": "m", "CONFIG_IDEAPAD_LAPTOP": "m", "CONFIG_LENOVO_YMC": "m", "CONFIG_SENSORS_HDAPS": "m", "CONFIG_THINKPAD_ACPI": "m", "CONFIG_THINKPAD_ACPI_ALSA_SUPPORT": "y", "CONFIG_THINKPAD_ACPI_DEBUGFACILITIES": "not set", "CONFIG_THINKPAD_ACPI_DEBUG": "not set", "CONFIG_THINKPAD_ACPI_UNSAFE_LEDS": "not set", "CONFIG_THINKPAD_ACPI_VIDEO": "y", "CONFIG_THINKPAD_ACPI_HOTKEY_POLL": "y", "CONFIG_THINKPAD_LMI": "m", "CONFIG_INTEL_ATOMISP2_PDX86": "y", "CONFIG_INTEL_ATOMISP2_LED": "m", "CONFIG_INTEL_IFS": "m", "CONFIG_INTEL_SAR_INT1092": "m", "CONFIG_INTEL_SKL_INT3472": "m", "CONFIG_INTEL_PMC_CORE": "m", "CONFIG_INTEL_PMT_CLASS": "m", "CONFIG_INTEL_PMT_TELEMETRY": "m", "CONFIG_INTEL_PMT_CRASHLOG": "m", "CONFIG_INTEL_SPEED_SELECT_TPMI": "m", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "m", "CONFIG_INTEL_TELEMETRY": "m", "CONFIG_INTEL_WMI": "y", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "m", "CONFIG_INTEL_WMI_THUNDERBOLT": "m", "CONFIG_INTEL_UNCORE_FREQ_CONTROL_TPMI": "m", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "m", "CONFIG_INTEL_HID_EVENT": "m", "CONFIG_INTEL_VBTN": "m", "CONFIG_INTEL_INT0002_VGPIO": "m", "CONFIG_INTEL_OAKTRAIL": "m", "CONFIG_INTEL_BXTWC_PMIC_TMU": "m", "CONFIG_INTEL_CHTWC_INT33FE": "m", "CONFIG_INTEL_ISHTP_ECLITE": "m", "CONFIG_INTEL_MRFLD_PWRBTN": "m", "CONFIG_INTEL_PUNIT_IPC": "m", "CONFIG_INTEL_RST": "m", "CONFIG_INTEL_SDSI": "m", "CONFIG_INTEL_SMARTCONNECT": "m", "CONFIG_INTEL_TPMI": "m", "CONFIG_INTEL_TURBO_MAX_3": "y", "CONFIG_INTEL_VSEC": "m", "CONFIG_MSI_EC": "m", "CONFIG_MSI_LAPTOP": "m", "CONFIG_MSI_WMI": "m", "CONFIG_PCENGINES_APU2": "m", "CONFIG_BARCO_P50_GPIO": "m", "CONFIG_SAMSUNG_LAPTOP": "m", "CONFIG_SAMSUNG_Q10": "m", "CONFIG_ACPI_TOSHIBA": "m", "CONFIG_TOSHIBA_BT_RFKILL": "m", "CONFIG_TOSHIBA_HAPS": "m", "CONFIG_TOSHIBA_WMI": "m", "CONFIG_ACPI_CMPC": "m", "CONFIG_COMPAL_LAPTOP": "m", "CONFIG_LG_LAPTOP": "m", "CONFIG_PANASONIC_LAPTOP": "m", "CONFIG_SONY_LAPTOP": "m", "CONFIG_SONYPI_COMPAT": "y", "CONFIG_SYSTEM76_ACPI": "m", "CONFIG_TOPSTAR_LAPTOP": "m", "CONFIG_SERIAL_MULTI_INSTANTIATE": "m", "CONFIG_MLX_PLATFORM": "m", "CONFIG_TOUCHSCREEN_DMI": "y", "CONFIG_X86_ANDROID_TABLETS": "m", "CONFIG_FW_ATTR_CLASS": "m", "CONFIG_INTEL_IPS": "m", "CONFIG_INTEL_SCU_IPC": "y", "CONFIG_INTEL_SCU": "y", "CONFIG_INTEL_SCU_PCI": "y", "CONFIG_INTEL_SCU_PLATFORM": "m", "CONFIG_INTEL_SCU_IPC_UTIL": "m", "CONFIG_SIEMENS_SIMATIC_IPC": "m", "CONFIG_WINMATE_FM07_KEYS": "m", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_LMK04832": "m", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "m", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_TPS68470": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "m", "CONFIG_COMMON_CLK_NXP": "not set", "CONFIG_COMMON_CLK_PWM": "not set", "CONFIG_COMMON_CLK_PXA": "not set", "CONFIG_COMMON_CLK_STM32MP135": "not set", "CONFIG_COMMON_CLK_STM32MP157": "not set", "CONFIG_COMMON_CLK_STM32F": "not set", "CONFIG_COMMON_CLK_STM32H7": "not set", "CONFIG_COMMON_CLK_MMP2": "not set", "CONFIG_CLK_IMX1": "not set", "CONFIG_CLK_IMX25": "not set", "CONFIG_CLK_IMX27": "not set", "CONFIG_CLK_IMX31": "not set", "CONFIG_CLK_IMX35": "not set", "CONFIG_CLK_IMX5": "not set", "CONFIG_CLK_IMX6Q": "not set", "CONFIG_CLK_IMX6SL": "not set", "CONFIG_CLK_IMX6SLL": "not set", "CONFIG_CLK_IMX6SX": "not set", "CONFIG_CLK_IMX6UL": "not set", "CONFIG_CLK_IMX7D": "not set", "CONFIG_CLK_IMX7ULP": "not set", "CONFIG_CLK_VF610": "not set", "CONFIG_COMMON_CLK_PIC32": "not set", "CONFIG_CLK_INTEL_SOCFPGA": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "y", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MTK_CPUX_TIMER": "not set", "CONFIG_SH_TIMER_CMT": "not set", "CONFIG_SH_TIMER_MTU2": "not set", "CONFIG_SH_TIMER_TMU": "not set", "CONFIG_EM_TIMER_STI": "not set", "CONFIG_GXP_TIMER": "not set", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMUFD_DRIVER": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_IO_PGTABLE": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "not set", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "y", "CONFIG_IOMMU_DMA": "y", "CONFIG_IOMMU_SVA": "y", "CONFIG_AMD_IOMMU": "y", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "y", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_HYPERV_IOMMU": "y", "CONFIG_VIRTIO_IOMMU": "m", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG": "m", "CONFIG_RPMSG_CHAR": "m", "CONFIG_RPMSG_CTRL": "m", "CONFIG_RPMSG_NS": "m", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "m", "CONFIG_SOUNDWIRE": "m", "CONFIG_SOUNDWIRE_AMD": "m", "CONFIG_SOUNDWIRE_CADENCE": "m", "CONFIG_SOUNDWIRE_INTEL": "m", "CONFIG_SOUNDWIRE_QCOM": "not set", "CONFIG_SOUNDWIRE_GENERIC_ALLOCATION": "m", "CONFIG_IMX8M_BLK_CTRL": "not set", "CONFIG_IMX9_BLK_CTRL": "not set", "CONFIG_WPCM450_SOC": "m", "CONFIG_QCOM_QMI_HELPERS": "m", "CONFIG_SUNXI_SRAM": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "y", "CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND": "m", "CONFIG_DEVFREQ_GOV_PERFORMANCE": "m", "CONFIG_DEVFREQ_GOV_POWERSAVE": "m", "CONFIG_DEVFREQ_GOV_USERSPACE": "m", "CONFIG_DEVFREQ_GOV_PASSIVE": "m", "CONFIG_PM_DEVFREQ_EVENT": "y", "CONFIG_EXTCON": "y", "CONFIG_EXTCON_ADC_JACK": "not set", "CONFIG_EXTCON_AXP288": "m", "CONFIG_EXTCON_FSA9480": "m", "CONFIG_EXTCON_GPIO": "m", "CONFIG_EXTCON_INTEL_INT3496": "m", "CONFIG_EXTCON_INTEL_MRFLD": "m", "CONFIG_EXTCON_MAX3355": "m", "CONFIG_EXTCON_PTN5150": "m", "CONFIG_EXTCON_RT8973A": "not set", "CONFIG_EXTCON_SM5502": "m", "CONFIG_EXTCON_USB_GPIO": "not set", "CONFIG_EXTCON_USBC_CROS_EC": "m", "CONFIG_EXTCON_USBC_TUSB320": "m", "CONFIG_MEMORY": "y", "CONFIG_FPGA_DFL_EMIF": "m", "CONFIG_IIO": "m", "CONFIG_IIO_BUFFER": "y", "CONFIG_IIO_BUFFER_CB": "m", "CONFIG_IIO_BUFFER_DMA": "m", "CONFIG_IIO_BUFFER_DMAENGINE": "m", "CONFIG_IIO_BUFFER_HW_CONSUMER": "not set", "CONFIG_IIO_KFIFO_BUF": "m", "CONFIG_IIO_TRIGGERED_BUFFER": "m", "CONFIG_IIO_CONFIGFS": "m", "CONFIG_IIO_TRIGGER": "y", "CONFIG_IIO_CONSUMERS_PER_TRIGGER": "2", "CONFIG_IIO_SW_DEVICE": "m", "CONFIG_IIO_SW_TRIGGER": "m", "CONFIG_IIO_TRIGGERED_EVENT": "m", "CONFIG_ADIS16201": "not set", "CONFIG_ADIS16209": "not set", "CONFIG_ADXL313_I2C": "not set", "CONFIG_ADXL313_SPI": "not set", "CONFIG_ADXL355_I2C": "not set", "CONFIG_ADXL355_SPI": "not set", "CONFIG_ADXL367_SPI": "not set", "CONFIG_ADXL367_I2C": "not set", "CONFIG_ADXL372_SPI": "not set", "CONFIG_ADXL372_I2C": "not set", "CONFIG_BMA220": "not set", "CONFIG_BMA400": "not set", "CONFIG_BMC150_ACCEL": "m", "CONFIG_BMC150_ACCEL_I2C": "m", "CONFIG_BMC150_ACCEL_SPI": "m", "CONFIG_BMI088_ACCEL": "not set", "CONFIG_DA280": "not set", "CONFIG_DA311": "not set", "CONFIG_DMARD06": "not set", "CONFIG_DMARD09": "not set", "CONFIG_DMARD10": "not set", "CONFIG_FXLS8962AF_I2C": "not set", "CONFIG_FXLS8962AF_SPI": "not set", "CONFIG_HID_SENSOR_ACCEL_3D": "m", "CONFIG_IIO_ST_ACCEL_3AXIS": "not set", "CONFIG_IIO_KX022A_SPI": "not set", "CONFIG_IIO_KX022A_I2C": "not set", "CONFIG_KXSD9": "not set", "CONFIG_KXCJK1013": "m", "CONFIG_MC3230": "not set", "CONFIG_MMA7455": "m", "CONFIG_MMA7455_I2C": "m", "CONFIG_MMA7455_SPI": "m", "CONFIG_MMA7660": "not set", "CONFIG_MMA8452": "not set", "CONFIG_MMA9551_CORE": "m", "CONFIG_MMA9551": "m", "CONFIG_MMA9553": "m", "CONFIG_MSA311": "not set", "CONFIG_MXC4005": "m", "CONFIG_MXC6255": "m", "CONFIG_SCA3000": "not set", "CONFIG_SCA3300": "not set", "CONFIG_STK8312": "m", "CONFIG_STK8BA50": "m", "CONFIG_AD4130": "not set", "CONFIG_AD7091R5": "not set", "CONFIG_AD7124": "not set", "CONFIG_AD7192": "not set", "CONFIG_AD7266": "not set", "CONFIG_AD7280": "not set", "CONFIG_AD7291": "not set", "CONFIG_AD7292": "not set", "CONFIG_AD7298": "not set", "CONFIG_AD7476": "not set", "CONFIG_AD7606_IFACE_PARALLEL": "not set", "CONFIG_AD7606_IFACE_SPI": "not set", "CONFIG_AD7766": "not set", "CONFIG_AD7768_1": "not set", "CONFIG_AD7780": "not set", "CONFIG_AD7791": "not set", "CONFIG_AD7793": "not set", "CONFIG_AD7887": "not set", "CONFIG_AD7923": "not set", "CONFIG_AD7949": "not set", "CONFIG_AD799X": "not set", "CONFIG_AXP20X_ADC": "m", "CONFIG_AXP288_ADC": "m", "CONFIG_CC10001_ADC": "not set", "CONFIG_DLN2_ADC": "m", "CONFIG_ENVELOPE_DETECTOR": "not set", "CONFIG_HI8435": "m", "CONFIG_HX711": "not set", "CONFIG_INA2XX_ADC": "not set", "CONFIG_INTEL_MRFLD_ADC": "not set", "CONFIG_LTC2471": "not set", "CONFIG_LTC2485": "not set", "CONFIG_LTC2496": "not set", "CONFIG_LTC2497": "not set", "CONFIG_MAX1027": "not set", "CONFIG_MAX11100": "not set", "CONFIG_MAX1118": "not set", "CONFIG_MAX11205": "not set", "CONFIG_MAX11410": "not set", "CONFIG_MAX1241": "not set", "CONFIG_MAX1363": "not set", "CONFIG_MAX9611": "not set", "CONFIG_MCP320X": "not set", "CONFIG_MCP3422": "not set", "CONFIG_MCP3911": "not set", "CONFIG_NAU7802": "not set", "CONFIG_QCOM_SPMI_IADC": "not set", "CONFIG_QCOM_SPMI_VADC": "not set", "CONFIG_QCOM_SPMI_ADC5": "not set", "CONFIG_RICHTEK_RTQ6056": "not set", "CONFIG_SD_ADC_MODULATOR": "not set", "CONFIG_TI_ADC081C": "not set", "CONFIG_TI_ADC0832": "not set", "CONFIG_TI_ADC084S021": "not set", "CONFIG_TI_ADC12138": "not set", "CONFIG_TI_ADC108S102": "not set", "CONFIG_TI_ADC128S052": "not set", "CONFIG_TI_ADC161S626": "not set", "CONFIG_TI_ADS1015": "not set", "CONFIG_TI_ADS7924": "not set", "CONFIG_TI_ADS1100": "not set", "CONFIG_TI_ADS7950": "not set", "CONFIG_TI_ADS8344": "not set", "CONFIG_TI_ADS8688": "not set", "CONFIG_TI_ADS124S08": "not set", "CONFIG_TI_ADS131E08": "not set", "CONFIG_TI_LMP92064": "not set", "CONFIG_TI_TLC4541": "not set", "CONFIG_TI_TSC2046": "not set", "CONFIG_VF610_ADC": "not set", "CONFIG_VIPERBOARD_ADC": "not set", "CONFIG_XILINX_XADC": "not set", "CONFIG_AD74115": "not set", "CONFIG_AD74413R": "not set", "CONFIG_STX104": "not set", "CONFIG_IIO_RESCALE": "m", "CONFIG_AD8366": "not set", "CONFIG_ADA4250": "not set", "CONFIG_HMC425": "not set", "CONFIG_AD7150": "not set", "CONFIG_AD7746": "not set", "CONFIG_ATLAS_PH_SENSOR": "m", "CONFIG_ATLAS_EZO_SENSOR": "not set", "CONFIG_BME680": "m", "CONFIG_BME680_I2C": "m", "CONFIG_BME680_SPI": "m", "CONFIG_CCS811": "not set", "CONFIG_IAQCORE": "m", "CONFIG_PMS7003": "not set", "CONFIG_SCD30_CORE": "not set", "CONFIG_SCD4X": "not set", "CONFIG_SENSIRION_SGP30": "not set", "CONFIG_SENSIRION_SGP40": "not set", "CONFIG_SPS30_I2C": "not set", "CONFIG_SPS30_SERIAL": "not set", "CONFIG_SENSEAIR_SUNRISE_CO2": "not set", "CONFIG_VZ89X": "m", "CONFIG_IIO_CROS_EC_SENSORS_CORE": "not set", "CONFIG_HID_SENSOR_IIO_COMMON": "m", "CONFIG_HID_SENSOR_IIO_TRIGGER": "m", "CONFIG_IIO_MS_SENSORS_I2C": "m", "CONFIG_IIO_SSP_SENSORHUB": "not set", "CONFIG_AD3552R": "not set", "CONFIG_AD5064": "not set", "CONFIG_AD5360": "not set", "CONFIG_AD5380": "not set", "CONFIG_AD5421": "not set", "CONFIG_AD5446": "not set", "CONFIG_AD5449": "not set", "CONFIG_AD5592R": "not set", "CONFIG_AD5593R": "not set", "CONFIG_AD5504": "not set", "CONFIG_AD5624R_SPI": "not set", "CONFIG_LTC2688": "not set", "CONFIG_AD5686_SPI": "not set", "CONFIG_AD5696_I2C": "not set", "CONFIG_AD5755": "not set", "CONFIG_AD5758": "not set", "CONFIG_AD5761": "m", "CONFIG_AD5764": "not set", "CONFIG_AD5766": "not set", "CONFIG_AD5770R": "not set", "CONFIG_AD5791": "not set", "CONFIG_AD7293": "not set", "CONFIG_AD7303": "not set", "CONFIG_AD8801": "not set", "CONFIG_CIO_DAC": "not set", "CONFIG_DPOT_DAC": "not set", "CONFIG_DS4424": "not set", "CONFIG_LTC1660": "not set", "CONFIG_LTC2632": "not set", "CONFIG_M62332": "not set", "CONFIG_MAX517": "not set", "CONFIG_MAX5522": "not set", "CONFIG_MAX5821": "not set", "CONFIG_MCP4725": "not set", "CONFIG_MCP4922": "not set", "CONFIG_TI_DAC082S085": "not set", "CONFIG_TI_DAC5571": "not set", "CONFIG_TI_DAC7311": "not set", "CONFIG_TI_DAC7612": "not set", "CONFIG_VF610_DAC": "not set", "CONFIG_IIO_SIMPLE_DUMMY": "not set", "CONFIG_ADMV8818": "not set", "CONFIG_AD9523": "not set", "CONFIG_ADF4350": "not set", "CONFIG_ADF4371": "not set", "CONFIG_ADF4377": "not set", "CONFIG_ADMV1013": "not set", "CONFIG_ADMV1014": "not set", "CONFIG_ADMV4420": "not set", "CONFIG_ADRF6780": "not set", "CONFIG_ADIS16080": "not set", "CONFIG_ADIS16130": "not set", "CONFIG_ADIS16136": "not set", "CONFIG_ADIS16260": "not set", "CONFIG_ADXRS290": "not set", "CONFIG_ADXRS450": "not set", "CONFIG_BMG160": "not set", "CONFIG_FXAS21002C": "not set", "CONFIG_HID_SENSOR_GYRO_3D": "m", "CONFIG_MPU3050_I2C": "not set", "CONFIG_IIO_ST_GYRO_3AXIS": "not set", "CONFIG_ITG3200": "not set", "CONFIG_AFE4403": "not set", "CONFIG_AFE4404": "not set", "CONFIG_MAX30100": "m", "CONFIG_MAX30102": "m", "CONFIG_AM2315": "m", "CONFIG_DHT11": "not set", "CONFIG_HDC100X": "m", "CONFIG_HDC2010": "not set", "CONFIG_HID_SENSOR_HUMIDITY": "m", "CONFIG_HTS221": "not set", "CONFIG_HTU21": "m", "CONFIG_SI7005": "not set", "CONFIG_SI7020": "not set", "CONFIG_ADIS16400": "not set", "CONFIG_ADIS16460": "not set", "CONFIG_ADIS16475": "not set", "CONFIG_ADIS16480": "not set", "CONFIG_BMI160": "m", "CONFIG_BMI160_I2C": "m", "CONFIG_BMI160_SPI": "m", "CONFIG_BOSCH_BNO055_SERIAL": "not set", "CONFIG_BOSCH_BNO055_I2C": "not set", "CONFIG_FXOS8700_I2C": "not set", "CONFIG_FXOS8700_SPI": "not set", "CONFIG_KMX61": "m", "CONFIG_INV_ICM42600_I2C": "not set", "CONFIG_INV_ICM42600_SPI": "not set", "CONFIG_INV_MPU6050_IIO": "m", "CONFIG_INV_MPU6050_I2C": "m", "CONFIG_INV_MPU6050_SPI": "not set", "CONFIG_IIO_ST_LSM6DSX": "not set", "CONFIG_IIO_ST_LSM9DS0": "not set", "CONFIG_ACPI_ALS": "m", "CONFIG_ADJD_S311": "not set", "CONFIG_ADUX1020": "not set", "CONFIG_AL3010": "not set", "CONFIG_AL3320A": "not set", "CONFIG_APDS9300": "not set", "CONFIG_APDS9960": "m", "CONFIG_AS73211": "not set", "CONFIG_BH1750": "not set", "CONFIG_BH1780": "m", "CONFIG_CM32181": "not set", "CONFIG_CM3232": "not set", "CONFIG_CM3323": "not set", "CONFIG_CM3605": "not set", "CONFIG_CM36651": "not set", "CONFIG_GP2AP002": "not set", "CONFIG_GP2AP020A00F": "not set", "CONFIG_IQS621_ALS": "not set", "CONFIG_SENSORS_ISL29018": "not set", "CONFIG_SENSORS_ISL29028": "not set", "CONFIG_ISL29125": "not set", "CONFIG_HID_SENSOR_ALS": "m", "CONFIG_HID_SENSOR_PROX": "m", "CONFIG_JSA1212": "m", "CONFIG_ROHM_BU27034": "not set", "CONFIG_RPR0521": "m", "CONFIG_SENSORS_LM3533": "not set", "CONFIG_LTR501": "not set", "CONFIG_LTRF216A": "not set", "CONFIG_LV0104CS": "not set", "CONFIG_MAX44000": "m", "CONFIG_MAX44009": "m", "CONFIG_NOA1305": "not set", "CONFIG_OPT3001": "not set", "CONFIG_PA12203001": "not set", "CONFIG_SI1133": "not set", "CONFIG_SI1145": "not set", "CONFIG_STK3310": "not set", "CONFIG_ST_UVIS25": "not set", "CONFIG_TCS3414": "not set", "CONFIG_TCS3472": "not set", "CONFIG_SENSORS_TSL2563": "not set", "CONFIG_TSL2583": "not set", "CONFIG_TSL2591": "not set", "CONFIG_TSL2772": "not set", "CONFIG_TSL4531": "not set", "CONFIG_US5182D": "m", "CONFIG_VCNL4000": "not set", "CONFIG_VCNL4035": "not set", "CONFIG_VEML6030": "not set", "CONFIG_VEML6070": "m", "CONFIG_VL6180": "m", "CONFIG_ZOPT2201": "not set", "CONFIG_AK8974": "not set", "CONFIG_AK8975": "not set", "CONFIG_AK09911": "not set", "CONFIG_BMC150_MAGN": "m", "CONFIG_BMC150_MAGN_I2C": "m", "CONFIG_BMC150_MAGN_SPI": "m", "CONFIG_MAG3110": "not set", "CONFIG_HID_SENSOR_MAGNETOMETER_3D": "m", "CONFIG_MMC35240": "not set", "CONFIG_IIO_ST_MAGN_3AXIS": "not set", "CONFIG_SENSORS_HMC5843_I2C": "not set", "CONFIG_SENSORS_HMC5843_SPI": "not set", "CONFIG_SENSORS_RM3100_I2C": "not set", "CONFIG_SENSORS_RM3100_SPI": "not set", "CONFIG_TI_TMAG5273": "not set", "CONFIG_YAMAHA_YAS530": "not set", "CONFIG_IIO_MUX": "m", "CONFIG_HID_SENSOR_INCLINOMETER_3D": "m", "CONFIG_HID_SENSOR_DEVICE_ROTATION": "m", "CONFIG_IIO_HRTIMER_TRIGGER": "m", "CONFIG_IIO_INTERRUPT_TRIGGER": "not set", "CONFIG_IIO_TIGHTLOOP_TRIGGER": "not set", "CONFIG_IIO_SYSFS_TRIGGER": "not set", "CONFIG_IQS624_POS": "not set", "CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE": "not set", "CONFIG_AD5110": "not set", "CONFIG_AD5272": "m", "CONFIG_DS1803": "m", "CONFIG_MAX5432": "not set", "CONFIG_MAX5481": "not set", "CONFIG_MAX5487": "m", "CONFIG_MCP4018": "m", "CONFIG_MCP4131": "m", "CONFIG_MCP4531": "m", "CONFIG_MCP41010": "m", "CONFIG_TPL0102": "m", "CONFIG_LMP91000": "not set", "CONFIG_ABP060MG": "not set", "CONFIG_BMP280": "m", "CONFIG_BMP280_I2C": "m", "CONFIG_BMP280_SPI": "m", "CONFIG_DLHL60D": "not set", "CONFIG_DPS310": "not set", "CONFIG_HID_SENSOR_PRESS": "m", "CONFIG_HP03": "m", "CONFIG_ICP10100": "not set", "CONFIG_MPL115_I2C": "not set", "CONFIG_MPL115_SPI": "not set", "CONFIG_MPL3115": "not set", "CONFIG_MS5611": "not set", "CONFIG_MS5637": "m", "CONFIG_IIO_ST_PRESS": "not set", "CONFIG_T5403": "not set", "CONFIG_HP206C": "m", "CONFIG_ZPA2326": "not set", "CONFIG_AS3935": "not set", "CONFIG_CROS_EC_MKBP_PROXIMITY": "not set", "CONFIG_ISL29501": "m", "CONFIG_LIDAR_LITE_V2": "m", "CONFIG_MB1232": "not set", "CONFIG_PING": "not set", "CONFIG_RFD77402": "m", "CONFIG_SRF04": "m", "CONFIG_SX9310": "not set", "CONFIG_SX9324": "not set", "CONFIG_SX9360": "not set", "CONFIG_SX9500": "m", "CONFIG_SRF08": "not set", "CONFIG_VCNL3020": "not set", "CONFIG_VL53L0X_I2C": "m", "CONFIG_AD2S90": "not set", "CONFIG_AD2S1200": "not set", "CONFIG_IQS620AT_TEMP": "not set", "CONFIG_LTC2983": "not set", "CONFIG_MAXIM_THERMOCOUPLE": "not set", "CONFIG_HID_SENSOR_TEMP": "m", "CONFIG_MLX90614": "m", "CONFIG_MLX90632": "m", "CONFIG_TMP006": "not set", "CONFIG_TMP007": "not set", "CONFIG_TMP117": "not set", "CONFIG_TSYS01": "m", "CONFIG_TSYS02D": "m", "CONFIG_MAX30208": "m", "CONFIG_MAX31856": "m", "CONFIG_MAX31865": "m", "CONFIG_NTB": "m", "CONFIG_NTB_MSI": "y", "CONFIG_NTB_AMD": "m", "CONFIG_NTB_IDT": "m", "CONFIG_NTB_INTEL": "m", "CONFIG_NTB_EPF": "m", "CONFIG_NTB_SWITCHTEC": "m", "CONFIG_NTB_PINGPONG": "not set", "CONFIG_NTB_TOOL": "not set", "CONFIG_NTB_PERF": "m", "CONFIG_NTB_MSI_TEST": "not set", "CONFIG_NTB_TRANSPORT": "m", "CONFIG_PWM": "y", "CONFIG_PWM_SYSFS": "y", "CONFIG_PWM_DEBUG": "not set", "CONFIG_PWM_CLK": "m", "CONFIG_PWM_CROS_EC": "m", "CONFIG_PWM_DWC": "m", "CONFIG_PWM_IQS620A": "m", "CONFIG_PWM_LP3943": "m", "CONFIG_PWM_LPSS": "m", "CONFIG_PWM_LPSS_PCI": "m", "CONFIG_PWM_LPSS_PLATFORM": "m", "CONFIG_PWM_PCA9685": "m", "CONFIG_ARM_GIC_V3_ITS": "not set", "CONFIG_MADERA_IRQ": "m", "CONFIG_SUNPLUS_SP7021_INTC": "not set", "CONFIG_IPACK_BUS": "m", "CONFIG_BOARD_TPCI200": "m", "CONFIG_SERIAL_IPOCTAL": "m", "CONFIG_RESET_CONTROLLER": "y", "CONFIG_RESET_ATH79": "not set", "CONFIG_RESET_AXS10X": "not set", "CONFIG_RESET_LANTIQ": "not set", "CONFIG_RESET_LPC18XX": "not set", "CONFIG_RESET_NPCM": "not set", "CONFIG_RESET_SIMPLE": "not set", "CONFIG_RESET_SOCFPGA": "not set", "CONFIG_RESET_SUNPLUS": "not set", "CONFIG_RESET_SUNXI": "not set", "CONFIG_RESET_TI_SYSCON": "not set", "CONFIG_RESET_TI_TPS380X": "not set", "CONFIG_RESET_ZYNQ": "not set", "CONFIG_RESET_TEGRA_BPMP": "not set", "CONFIG_GENERIC_PHY": "y", "CONFIG_GENERIC_PHY_MIPI_DPHY": "y", "CONFIG_USB_LGM_PHY": "m", "CONFIG_PHY_CAN_TRANSCEIVER": "m", "CONFIG_BCM_KONA_USB2_PHY": "m", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_CPCAP_USB": "not set", "CONFIG_PHY_QCOM_USB_HS": "m", "CONFIG_PHY_QCOM_USB_HSIC": "not set", "CONFIG_PHY_TUSB1210": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "m", "CONFIG_POWERCAP": "y", "CONFIG_INTEL_RAPL_CORE": "m", "CONFIG_INTEL_RAPL": "m", "CONFIG_INTEL_RAPL_TPMI": "m", "CONFIG_IDLE_INJECT": "y", "CONFIG_MCB": "not set", "CONFIG_RAS": "y", "CONFIG_RAS_CEC": "y", "CONFIG_RAS_CEC_DEBUG": "not set", "CONFIG_AMD_ATL": "m", "CONFIG_AMD_ATL_PRM": "y", "CONFIG_RAS_FMPM": "m", "CONFIG_USB4": "m", "CONFIG_USB4_DEBUGFS_WRITE": "not set", "CONFIG_USB4_DMA_TEST": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "m", "CONFIG_BLK_DEV_PMEM": "m", "CONFIG_ND_CLAIM": "y", "CONFIG_ND_BTT": "m", "CONFIG_BTT": "y", "CONFIG_ND_PFN": "m", "CONFIG_NVDIMM_PFN": "y", "CONFIG_NVDIMM_DAX": "y", "CONFIG_NVDIMM_KEYS": "y", "CONFIG_NVDIMM_SECURITY_TEST": "not set", "CONFIG_DAX": "y", "CONFIG_DEV_DAX": "m", "CONFIG_DEV_DAX_PMEM": "m", "CONFIG_DEV_DAX_HMEM": "m", "CONFIG_DEV_DAX_CXL": "m", "CONFIG_DEV_DAX_HMEM_DEVICES": "y", "CONFIG_DEV_DAX_KMEM": "m", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUT_SL28_VPD": "m", "CONFIG_NVMEM_LAYOUT_ONIE_TLV": "m", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_NVMEM_SPMI_SDAM": "m", "CONFIG_NVMEM_STM32_BSEC_OPTEE_TA": "not set", "CONFIG_STM": "m", "CONFIG_STM_PROTO_BASIC": "m", "CONFIG_STM_PROTO_SYS_T": "m", "CONFIG_STM_DUMMY": "m", "CONFIG_STM_SOURCE_CONSOLE": "m", "CONFIG_STM_SOURCE_HEARTBEAT": "m", "CONFIG_STM_SOURCE_FTRACE": "m", "CONFIG_INTEL_TH": "m", "CONFIG_INTEL_TH_PCI": "m", "CONFIG_INTEL_TH_ACPI": "m", "CONFIG_INTEL_TH_GTH": "m", "CONFIG_INTEL_TH_STH": "m", "CONFIG_INTEL_TH_MSU": "m", "CONFIG_INTEL_TH_PTI": "m", "CONFIG_INTEL_TH_DEBUG": "not set", "CONFIG_FPGA": "m", "CONFIG_ALTERA_PR_IP_CORE": "m", "CONFIG_FPGA_MGR_ALTERA_PS_SPI": "not set", "CONFIG_FPGA_MGR_ALTERA_CVP": "m", "CONFIG_FPGA_MGR_XILINX_SPI": "not set", "CONFIG_FPGA_MGR_MACHXO2_SPI": "not set", "CONFIG_FPGA_BRIDGE": "m", "CONFIG_ALTERA_FREEZE_BRIDGE": "m", "CONFIG_XILINX_PR_DECOUPLER": "m", "CONFIG_FPGA_REGION": "m", "CONFIG_FPGA_DFL": "m", "CONFIG_FPGA_DFL_FME": "m", "CONFIG_FPGA_DFL_FME_MGR": "m", "CONFIG_FPGA_DFL_FME_BRIDGE": "m", "CONFIG_FPGA_DFL_FME_REGION": "m", "CONFIG_FPGA_DFL_AFU": "m", "CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000": "m", "CONFIG_FPGA_DFL_PCI": "m", "CONFIG_FPGA_MGR_MICROCHIP_SPI": "m", "CONFIG_FPGA_MGR_LATTICE_SYSCONFIG": "m", "CONFIG_FPGA_MGR_LATTICE_SYSCONFIG_SPI": "m", "CONFIG_TEE": "m", "CONFIG_AMDTEE": "m", "CONFIG_MULTIPLEXER": "m", "CONFIG_MUX_ADG792A": "not set", "CONFIG_MUX_ADGS1408": "not set", "CONFIG_MUX_GPIO": "not set", "CONFIG_PM_OPP": "y", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "y", "CONFIG_DPLL": "y", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "m", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "m", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "m", "CONFIG_REISERFS_FS": "m", "CONFIG_REISERFS_CHECK": "not set", "CONFIG_REISERFS_PROC_INFO": "not set", "CONFIG_REISERFS_FS_XATTR": "y", "CONFIG_REISERFS_FS_POSIX_ACL": "y", "CONFIG_REISERFS_FS_SECURITY": "y", "CONFIG_JFS_FS": "m", "CONFIG_JFS_POSIX_ACL": "y", "CONFIG_JFS_SECURITY": "y", "CONFIG_JFS_DEBUG": "not set", "CONFIG_JFS_STATISTICS": "y", "CONFIG_XFS_FS": "m", "CONFIG_XFS_SUPPORT_V4": "y", "CONFIG_XFS_SUPPORT_ASCII_CI": "y", "CONFIG_XFS_QUOTA": "y", "CONFIG_XFS_POSIX_ACL": "y", "CONFIG_XFS_RT": "not set", "CONFIG_XFS_ONLINE_SCRUB": "not set", "CONFIG_XFS_WARN": "not set", "CONFIG_XFS_DEBUG": "not set", "CONFIG_GFS2_FS": "m", "CONFIG_GFS2_FS_LOCKING_DLM": "y", "CONFIG_OCFS2_FS": "m", "CONFIG_OCFS2_FS_O2CB": "m", "CONFIG_OCFS2_FS_USERSPACE_CLUSTER": "m", "CONFIG_OCFS2_FS_STATS": "y", "CONFIG_OCFS2_DEBUG_MASKLOG": "y", "CONFIG_OCFS2_DEBUG_FS": "not set", "CONFIG_BTRFS_FS": "m", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_CHECK_INTEGRITY": "not set", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "y", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "m", "CONFIG_F2FS_FS": "not set", "CONFIG_ZONEFS_FS": "m", "CONFIG_FS_DAX": "y", "CONFIG_FS_DAX_PMD": "y", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "y", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "m", "CONFIG_FS_ENCRYPTION_INLINE_CRYPT": "y", "CONFIG_FS_VERITY": "y", "CONFIG_FS_VERITY_BUILTIN_SIGNATURES": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "y", "CONFIG_FANOTIFY_ACCESS_PERMISSIONS": "y", "CONFIG_QUOTA": "y", "CONFIG_QUOTA_NETLINK_INTERFACE": "y", "CONFIG_QUOTA_DEBUG": "not set", "CONFIG_QUOTA_TREE": "m", "CONFIG_QFMT_V1": "m", "CONFIG_QFMT_V2": "m", "CONFIG_QUOTACTL": "y", "CONFIG_AUTOFS4_FS": "m", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "m", "CONFIG_FUSE_DAX": "y", "CONFIG_OVERLAY_FS": "m", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "not set", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_NETFS_SUPPORT": "m", "CONFIG_NETFS_STATS": "y", "CONFIG_FSCACHE": "m", "CONFIG_FSCACHE_STATS": "y", "CONFIG_FSCACHE_DEBUG": "not set", "CONFIG_CACHEFILES": "m", "CONFIG_CACHEFILES_DEBUG": "not set", "CONFIG_CACHEFILES_ERROR_INJECTION": "not set", "CONFIG_CACHEFILES_ONDEMAND": "not set", "CONFIG_ISO9660_FS": "m", "CONFIG_JOLIET": "y", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "m", "CONFIG_FAT_FS": "m", "CONFIG_MSDOS_FS": "m", "CONFIG_VFAT_FS": "m", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "m", "CONFIG_EXFAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_NTFS_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_VMCORE": "y", "CONFIG_PROC_VMCORE_DEVICE_DUMP": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_PROC_CPU_RESCTRL": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "y", "CONFIG_ARCH_SUPPORTS_HUGETLBFS": "not set", "CONFIG_HUGETLBFS": "y", "CONFIG_HUGETLB_PAGE": "y", "CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP": "y", "CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON": "not set", "CONFIG_MEMFD_CREATE": "y", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "m", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "m", "CONFIG_ADFS_FS": "m", "CONFIG_ADFS_FS_RW": "y", "CONFIG_AFFS_FS": "m", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "m", "CONFIG_BEFS_FS": "m", "CONFIG_BEFS_DEBUG": "not set", "CONFIG_BFS_FS": "m", "CONFIG_EFS_FS": "m", "CONFIG_JFFS2_FS": "m", "CONFIG_JFFS2_FS_DEBUG": "0", "CONFIG_JFFS2_FS_WRITEBUFFER": "y", "CONFIG_JFFS2_FS_WBUF_VERIFY": "not set", "CONFIG_JFFS2_SUMMARY": "y", "CONFIG_JFFS2_FS_XATTR": "y", "CONFIG_JFFS2_FS_POSIX_ACL": "y", "CONFIG_JFFS2_FS_SECURITY": "y", "CONFIG_JFFS2_COMPRESSION_OPTIONS": "y", "CONFIG_JFFS2_ZLIB": "y", "CONFIG_JFFS2_LZO": "not set", "CONFIG_JFFS2_RTIME": "y", "CONFIG_JFFS2_RUBIN": "not set", "CONFIG_JFFS2_CMODE_NONE": "not set", "CONFIG_JFFS2_CMODE_PRIORITY": "y", "CONFIG_JFFS2_CMODE_SIZE": "not set", "CONFIG_JFFS2_CMODE_FAVOURLZO": "not set", "CONFIG_UBIFS_FS": "m", "CONFIG_UBIFS_FS_ADVANCED_COMPR": "y", "CONFIG_UBIFS_FS_LZO": "y", "CONFIG_UBIFS_FS_ZLIB": "y", "CONFIG_UBIFS_FS_ZSTD": "y", "CONFIG_UBIFS_ATIME_SUPPORT": "y", "CONFIG_UBIFS_FS_XATTR": "y", "CONFIG_UBIFS_FS_SECURITY": "y", "CONFIG_UBIFS_FS_AUTHENTICATION": "y", "CONFIG_CRAMFS": "m", "CONFIG_CRAMFS_BLOCKDEV": "y", "CONFIG_CRAMFS_MTD": "y", "CONFIG_SQUASHFS": "m", "CONFIG_SQUASHFS_FILE_CACHE": "not set", "CONFIG_SQUASHFS_FILE_DIRECT": "y", "CONFIG_SQUASHFS_DECOMP_SINGLE": "y", "CONFIG_SQUASHFS_DECOMP_MULTI": "y", "CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU": "y", "CONFIG_SQUASHFS_CHOICE_DECOMP_BY_MOUNT": "y", "CONFIG_SQUASHFS_MOUNT_DECOMP_THREADS": "y", "CONFIG_SQUASHFS_XATTR": "y", "CONFIG_SQUASHFS_ZLIB": "y", "CONFIG_SQUASHFS_LZ4": "y", "CONFIG_SQUASHFS_LZO": "y", "CONFIG_SQUASHFS_XZ": "y", "CONFIG_SQUASHFS_ZSTD": "y", "CONFIG_SQUASHFS_4K_DEVBLK_SIZE": "not set", "CONFIG_SQUASHFS_EMBEDDED": "not set", "CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE": "3", "CONFIG_VXFS_FS": "m", "CONFIG_MINIX_FS": "m", "CONFIG_OMFS_FS": "m", "CONFIG_HPFS_FS": "m", "CONFIG_QNX4FS_FS": "m", "CONFIG_QNX6FS_FS": "m", "CONFIG_QNX6FS_DEBUG": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "not set", "CONFIG_ROMFS_BACKED_BY_MTD": "not set", "CONFIG_ROMFS_BACKED_BY_BOTH": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_ROMFS_ON_MTD": "y", "CONFIG_PSTORE": "y", "CONFIG_PSTORE_DEFAULT_KMSG_BYTES": "10240", "CONFIG_PSTORE_DEFLATE_COMPRESS": "m", "CONFIG_PSTORE_LZO_COMPRESS": "y", "CONFIG_PSTORE_LZ4_COMPRESS": "not set", "CONFIG_PSTORE_LZ4HC_COMPRESS": "m", "CONFIG_PSTORE_842_COMPRESS": "not set", "CONFIG_PSTORE_ZSTD_COMPRESS": "y", "CONFIG_PSTORE_COMPRESS": "y", "CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_LZO_COMPRESS_DEFAULT": "y", "CONFIG_PSTORE_LZ4HC_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_ZSTD_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_COMPRESS_DEFAULT": "\\"lzo\\"", "CONFIG_PSTORE_CONSOLE": "y", "CONFIG_PSTORE_PMSG": "y", "CONFIG_PSTORE_FTRACE": "y", "CONFIG_PSTORE_RAM": "m", "CONFIG_PSTORE_ZONE": "m", "CONFIG_PSTORE_BLK": "m", "CONFIG_PSTORE_BLK_BLKDEV": "\\"\\"", "CONFIG_PSTORE_BLK_KMSG_SIZE": "64", "CONFIG_PSTORE_BLK_MAX_REASON": "2", "CONFIG_PSTORE_BLK_PMSG_SIZE": "64", "CONFIG_PSTORE_BLK_CONSOLE_SIZE": "64", "CONFIG_PSTORE_BLK_FTRACE_SIZE": "64", "CONFIG_SYSV_FS": "m", "CONFIG_UFS_FS": "m", "CONFIG_UFS_FS_WRITE": "y", "CONFIG_UFS_DEBUG": "not set", "CONFIG_EROFS_FS": "m", "CONFIG_EROFS_FS_DEBUG": "not set", "CONFIG_EROFS_FS_XATTR": "y", "CONFIG_EROFS_FS_POSIX_ACL": "y", "CONFIG_EROFS_FS_SECURITY": "y", "CONFIG_EROFS_FS_ZIP": "y", "CONFIG_EROFS_FS_ZIP_LZMA": "y", "CONFIG_EROFS_FS_PCPU_KTHREAD": "not set", "CONFIG_VBOXSF_FS": "m", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "m", "CONFIG_NFS_V2": "m", "CONFIG_NFS_V3": "m", "CONFIG_NFS_V3_ACL": "y", "CONFIG_NFS_V4": "m", "CONFIG_NFS_SWAP": "y", "CONFIG_NFS_V4_1": "y", "CONFIG_NFS_V4_2": "y", "CONFIG_PNFS_FILE_LAYOUT": "m", "CONFIG_PNFS_BLOCK": "m", "CONFIG_PNFS_FLEXFILE_LAYOUT": "m", "CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN": "\\"kernel.org\\"", "CONFIG_NFS_V4_1_MIGRATION": "not set", "CONFIG_NFS_V4_SECURITY_LABEL": "y", "CONFIG_NFS_FSCACHE": "y", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DEBUG": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFS_V4_2_READ_PLUS": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "y", "CONFIG_NFSD_V2_ACL": "y", "CONFIG_NFSD_V3_ACL": "y", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_PNFS": "y", "CONFIG_NFSD_BLOCKLAYOUT": "y", "CONFIG_NFSD_SCSILAYOUT": "y", "CONFIG_NFSD_FLEXFILELAYOUT": "y", "CONFIG_NFSD_V4_2_INTER_SSC": "y", "CONFIG_NFSD_V4_SECURITY_LABEL": "y", "CONFIG_GRACE_PERIOD": "m", "CONFIG_LOCKD": "m", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_ACL_SUPPORT": "m", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_V4_2_SSC_HELPER": "y", "CONFIG_SUNRPC": "m", "CONFIG_SUNRPC_GSS": "m", "CONFIG_SUNRPC_BACKCHANNEL": "y", "CONFIG_SUNRPC_SWAP": "y", "CONFIG_RPCSEC_GSS_KRB5": "m", "CONFIG_RPCSEC_GSS_KRB5_CRYPTOSYSTEM": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_DES": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "y", "CONFIG_SUNRPC_DEBUG": "y", "CONFIG_SUNRPC_XPRT_RDMA": "m", "CONFIG_CEPH_FS": "m", "CONFIG_CEPH_FSCACHE": "y", "CONFIG_CEPH_FS_POSIX_ACL": "y", "CONFIG_CEPH_FS_SECURITY_LABEL": "y", "CONFIG_CIFS": "m", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "y", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "y", "CONFIG_CIFS_SWN_UPCALL": "y", "CONFIG_CIFS_SMB_DIRECT": "not set", "CONFIG_CIFS_FSCACHE": "y", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "m", "CONFIG_CODA_FS": "m", "CONFIG_AFS_FS": "m", "CONFIG_AFS_DEBUG": "not set", "CONFIG_AFS_FSCACHE": "y", "CONFIG_AFS_DEBUG_CURSOR": "not set", "CONFIG_9P_FS": "m", "CONFIG_9P_FSCACHE": "y", "CONFIG_9P_FS_POSIX_ACL": "y", "CONFIG_9P_FS_SECURITY": "y", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"utf8\\"", "CONFIG_NLS_CODEPAGE_437": "m", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "m", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "m", "CONFIG_NLS_MAC_CELTIC": "m", "CONFIG_NLS_MAC_CENTEURO": "m", "CONFIG_NLS_MAC_CROATIAN": "m", "CONFIG_NLS_MAC_CYRILLIC": "m", "CONFIG_NLS_MAC_GAELIC": "m", "CONFIG_NLS_MAC_GREEK": "m", "CONFIG_NLS_MAC_ICELAND": "m", "CONFIG_NLS_MAC_INUIT": "m", "CONFIG_NLS_MAC_ROMANIAN": "m", "CONFIG_NLS_MAC_TURKISH": "m", "CONFIG_NLS_UTF8": "m", "CONFIG_DLM": "m", "CONFIG_DLM_DEBUG": "y", "CONFIG_UNICODE": "y", "CONFIG_UNICODE_NORMALIZATION_SELFTEST": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "y", "CONFIG_PERSISTENT_KEYRINGS": "y", "CONFIG_TRUSTED_KEYS": "y", "CONFIG_TRUSTED_KEYS_TPM": "y", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "y", "CONFIG_KEY_NOTIFICATIONS": "y", "CONFIG_SECURITY_DMESG_RESTRICT": "y", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "y", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_INFINIBAND": "y", "CONFIG_SECURITY_NETWORK_XFRM": "y", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "y", "CONFIG_LSM_MMAP_MIN_ADDR": "0", "CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR": "y", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "y", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_HIDDEN_AREA": "y", "CONFIG_SECURITY_SELINUX": "y", "CONFIG_SECURITY_SELINUX_BOOTPARAM": "y", "CONFIG_SECURITY_SELINUX_DEVELOP": "y", "CONFIG_SECURITY_SELINUX_AVC_STATS": "y", "CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS": "9", "CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE": "256", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "y", "CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY": "2048", "CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG": "1024", "CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER": "not set", "CONFIG_SECURITY_TOMOYO_POLICY_LOADER": "\\"/sbin/tomoyo-init\\"", "CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER": "\\"/sbin/init\\"", "CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING": "not set", "CONFIG_SECURITY_APPARMOR": "y", "CONFIG_SECURITY_APPARMOR_DEBUG": "not set", "CONFIG_SECURITY_APPARMOR_INTROSPECT_POLICY": "y", "CONFIG_SECURITY_APPARMOR_HASH": "y", "CONFIG_SECURITY_APPARMOR_HASH_DEFAULT": "y", "CONFIG_SECURITY_APPARMOR_EXPORT_BINARY": "y", "CONFIG_SECURITY_APPARMOR_PARANOID_LOAD": "y", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "y", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "y", "CONFIG_SECURITY_LOCKDOWN_LSM_EARLY": "y", "CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT": "y", "CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE": "y", "CONFIG_LOCK_DOWN_KERNEL_FORCE_INTEGRITY": "not set", "CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "y", "CONFIG_INTEGRITY_ASYMMETRIC_KEYS": "y", "CONFIG_INTEGRITY_TRUSTED_KEYRING": "y", "CONFIG_INTEGRITY_PLATFORM_KEYRING": "y", "CONFIG_INTEGRITY_MACHINE_KEYRING": "y", "CONFIG_INTEGRITY_CA_MACHINE_KEYRING": "not set", "CONFIG_LOAD_UEFI_KEYS": "y", "CONFIG_INTEGRITY_AUDIT": "y", "CONFIG_IMA": "y", "CONFIG_IMA_KEXEC": "not set", "CONFIG_IMA_MEASURE_PCR_IDX": "10", "CONFIG_IMA_LSM_RULES": "y", "CONFIG_IMA_NG_TEMPLATE": "y", "CONFIG_IMA_SIG_TEMPLATE": "not set", "CONFIG_IMA_DEFAULT_TEMPLATE": "\\"ima-ng\\"", "CONFIG_IMA_DEFAULT_HASH_SHA1": "not set", "CONFIG_IMA_DEFAULT_HASH_SHA256": "y", "CONFIG_IMA_DEFAULT_HASH_SHA512": "not set", "CONFIG_IMA_DEFAULT_HASH": "\\"sha256\\"", "CONFIG_IMA_WRITE_POLICY": "not set", "CONFIG_IMA_READ_POLICY": "y", "CONFIG_IMA_APPRAISE": "y", "CONFIG_IMA_ARCH_POLICY": "y", "CONFIG_IMA_APPRAISE_BUILD_POLICY": "not set", "CONFIG_IMA_APPRAISE_BOOTPARAM": "y", "CONFIG_IMA_APPRAISE_MODSIG": "y", "CONFIG_IMA_TRUSTED_KEYRING": "y", "CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY": "not set", "CONFIG_IMA_BLACKLIST_KEYRING": "not set", "CONFIG_IMA_LOAD_X509": "not set", "CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS": "y", "CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS": "y", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "y", "CONFIG_IMA_DISABLE_HTABLE": "y", "CONFIG_EVM": "y", "CONFIG_EVM_ATTR_FSUUID": "y", "CONFIG_EVM_ADD_XATTRS": "y", "CONFIG_EVM_LOAD_X509": "not set", "CONFIG_DEFAULT_SECURITY_SELINUX": "not set", "CONFIG_DEFAULT_SECURITY_TOMOYO": "not set", "CONFIG_DEFAULT_SECURITY_APPARMOR": "y", "CONFIG_DEFAULT_SECURITY_DAC": "not set", "CONFIG_LSM": "\\"integrity,apparmor,selinux,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_ENABLER": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "not set", "CONFIG_INIT_STACK_NONE": "y", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "not set", "CONFIG_CC_HAS_RANDSTRUCT": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT": "not set", "CONFIG_GCC_PLUGIN_RANDSTRUCT": "not set", "CONFIG_XOR_BLOCKS": "m", "CONFIG_ASYNC_CORE": "m", "CONFIG_ASYNC_MEMCPY": "m", "CONFIG_ASYNC_XOR": "m", "CONFIG_ASYNC_PQ": "m", "CONFIG_ASYNC_RAID6_RECOV": "m", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_FIPS": "y", "CONFIG_CRYPTO_FIPS_NAME": "\\"Linux Kernel Cryptographic API\\"", "CONFIG_CRYPTO_FIPS_CUSTOM_VERSION": "not set", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "m", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "not set", "CONFIG_CRYPTO_MANAGER_EXTRA_TESTS": "not set", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "m", "CONFIG_CRYPTO_CRYPTD": "m", "CONFIG_CRYPTO_AUTHENC": "m", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_SIMD": "m", "CONFIG_CRYPTO_ENGINE": "m", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "y", "CONFIG_CRYPTO_DH_RFC7919_GROUPS": "y", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "m", "CONFIG_CRYPTO_ECDSA": "y", "CONFIG_CRYPTO_ECRDSA": "m", "CONFIG_CRYPTO_SM2": "m", "CONFIG_CRYPTO_CURVE25519": "m", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "m", "CONFIG_CRYPTO_ARIA": "m", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "m", "CONFIG_CRYPTO_FCRYPT": "m", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4": "m", "CONFIG_CRYPTO_SM4_GENERIC": "m", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "m", "CONFIG_CRYPTO_CHACHA20": "m", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CFB": "m", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "m", "CONFIG_CRYPTO_KEYWRAP": "m", "CONFIG_CRYPTO_LRW": "m", "CONFIG_CRYPTO_OFB": "m", "CONFIG_CRYPTO_PCBC": "m", "CONFIG_CRYPTO_XCTR": "m", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_NHPOLY1305": "m", "CONFIG_CRYPTO_AEGIS128": "m", "CONFIG_CRYPTO_CHACHA20POLY1305": "m", "CONFIG_CRYPTO_CCM": "m", "CONFIG_CRYPTO_GCM": "m", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "m", "CONFIG_CRYPTO_ESSIV": "m", "CONFIG_CRYPTO_BLAKE2B": "m", "CONFIG_CRYPTO_CMAC": "m", "CONFIG_CRYPTO_GHASH": "m", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "m", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLYVAL": "m", "CONFIG_CRYPTO_POLY1305": "m", "CONFIG_CRYPTO_RMD160": "m", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3": "m", "CONFIG_CRYPTO_SM3_GENERIC": "m", "CONFIG_CRYPTO_STREEBOG": "m", "CONFIG_CRYPTO_VMAC": "m", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "m", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "m", "CONFIG_CRYPTO_CRCT10DIF": "y", "CONFIG_CRYPTO_CRC64_ROCKSOFT": "m", "CONFIG_CRYPTO_DEFLATE": "m", "CONFIG_CRYPTO_LZO": "y", "CONFIG_CRYPTO_842": "m", "CONFIG_CRYPTO_LZ4": "m", "CONFIG_CRYPTO_LZ4HC": "m", "CONFIG_CRYPTO_ZSTD": "y", "CONFIG_CRYPTO_ANSI_CPRNG": "m", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "y", "CONFIG_CRYPTO_DRBG_CTR": "y", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_2": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_128": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_1024": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_8192": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_KDF800108_CTR": "y", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_STATS": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_CURVE25519_X86": "m", "CONFIG_CRYPTO_AES_NI_INTEL": "m", "CONFIG_CRYPTO_BLOWFISH_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "m", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "m", "CONFIG_CRYPTO_DES3_EDE_X86_64": "m", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "m", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "m", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "m", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_TWOFISH_X86_64": "m", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "m", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "m", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "m", "CONFIG_CRYPTO_CHACHA20_X86_64": "m", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "m", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "m", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "m", "CONFIG_CRYPTO_BLAKE2S_X86": "y", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "m", "CONFIG_CRYPTO_POLY1305_X86_64": "m", "CONFIG_CRYPTO_SHA1_SSSE3": "m", "CONFIG_CRYPTO_SHA256_SSSE3": "m", "CONFIG_CRYPTO_SHA512_SSSE3": "m", "CONFIG_CRYPTO_SM3_AVX_X86_64": "m", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "m", "CONFIG_CRYPTO_CRC32C_INTEL": "m", "CONFIG_CRYPTO_CRC32_PCLMUL": "m", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "y", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "m", "CONFIG_CRYPTO_DEV_PADLOCK_AES": "m", "CONFIG_CRYPTO_DEV_PADLOCK_SHA": "m", "CONFIG_CRYPTO_DEV_ATMEL_I2C": "m", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "m", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "m", "CONFIG_CRYPTO_DEV_CCP": "y", "CONFIG_CRYPTO_DEV_CCP_DD": "m", "CONFIG_CRYPTO_DEV_SP_CCP": "y", "CONFIG_CRYPTO_DEV_CCP_CRYPTO": "m", "CONFIG_CRYPTO_DEV_SP_PSP": "y", "CONFIG_CRYPTO_DEV_CCP_DEBUGFS": "not set", "CONFIG_CRYPTO_DEV_NITROX": "m", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "m", "CONFIG_CRYPTO_DEV_QAT": "m", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "m", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "m", "CONFIG_CRYPTO_DEV_QAT_C62X": "m", "CONFIG_CRYPTO_DEV_QAT_4XXX": "m", "CONFIG_CRYPTO_DEV_QAT_420XX": "m", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "m", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "m", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "m", "CONFIG_CRYPTO_DEV_QAT_ERROR_INJECTION": "not set", "CONFIG_CRYPTO_DEV_IAA_CRYPTO": "m", "CONFIG_CRYPTO_DEV_IAA_CRYPTO_STATS": "y", "CONFIG_CRYPTO_DEV_CHELSIO": "m", "CONFIG_CRYPTO_DEV_VIRTIO": "m", "CONFIG_CRYPTO_DEV_SAFEXCEL": "m", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "m", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "m", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST_RSA": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST_ECDSA": "y", "CONFIG_CHECK_CODESIGN_EKU": "y", "CONFIG_MODULE_SIG_KEY": "\\".kernel_signing_key.pem\\"", "CONFIG_MODULE_SIG_KEY_TYPE_RSA": "y", "CONFIG_MODULE_SIG_KEY_TYPE_ECDSA": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "y", "CONFIG_SYSTEM_BLACKLIST_HASH_LIST": "\\"\\"", "CONFIG_SYSTEM_REVOCATION_LIST": "y", "CONFIG_SYSTEM_REVOCATION_KEYS": "\\"\\"", "CONFIG_SYSTEM_BLACKLIST_AUTH_UPDATE": "y", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "m", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_LINEAR_RANGES": "y", "CONFIG_PACKING": "y", "CONFIG_BITREVERSE": "y", "CONFIG_HAVE_ARCH_BITREVERSE": "not set", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "m", "CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA": "m", "CONFIG_CRYPTO_LIB_CHACHA_GENERIC": "m", "CONFIG_CRYPTO_LIB_CHACHA": "m", "CONFIG_CRYPTO_ARCH_HAVE_LIB_CURVE25519": "m", "CONFIG_CRYPTO_LIB_CURVE25519_GENERIC": "m", "CONFIG_CRYPTO_LIB_CURVE25519": "m", "CONFIG_CRYPTO_LIB_DES": "m", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305": "m", "CONFIG_CRYPTO_LIB_POLY1305_GENERIC": "m", "CONFIG_CRYPTO_LIB_POLY1305": "m", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "m", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "y", "CONFIG_CRC16": "m", "CONFIG_CRC_T10DIF": "y", "CONFIG_CRC64_ROCKSOFT": "m", "CONFIG_CRC_ITU_T": "m", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "m", "CONFIG_CRC4": "m", "CONFIG_CRC7": "m", "CONFIG_LIBCRC32C": "m", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_AUDIT_ARCH_COMPAT_GENERIC": "not set", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_842_COMPRESS": "m", "CONFIG_842_DECOMPRESS": "m", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_COMPRESS": "m", "CONFIG_LZ4HC_COMPRESS": "m", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_IA64": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_MICROLZMA": "y", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_REED_SOLOMON": "m", "CONFIG_REED_SOLOMON_ENC8": "y", "CONFIG_REED_SOLOMON_DEC8": "y", "CONFIG_REED_SOLOMON_DEC16": "y", "CONFIG_BCH": "m", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_BTREE": "y", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_CLOSURES": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED": "y", "CONFIG_SWIOTLB": "y", "CONFIG_DMA_COHERENT_POOL": "y", "CONFIG_DMA_CMA": "y", "CONFIG_DMA_PERNUMA_CMA": "not set", "CONFIG_CMA_SIZE_MBYTES": "0", "CONFIG_CMA_SIZE_SEL_MBYTES": "y", "CONFIG_CMA_SIZE_SEL_PERCENTAGE": "not set", "CONFIG_CMA_SIZE_SEL_MIN": "not set", "CONFIG_CMA_SIZE_SEL_MAX": "not set", "CONFIG_CMA_ALIGNMENT": "8", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_IOMMU_HELPER": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPUMASK_OFFSTACK": "y", "CONFIG_FORCE_NR_CPUS": "not set", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "y", "CONFIG_MPILIB": "y", "CONFIG_SIGNATURE": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "y", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_FONT_6x11": "not set", "CONFIG_FONT_7x14": "not set", "CONFIG_FONT_PEARL_8x8": "not set", "CONFIG_FONT_ACORN_8x8": "not set", "CONFIG_FONT_MINI_4x6": "not set", "CONFIG_FONT_6x10": "not set", "CONFIG_FONT_10x18": "not set", "CONFIG_FONT_SUN8x16": "not set", "CONFIG_FONT_SUN12x22": "not set", "CONFIG_FONT_TER16x32": "y", "CONFIG_FONT_6x8": "y", "CONFIG_SG_SPLIT": "not set", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_NO_SG_CHAIN": "not set", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_MEMREGION": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_SBITMAP": "y", "CONFIG_PARMAN": "m", "CONFIG_OBJAGG": "m", "CONFIG_PLDMFW": "y", "CONFIG_ASN1_ENCODER": "y", "CONFIG_POLYNOMIAL": "m", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "y", "CONFIG_STACKTRACE_BUILD_ID": "y", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "y", "CONFIG_DYNAMIC_DEBUG_CORE": "y", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_LEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "not set", "CONFIG_DEBUG_INFO_DWARF4": "y", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_DEBUG_INFO_BTF": "y", "CONFIG_PAHOLE_HAS_SPLIT_BTF": "y", "CONFIG_PAHOLE_HAS_LANG_EXCLUDE": "y", "CONFIG_DEBUG_INFO_BTF_MODULES": "y", "CONFIG_MODULE_ALLOW_BTF_MISMATCH": "y", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "y", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B": "not set", "CONFIG_OBJTOOL": "y", "CONFIG_VMLINUX_MAP": "y", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "y", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "y", "CONFIG_DEBUG_PAGEALLOC": "y", "CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "y", "CONFIG_PAGE_TABLE_CHECK": "y", "CONFIG_PAGE_TABLE_CHECK_ENFORCED": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "y", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM_IRQSOFF": "not set", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_MEMORY_NOTIFIER_ERROR_INJECT": "m", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "not set", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "0", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STATIC_KEYS": "y", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_LOCKUP_DETECTOR": "y", "CONFIG_SOFTLOCKUP_DETECTOR": "y", "CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC": "not set", "CONFIG_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_HARDLOCKUP_DETECTOR": "y", "CONFIG_BOOTPARAM_HARDLOCKUP_PANIC": "y", "CONFIG_DETECT_HUNG_TASK": "y", "CONFIG_DEFAULT_HUNG_TASK_TIMEOUT": "480", "CONFIG_BOOTPARAM_HUNG_TASK_PANIC": "not set", "CONFIG_WQ_WATCHDOG": "y", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "y", "CONFIG_DEBUG_TIMEKEEPING": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "y", "CONFIG_CSD_LOCK_WAIT_DEBUG_DEFAULT": "not set", "CONFIG_NMI_CHECK_CPU": "y", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "y", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_DEBUG_CLOSURES": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_DEBUG_CREDENTIALS": "not set", "CONFIG_PROVE_RCU": "not set", "CONFIG_TORTURE_TEST": "m", "CONFIG_RCU_SCALE_TEST": "m", "CONFIG_RCU_TORTURE_TEST": "m", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "60", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "y", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "y", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACER_MAX_TRACE": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_RING_BUFFER_ALLOW_SWAP": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "y", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "y", "CONFIG_FUNCTION_PROFILER": "y", "CONFIG_STACK_TRACER": "y", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "y", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "y", "CONFIG_TIMERLAT_TRACER": "y", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "y", "CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP": "y", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_BPF_KPROBE_OVERRIDE": "not set", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_TRACING_MAP": "y", "CONFIG_SYNTH_EVENTS": "y", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "y", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "m", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "m", "CONFIG_SYNTH_EVENT_GEN_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_HIST_TRIGGERS_DEBUG": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "y", "CONFIG_SAMPLES": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "y", "CONFIG_EARLY_PRINTK_USB": "y", "CONFIG_X86_VERBOSE_BOOTUP": "not set", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "y", "CONFIG_EARLY_PRINTK_USB_XDBC": "y", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_IOMMU_DEBUG": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "not set", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "y", "CONFIG_UNWINDER_FRAME_POINTER": "not set", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "m", "CONFIG_PM_NOTIFIER_ERROR_INJECT": "m", "CONFIG_NETDEV_NOTIFIER_ERROR_INJECT": "m", "CONFIG_FUNCTION_ERROR_INJECTION": "y", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "not set", "CONFIG_FAIL_PAGE_ALLOC": "not set", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "not set", "CONFIG_FAIL_FUTEX": "not set", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_FUNCTION": "not set", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAIL_SUNRPC": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "m", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "m", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "m", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "m", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_STRING_SELFTEST": "not set", "CONFIG_TEST_STRING_HELPERS": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_PARMAN": "not set", "CONFIG_TEST_LKM": "m", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_USER_COPY": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "m", "CONFIG_TEST_SYSCTL": "m", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_DYNAMIC_DEBUG": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_LIVEPATCH": "m", "CONFIG_TEST_OBJAGG": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_HMM": "m", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "y", "CONFIG_HYPERV_TESTING": "not set", "CONFIG_SUSE_KERNEL": "y", "CONFIG_SUSE_PRODUCT_SLE": "y", "CONFIG_SUSE_PRODUCT_OPENSUSE_LEAP": "not set", "CONFIG_SUSE_PRODUCT_OPENSUSE_TUMBLEWEED": "not set", "CONFIG_SUSE_PRODUCT_SLFO": "not set", "CONFIG_SUSE_PRODUCT_CODE": "1", "CONFIG_SUSE_VERSION": "15", "CONFIG_SUSE_PATCHLEVEL": "6", "CONFIG_SUSE_AUXRELEASE": "0", "CONFIG_SUSE_HAVE_STABLE_KABI": "y", "CONFIG_SUSE_KERNEL_SUPPORTED": "y", "CONFIG_SUSE_KERNEL_RELEASED": "y"} {"id": "localhost", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Ubuntu 24.04 PC v2 (i440FX + PIIX, arch_caps fix, 1996)", "vendor": "QEMU", "version": "pc-i440fx-noble-v2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-3.0.0": "SMBIOS version 3.0.0", "dmi-3.0.0": "DMI version 3.0.0", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "1.16.3-debian-1.16.3-2", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "QEMU Virtual CPU version 2.5+", "vendor": "Advanced Micro Devices [AMD]", "physid": "400", "businfo": "cpu@0", "version": "15.107.1", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "1", "enabledcores": "1", "microcode": "16777317", "threads": "1"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "x86-64": "64bits extensions (x86-64)", "rep_good": true, "nopl": true, "cpuid": true, "extd_apicid": true, "pni": true, "cx16": true, "hypervisor": true, "lahf_lm": true, "svm": true, "3dnowprefetch": true, "vmmcall": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "440FX - 82441FX PMC [Natoma]", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "02", "width": 32, "clock": 33000000, "children": [{"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "ISA bridge", "product": "82371SB PIIX3 ISA [Natoma/Triton II]", "vendor": "Intel Corporation", "physid": "1", "businfo": "pci@0000:00:01.0", "version": "00", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "input", "claimed": true, "product": "PnP device PNP0303", "physid": "0", "configuration": {"driver": "i8042 kbd"}, "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "input", "claimed": true, "product": "PnP device PNP0f13", "physid": "1", "configuration": {"driver": "i8042 aux"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "storage", "claimed": true, "product": "PnP device PNP0700", "physid": "2", "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "printer", "claimed": true, "product": "PnP device PNP0400", "physid": "3", "configuration": {"driver": "parport_pc"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "communication", "claimed": true, "product": "PnP device PNP0501", "physid": "4", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:05", "class": "system", "claimed": true, "product": "PnP device PNP0b00", "physid": "5", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}]}, {"id": "ide", "class": "storage", "claimed": true, "handle": "PCI:0000:00:01.1", "description": "IDE interface", "product": "82371SB PIIX3 IDE [Natoma/Triton II]", "vendor": "Intel Corporation", "physid": "1.1", "businfo": "pci@0000:00:01.1", "logicalname": ["scsi0", "scsi1"], "version": "00", "width": 32, "clock": 33000000, "configuration": {"driver": "ata_piix", "latency": "0"}, "capabilities": {"ide": true, "isa_compat_mode": "ISA compatibility mode", "bus_master": "bus mastering", "emulated": "Emulated device"}, "children": [{"id": "disk", "class": "disk", "claimed": true, "handle": "GUID:4dcfef44-2bc3-40b2-959f-3e40383d66d1", "description": "ATA Disk", "product": "QEMU HARDDISK", "physid": "0", "businfo": "scsi@0:0.0.0", "logicalname": "/dev/sda", "dev": "8:0", "version": "2.5+", "serial": "QM00001", "units": "bytes", "size": 10737418240, "configuration": {"ansiversion": "5", "guid": "4dcfef44-2bc3-40b2-959f-3e40383d66d1", "logicalsectorsize": "512", "sectorsize": "512"}, "capabilities": {"gpt-1.00": "GUID Partition Table version 1.00", "partitioned": "Partitioned disk", "partitioned:gpt": "GUID partition table"}, "children": [{"id": "volume:0", "class": "volume", "claimed": true, "handle": "GUID:50b94961-a41b-461d-b16e-e0f18b3e8dff", "description": "BIOS Boot partition", "vendor": "EFI", "physid": "1", "businfo": "scsi@0:0.0.0,1", "logicalname": "/dev/sda1", "dev": "8:1", "serial": "50b94961-a41b-461d-b16e-e0f18b3e8dff", "capacity": 2096640, "configuration": {"name": "p.legacy"}, "capabilities": {"nofs": "No filesystem"}}, {"id": "volume:1", "class": "volume", "claimed": true, "handle": "GUID:bb545a9b-ceb8-4128-acff-49312fb3ae63", "description": "Windows FAT volume", "vendor": "mkfs.fat", "physid": "2", "businfo": "scsi@0:0.0.0,2", "logicalname": ["/dev/sda2", "/boot/efi"], "dev": "8:2", "version": "FAT16", "serial": "611a-b413", "size": 18446744073709549568, "configuration": {"FATs": "2", "filesystem": "fat", "label": "EFI", "mount.fstype": "vfat", "mount.options": "rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro", "name": "p.UEFI", "state": "mounted"}, "capabilities": {"boot": "Contains boot code", "fat": "Windows FAT volume", "initialized": "initialized volume"}}, {"id": "volume:2", "class": "volume", "claimed": true, "handle": "GUID:97650326-4901-4605-b585-00c0ef63d6bb", "description": "EFI partition", "physid": "3", "businfo": "scsi@0:0.0.0,3", "logicalname": ["/dev/sda3", "/"], "dev": "8:3", "serial": "97650326-4901-4605-b585-00c0ef63d6bb", "capacity": 10713283584, "configuration": {"mount.fstype": "xfs", "mount.options": "rw,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota", "name": "p.lxroot", "state": "mounted"}}]}, {"id": "cdrom", "class": "disk", "claimed": true, "handle": "SCSI:01:00:00:00", "description": "DVD reader", "product": "QEMU DVD-ROM", "vendor": "QEMU", "physid": "1", "businfo": "scsi@1:0.0.0", "logicalname": ["/dev/cdrom", "/dev/dvd", "/dev/sr0"], "dev": "11:0", "version": "2.5+", "configuration": {"ansiversion": "5", "status": "ready"}, "capabilities": {"removable": "support is removable", "audio": "Audio CD playback", "dvd": "DVD playback"}, "children": [{"id": "medium", "class": "disk", "claimed": true, "physid": "0", "logicalname": "/dev/cdrom", "dev": "11:0"}]}]}, {"id": "bridge", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:01.3", "description": "Bridge", "product": "82371AB/EB/MB PIIX4 ACPI", "vendor": "Intel Corporation", "physid": "1.3", "businfo": "pci@0000:00:01.3", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "piix4_smbus", "latency": "0"}, "capabilities": {"bridge": true}}, {"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "2", "businfo": "pci@0000:00:02.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Ethernet interface", "product": "82540EM Gigabit Ethernet Controller", "vendor": "Intel Corporation", "physid": "3", "businfo": "pci@0000:00:03.0", "logicalname": "eth0", "version": "03", "serial": "52:54:00:12:34:56", "units": "bit/s", "size": 1000000000, "capacity": 1000000000, "width": 32, "clock": 33000000, "configuration": {"autonegotiation": "on", "broadcast": "yes", "driver": "e1000", "driverversion": "6.4.0-150600.23.92-default", "duplex": "full", "ip": "10.0.2.15", "latency": "0", "link": "yes", "multicast": "yes", "port": "twisted pair", "speed": "1Gbit/s"}, "capabilities": {"bus_master": "bus mastering", "rom": "extension ROM", "ethernet": true, "physical": "Physical interface", "tp": "twisted pair", "10bt": "10Mbit/s", "10bt-fd": "10Mbit/s (full duplex)", "100bt": "100Mbit/s", "100bt-fd": "100Mbit/s (full duplex)", "1000bt-fd": "1Gbit/s (full duplex)", "autonegotiation": "Auto-negotiation"}}]}]}, {"id": "input:0", "class": "input", "claimed": true, "product": "AT Translated Set 2 keyboard", "physid": "1", "logicalname": ["input0", "/dev/input/event0", "input0::capslock", "input0::numlock", "input0::scrolllock"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:1", "class": "input", "claimed": true, "product": "ImExPS/2 Generic Explorer Mouse", "physid": "2", "logicalname": ["input2", "/dev/input/event1", "/dev/input/mouse0"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:2", "class": "input", "claimed": true, "product": "Power Button", "physid": "3", "logicalname": ["input3", "/dev/input/event2"], "capabilities": {"platform": true}}, {"id": "input:3", "class": "input", "claimed": true, "product": "PC Speaker", "physid": "4", "logicalname": ["input4", "/dev/input/event3"], "capabilities": {"isa": "ISA bus"}}]} -2 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "b4b8a360-85de-485d-825e-62aba5b67718", "size": 10867609600, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-04-19 19:17:07", "mounted": "2026-04-19 19:17:07", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} -\. - --- 3) Util run result table -COPY util_run_result (id, experiment_id, util_type, command, result, description, started_at, ended_at) FROM stdin; -1 1 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626464, "timestamp_ms": 1776626464825, "time": "Sun Apr 19 19:21:04 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10184704, "io_kbytes": 9946, "bw_bytes": 2036533, "bw": 1988, "iops": 3977.604479, "runtime": 5001, "total_ios": 19892, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 85600, "max": 10274701, "mean": 146591.088176, "stddev": 294087.280722, "N": 19892}, "clat_ns": {"min": 4990, "max": 5936797, "mean": 91427.784637, "stddev": 130891.563759, "N": 19892, "percentile": {"1.000000": 5408, "5.000000": 5664, "10.000000": 6240, "20.000000": 65280, "30.000000": 75264, "40.000000": 82432, "50.000000": 88576, "60.000000": 92672, "70.000000": 96768, "80.000000": 103936, "90.000000": 132096, "95.000000": 160768, "99.000000": 236544, "99.500000": 309248, "99.900000": 1925120, "99.950000": 3457024, "99.990000": 5472256}}, "lat_ns": {"min": 142870, "max": 10301891, "mean": 240528.31118, "stddev": 313140.97562, "N": 19892}, "bw_min": 860, "bw_max": 2379, "bw_agg": 98.199833, "bw_mean": 1953.25, "bw_dev": 730.713977, "bw_samples": 4, "iops_min": 1721, "iops_max": 4758, "iops_mean": 3907.0, "iops_stddev": 1461.065137, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.74, "sys_cpu": 51.72, "ctx": 19909, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.200885, "20": 0.487633, "50": 0.01, "100": 63.010255, "250": 23.446612, "500": 0.477579, "750": 0.110597, "1000": 0.030163}, "latency_ms": {"2": 0.135733, "4": 0.075407, "10": 0.020109, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 1, "write_ios": 19313, "read_merges": 0, "write_merges": 2415, "read_ticks": 1, "write_ticks": 2550, "in_queue": 2550, "util": 74.688129}]} 2026-04-19 19:20:55.904219 2026-04-19 19:16:23.943354 -2 1 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626511, "timestamp_ms": 1776626511408, "time": "Sun Apr 19 19:21:51 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13039104, "io_kbytes": 12733, "bw_bytes": 2607299, "bw": 2546, "iops": 5092.381524, "runtime": 5001, "total_ios": 25467, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 71611, "max": 3896602, "mean": 92774.550163, "stddev": 33559.587384, "N": 25467}, "clat_ns": {"min": 5010, "max": 7364832, "mean": 93155.172498, "stddev": 233810.530468, "N": 25467, "percentile": {"1.000000": 46336, "5.000000": 47872, "10.000000": 49408, "20.000000": 50944, "30.000000": 52992, "40.000000": 60160, "50.000000": 67072, "60.000000": 74240, "70.000000": 79360, "80.000000": 84480, "90.000000": 111104, "95.000000": 140288, "99.000000": 659456, "99.500000": 1564672, "99.900000": 3817472, "99.950000": 4816896, "99.990000": 6520832}}, "lat_ns": {"min": 121021, "max": 7506972, "mean": 187942.868339, "stddev": 240508.940341, "N": 25467}, "bw_min": 1206, "bw_max": 2968, "bw_agg": 94.808305, "bw_mean": 2414.0, "bw_dev": 813.396172, "bw_samples": 4, "iops_min": 2413, "iops_max": 5936, "iops_mean": 4828.5, "iops_stddev": 1626.411285, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.96, "sys_cpu": 60.56, "ctx": 25350, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.121726, "20": 0.039267, "50": 14.120234, "100": 73.451918, "250": 10.947501, "500": 0.204186, "750": 0.133506, "1000": 0.10602}, "latency_ms": {"2": 0.526171, "4": 0.270939, "10": 0.078533, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24603, "write_ios": 2, "read_merges": 0, "write_merges": 1, "read_ticks": 2937, "write_ticks": 164, "in_queue": 3103, "util": 77.304821}]} 2026-04-19 19:21:06.936225 2026-04-19 19:16:23.943354 -3 1 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626535, "timestamp_ms": 1776626535980, "time": "Sun Apr 19 19:22:15 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12268032, "io_kbytes": 11980, "bw_bytes": 2453115, "bw": 2395, "iops": 4791.241752, "runtime": 5001, "total_ios": 23961, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76630, "max": 3688791, "mean": 94875.718376, "stddev": 35988.076936, "N": 23961}, "clat_ns": {"min": 5210, "max": 10403761, "mean": 102347.359042, "stddev": 248171.711253, "N": 23961, "percentile": {"1.000000": 50432, "5.000000": 52480, "10.000000": 54016, "20.000000": 57600, "30.000000": 64768, "40.000000": 71168, "50.000000": 76288, "60.000000": 80384, "70.000000": 83456, "80.000000": 90624, "90.000000": 111104, "95.000000": 138240, "99.000000": 978944, "99.500000": 1695744, "99.900000": 3555328, "99.950000": 5341184, "99.990000": 7045120}}, "lat_ns": {"min": 126160, "max": 10531192, "mean": 199178.149827, "stddev": 254925.009754, "N": 23961}, "bw_min": 1039, "bw_max": 2864, "bw_agg": 96.38423, "bw_mean": 2309.5, "bw_dev": 860.292392, "bw_samples": 4, "iops_min": 2079, "iops_max": 5728, "iops_mean": 4619.25, "iops_stddev": 1720.092512, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.02, "sys_cpu": 61.22, "ctx": 23911, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.095989, "20": 0.058428, "50": 0.584283, "100": 86.056508, "250": 11.631401, "500": 0.296315, "750": 0.112683, "1000": 0.171111}, "latency_ms": {"2": 0.663578, "4": 0.262927, "10": 0.062602, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23048, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2878, "write_ticks": 0, "in_queue": 2879, "util": 73.848651}]} 2026-04-19 19:21:53.55201 2026-04-19 19:16:23.943354 -4 1 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626546, "timestamp_ms": 1776626546161, "time": "Sun Apr 19 19:22:26 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5148672, "io_kbytes": 5028, "bw_bytes": 1029528, "bw": 1005, "iops": 2010.79784, "runtime": 5001, "total_ios": 10056, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 95641, "max": 180952410, "mean": 475215.956444, "stddev": 1857666.237954, "N": 10056}, "clat_ns": {"min": 4600, "max": 2235987, "mean": 7903.572693, "stddev": 27790.198859, "N": 10056, "percentile": {"1.000000": 4704, "5.000000": 4832, "10.000000": 4896, "20.000000": 4960, "30.000000": 5024, "40.000000": 5088, "50.000000": 5152, "60.000000": 5216, "70.000000": 5408, "80.000000": 6368, "90.000000": 8512, "95.000000": 9152, "99.000000": 114176, "99.500000": 134144, "99.900000": 228352, "99.950000": 259072, "99.990000": 444416}}, "lat_ns": {"min": 181680, "max": 181011890, "mean": 486452.340394, "stddev": 1858631.826684, "N": 10056}, "bw_min": 529, "bw_max": 1206, "bw_agg": 97.274868, "bw_mean": 978.0, "bw_dev": 305.431935, "bw_samples": 4, "iops_min": 1059, "iops_max": 2413, "iops_mean": 1957.0, "iops_stddev": 610.863869, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 0.0, "sys_cpu": 68.7, "ctx": 10128, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.161496, "20": 2.317025, "50": 0.149165, "100": 0.119332, "250": 1.193317, "500": 0.049722, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 53, "write_ios": 9618, "read_merges": 0, "write_merges": 16656, "read_ticks": 23, "write_ticks": 1960, "in_queue": 2158, "util": 70.087203}]} 2026-04-19 19:22:18.110781 2026-04-19 19:16:23.943354 -5 1 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626557, "timestamp_ms": 1776626557278, "time": "Sun Apr 19 19:22:37 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 57675776, "io_kbytes": 56324, "bw_bytes": 11530542, "bw": 11260, "iops": 2815.07397, "runtime": 5002, "total_ios": 14081, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 92931, "max": 4213093, "mean": 112594.573894, "stddev": 46729.038715, "N": 14081}, "clat_ns": {"min": 6820, "max": 10675272, "mean": 229038.056885, "stddev": 343384.572738, "N": 14081, "percentile": {"1.000000": 142336, "5.000000": 150528, "10.000000": 154624, "20.000000": 162816, "30.000000": 168960, "40.000000": 175104, "50.000000": 181248, "60.000000": 187392, "70.000000": 195584, "80.000000": 222208, "90.000000": 264192, "95.000000": 305152, "99.000000": 1679360, "99.500000": 2539520, "99.900000": 5079040, "99.950000": 6324224, "99.990000": 8355840}}, "lat_ns": {"min": 226071, "max": 10810032, "mean": 343994.237554, "stddev": 350803.150179, "N": 14081}, "bw_min": 10352, "bw_max": 13516, "bw_agg": 100.0, "bw_mean": 12409.5, "bw_dev": 1453.14498, "bw_samples": 4, "iops_min": 2588, "iops_max": 3379, "iops_mean": 3102.25, "iops_stddev": 363.178904, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 20.115977, "sys_cpu": 20.115977, "ctx": 14100, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.078119, "20": 0.19885, "50": 0.0, "100": 0.0, "250": 87.238122, "500": 10.709467, "750": 0.205951, "1000": 0.142035}, "latency_ms": {"2": 0.667566, "4": 0.553938, "10": 0.19885, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 13870, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2013, "in_queue": 2013, "util": 76.236429}]} 2026-04-19 19:22:29.639751 2026-04-19 19:16:23.943354 -6 1 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626574, "timestamp_ms": 1776626574899, "time": "Sun Apr 19 19:22:54 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 102719488, "io_kbytes": 100312, "bw_bytes": 20539789, "bw": 20058, "iops": 5014.597081, "runtime": 5001, "total_ios": 25078, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76020, "max": 1239704, "mean": 93790.466465, "stddev": 26821.263182, "N": 25078}, "clat_ns": {"min": 3830, "max": 9406988, "mean": 95393.934564, "stddev": 232904.695431, "N": 25078, "percentile": {"1.000000": 47872, "5.000000": 50432, "10.000000": 51968, "20.000000": 54016, "30.000000": 57600, "40.000000": 64256, "50.000000": 72192, "60.000000": 77312, "70.000000": 82432, "80.000000": 87552, "90.000000": 101888, "95.000000": 127488, "99.000000": 700416, "99.500000": 1646592, "99.900000": 3948544, "99.950000": 4620288, "99.990000": 6127616}}, "lat_ns": {"min": 124300, "max": 9526288, "mean": 191147.071298, "stddev": 238108.615626, "N": 25078}, "bw_min": 21866, "bw_max": 23560, "bw_agg": 100.0, "bw_mean": 22848.5, "bw_dev": 710.523516, "bw_samples": 4, "iops_min": 5466, "iops_max": 5890, "iops_mean": 5712.0, "iops_stddev": 177.861369, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 10.39792, "sys_cpu": 57.368526, "ctx": 24950, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.011963, "10": 0.191403, "20": 0.0319, "50": 2.883005, "100": 85.915942, "250": 9.657867, "500": 0.207353, "750": 0.119627, "1000": 0.055826}, "latency_ms": {"2": 0.65396, "4": 0.17944, "10": 0.091714, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 25078, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3025, "write_ticks": 0, "in_queue": 3024, "util": 75.407902}]} 2026-04-19 19:22:39.437074 2026-04-19 19:16:23.943354 -7 1 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626591, "timestamp_ms": 1776626591016, "time": "Sun Apr 19 19:23:11 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 105783296, "io_kbytes": 103304, "bw_bytes": 21152428, "bw": 20656, "iops": 5164.167167, "runtime": 5001, "total_ios": 25826, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77520, "max": 3991592, "mean": 92896.137613, "stddev": 30247.647723, "N": 25826}, "clat_ns": {"min": 5080, "max": 5485976, "mean": 89348.049408, "stddev": 185633.756319, "N": 25826, "percentile": {"1.000000": 48896, "5.000000": 51968, "10.000000": 52992, "20.000000": 55552, "30.000000": 60672, "40.000000": 66048, "50.000000": 74240, "60.000000": 79360, "70.000000": 83456, "80.000000": 86528, "90.000000": 97792, "95.000000": 124416, "99.000000": 218112, "99.500000": 1302528, "99.900000": 3555328, "99.950000": 4227072, "99.990000": 5210112}}, "lat_ns": {"min": 124571, "max": 5616827, "mean": 184344.528034, "stddev": 191726.4719, "N": 25826}, "bw_min": 13710, "bw_max": 23064, "bw_agg": 97.600446, "bw_mean": 20161.5, "bw_dev": 4363.592213, "bw_samples": 4, "iops_min": 3427, "iops_max": 5766, "iops_mean": 5040.25, "iops_stddev": 1091.144468, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 9.32, "sys_cpu": 60.74, "ctx": 25705, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.13165, "20": 0.038721, "50": 1.692093, "100": 88.771006, "250": 8.460466, "500": 0.139394, "750": 0.123906, "1000": 0.054209}, "latency_ms": {"2": 0.383335, "4": 0.151011, "10": 0.054209, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 25269, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3072, "write_ticks": 0, "in_queue": 3072, "util": 81.887245}]} 2026-04-19 19:22:56.977941 2026-04-19 19:16:23.943354 -8 1 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626600, "timestamp_ms": 1776626600779, "time": "Sun Apr 19 19:23:20 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 43134976, "io_kbytes": 42124, "bw_bytes": 8625270, "bw": 8423, "iops": 2105.778844, "runtime": 5001, "total_ios": 10531, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 99441, "max": 837612, "mean": 118172.248315, "stddev": 25172.622108, "N": 10531}, "clat_ns": {"min": 5650, "max": 9215658, "mean": 341030.668882, "stddev": 416128.467866, "N": 10531, "percentile": {"1.000000": 183296, "5.000000": 199680, "10.000000": 209920, "20.000000": 226304, "30.000000": 242688, "40.000000": 264192, "50.000000": 284672, "60.000000": 301056, "70.000000": 313344, "80.000000": 337920, "90.000000": 395264, "95.000000": 460800, "99.000000": 2605056, "99.500000": 3686400, "99.900000": 5341184, "99.950000": 6193152, "99.990000": 8454144}}, "lat_ns": {"min": 270171, "max": 9381658, "mean": 461846.875795, "stddev": 423136.973982, "N": 10531}, "bw_min": 5356, "bw_max": 9938, "bw_agg": 95.534725, "bw_mean": 8047.0, "bw_dev": 2032.135494, "bw_samples": 4, "iops_min": 1339, "iops_max": 2484, "iops_mean": 2011.5, "iops_stddev": 507.781121, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 16.58, "sys_cpu": 16.6, "ctx": 10535, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.047479, "20": 0.0, "50": 0.0, "100": 0.0, "250": 33.311177, "500": 62.881018, "750": 1.481341, "1000": 0.351344}, "latency_ms": {"2": 0.626721, "4": 0.959073, "10": 0.341848, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 2, "write_ios": 10233, "read_merges": 0, "write_merges": 0, "read_ticks": 150, "write_ticks": 1591, "in_queue": 1742, "util": 81.79992}]} 2026-04-19 19:23:13.596143 2026-04-19 19:16:23.943354 -9 1 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626622, "timestamp_ms": 1776626622454, "time": "Sun Apr 19 19:23:42 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 16, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1975517184, "io_kbytes": 1929216, "bw_bytes": 128064124, "bw": 125062, "iops": 61.065733, "runtime": 15426, "total_ios": 942, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 196181, "max": 14248991155, "mean": 15553627.828025, "stddev": 464243446.546048, "N": 942}, "clat_ns": {"min": 10830, "max": 8181675, "mean": 798438.123142, "stddev": 563780.704184, "N": 942, "percentile": {"1.000000": 325632, "5.000000": 346112, "10.000000": 358400, "20.000000": 391168, "30.000000": 626688, "40.000000": 724992, "50.000000": 765952, "60.000000": 815104, "70.000000": 864256, "80.000000": 921600, "90.000000": 1073152, "95.000000": 1269760, "99.000000": 3653632, "99.500000": 4489216, "99.900000": 8159232, "99.950000": 8159232, "99.990000": 8159232}}, "lat_ns": {"min": 805232, "max": 14250109689, "mean": 16356408.521231, "stddev": 464253992.923384, "N": 942}, "bw_min": 227100, "bw_max": 1698141, "bw_agg": 100.0, "bw_mean": 962620.5, "bw_dev": 1040183.066503, "bw_samples": 2, "iops_min": 110, "iops_max": 829, "iops_mean": 469.5, "iops_stddev": 508.409776, "iops_samples": 2}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 15426, "usr_cpu": 0.0, "sys_cpu": 1.957734, "ctx": 1241, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.106157, "50": 0.0, "100": 0.0, "250": 0.0, "500": 27.070064, "750": 19.10828, "1000": 39.808917}, "latency_ms": {"2": 11.04034, "4": 2.123142, "10": 0.7431, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 1883, "read_merges": 0, "write_merges": 1, "read_ticks": 0, "write_ticks": 1158, "in_queue": 1158, "util": 6.858622}]} 2026-04-19 19:23:24.120832 2026-04-19 19:16:23.943354 -10 1 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626648, "timestamp_ms": 1776626648087, "time": "Sun Apr 19 19:24:08 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12868124672, "io_kbytes": 12566528, "bw_bytes": 2573110312, "bw": 2512803, "iops": 1226.954609, "runtime": 5001, "total_ios": 6136, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 189611, "max": 9449758, "mean": 579981.670143, "stddev": 364955.739935, "N": 6136}, "clat_ns": {"min": 6190, "max": 5388156, "mean": 218252.665254, "stddev": 251058.224408, "N": 6136, "percentile": {"1.000000": 129536, "5.000000": 136192, "10.000000": 142336, "20.000000": 152576, "30.000000": 162816, "40.000000": 175104, "50.000000": 183296, "60.000000": 191488, "70.000000": 203776, "80.000000": 226304, "90.000000": 272384, "95.000000": 329728, "99.000000": 880640, "99.500000": 1875968, "99.900000": 4227072, "99.950000": 4554752, "99.990000": 5406720}}, "lat_ns": {"min": 526201, "max": 9968620, "mean": 802554.118155, "stddev": 484086.608379, "N": 6136}, "bw_min": 1906829, "bw_max": 2950265, "bw_agg": 96.186329, "bw_mean": 2416973.75, "bw_dev": 540186.786996, "bw_samples": 4, "iops_min": 931, "iops_max": 1440, "iops_mean": 1180.0, "iops_stddev": 263.607031, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.28, "sys_cpu": 38.98, "ctx": 12237, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.081486, "20": 0.244459, "50": 0.032595, "100": 0.081486, "250": 86.082138, "500": 11.619948, "750": 0.749674, "1000": 0.228162}, "latency_ms": {"2": 0.440026, "4": 0.325945, "10": 0.114081, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 12138, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3298, "write_ticks": 0, "in_queue": 3298, "util": 70.353364}]} 2026-04-19 19:23:44.79581 2026-04-19 19:16:23.943354 -11 1 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626665, "timestamp_ms": 1776626665031, "time": "Sun Apr 19 19:24:25 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12434014208, "io_kbytes": 12142592, "bw_bytes": 2486305580, "bw": 2428032, "iops": 1185.562887, "runtime": 5001, "total_ios": 5929, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 189090, "max": 16204478, "mean": 586208.965593, "stddev": 416853.842503, "N": 5929}, "clat_ns": {"min": 9940, "max": 6061108, "mean": 239215.191938, "stddev": 282641.128478, "N": 5929, "percentile": {"1.000000": 132096, "5.000000": 140288, "10.000000": 146432, "20.000000": 158720, "30.000000": 171008, "40.000000": 181248, "50.000000": 191488, "60.000000": 201728, "70.000000": 222208, "80.000000": 252928, "90.000000": 325632, "95.000000": 423936, "99.000000": 921600, "99.500000": 2310144, "99.900000": 4358144, "99.950000": 5931008, "99.990000": 6062080}}, "lat_ns": {"min": 518772, "max": 16603939, "mean": 829828.959858, "stddev": 552720.469559, "N": 5929}, "bw_min": 1676007, "bw_max": 2834432, "bw_agg": 95.426429, "bw_mean": 2316985.75, "bw_dev": 486263.172801, "bw_samples": 4, "iops_min": 818, "iops_max": 1384, "iops_mean": 1131.25, "iops_stddev": 237.592614, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.4, "sys_cpu": 38.86, "ctx": 11597, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.016866, "20": 0.050599, "50": 0.0, "100": 0.0, "250": 79.558104, "500": 17.844493, "750": 1.231236, "1000": 0.337325}, "latency_ms": {"2": 0.40479, "4": 0.40479, "10": 0.151796, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 11676, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3329, "write_ticks": 0, "in_queue": 3328, "util": 77.682999}]} 2026-04-19 19:24:10.303651 2026-04-19 19:16:23.943354 -12 1 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626675, "timestamp_ms": 1776626675278, "time": "Sun Apr 19 19:24:35 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8040480768, "io_kbytes": 7852032, "bw_bytes": 1607453172, "bw": 1569778, "iops": 766.493403, "runtime": 5002, "total_ios": 3834, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 525401, "max": 6101789, "mean": 882590.464528, "stddev": 469098.755342, "N": 3834}, "clat_ns": {"min": 8590, "max": 5124885, "mean": 398916.492958, "stddev": 320898.613699, "N": 3834, "percentile": {"1.000000": 226304, "5.000000": 244736, "10.000000": 254976, "20.000000": 272384, "30.000000": 288768, "40.000000": 309248, "50.000000": 329728, "60.000000": 358400, "70.000000": 387072, "80.000000": 432128, "90.000000": 522240, "95.000000": 667648, "99.000000": 2023424, "99.500000": 2637824, "99.900000": 3915776, "99.950000": 4751360, "99.990000": 5144576}}, "lat_ns": {"min": 743062, "max": 6813741, "mean": 1286406.815336, "stddev": 622970.361727, "N": 3834}, "bw_min": 1485362, "bw_max": 1747244, "bw_agg": 100.0, "bw_mean": 1619159.5, "bw_dev": 111582.580509, "bw_samples": 4, "iops_min": 725, "iops_max": 853, "iops_mean": 790.5, "iops_stddev": 54.537449, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 4.479104, "sys_cpu": 24.095181, "ctx": 7686, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.026082, "20": 0.052165, "50": 0.026082, "100": 0.026082, "250": 7.668232, "500": 80.725091, "750": 7.642149, "1000": 1.382368}, "latency_ms": {"2": 1.382368, "4": 0.991132, "10": 0.078247, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7498, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3476, "in_queue": 3476, "util": 85.043164}]} 2026-04-19 19:24:27.171949 2026-04-19 19:16:23.943354 -13 1 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626689, "timestamp_ms": 1776626689120, "time": "Sun Apr 19 19:24:49 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 8, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7541358592, "io_kbytes": 7364608, "bw_bytes": 1070151637, "bw": 1045069, "iops": 255.144033, "runtime": 7047, "total_ios": 1798, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1166754, "max": 2986369020, "mean": 3472833.807008, "stddev": 70390828.772524, "N": 1798}, "clat_ns": {"min": 208581, "max": 3850081, "mean": 420699.80089, "stddev": 289605.210703, "N": 1798, "percentile": {"1.000000": 261120, "5.000000": 280576, "10.000000": 296960, "20.000000": 313344, "30.000000": 329728, "40.000000": 342016, "50.000000": 362496, "60.000000": 387072, "70.000000": 415744, "80.000000": 448512, "90.000000": 522240, "95.000000": 634880, "99.000000": 1925120, "99.500000": 2867200, "99.900000": 3784704, "99.950000": 3850240, "99.990000": 3850240}}, "lat_ns": {"min": 1418915, "max": 2986903711, "mean": 3899811.647942, "stddev": 70394867.044613, "N": 1798}, "bw_min": 110481, "bw_max": 1939564, "bw_agg": 100.0, "bw_mean": 1471354.2, "bw_dev": 765860.702976, "bw_samples": 5, "iops_min": 26, "iops_max": 473, "iops_mean": 358.8, "iops_stddev": 187.287747, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 7046, "usr_cpu": 2.980414, "sys_cpu": 10.615952, "ctx": 7206, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.389321, "500": 87.430478, "750": 9.010011, "1000": 1.334816}, "latency_ms": {"2": 0.945495, "4": 0.889878, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7197, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3127, "in_queue": 3126, "util": 50.042992}]} 2026-04-19 19:24:38.487441 2026-04-19 19:16:23.943354 -65 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:34:12' --until '2026-04-19 19:36:22' 55 OOM records. 2026-04-19 19:34:12.544933 2026-04-19 19:36:22.129231 -14 1 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626704, "timestamp_ms": 1776626704986, "time": "Sun Apr 19 19:25:04 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14701035520, "io_kbytes": 14356480, "bw_bytes": 2939619180, "bw": 2870721, "iops": 700.859828, "runtime": 5001, "total_ios": 3505, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 691532, "max": 7017751, "mean": 1233534.876462, "stddev": 440016.665387, "N": 3505}, "clat_ns": {"min": 6410, "max": 6054549, "mean": 174760.194579, "stddev": 187754.197642, "N": 3505, "percentile": {"1.000000": 119296, "5.000000": 124416, "10.000000": 127488, "20.000000": 134144, "30.000000": 140288, "40.000000": 144384, "50.000000": 148480, "60.000000": 156672, "70.000000": 168960, "80.000000": 185344, "90.000000": 216064, "95.000000": 248832, "99.000000": 391168, "99.500000": 1138688, "99.900000": 3325952, "99.950000": 4145152, "99.990000": 6062080}}, "lat_ns": {"min": 976233, "max": 8529086, "mean": 1413173.625963, "stddev": 522832.324116, "N": 3505}, "bw_min": 2144159, "bw_max": 3317760, "bw_agg": 100.0, "bw_mean": 2943722.5, "bw_dev": 544081.412732, "bw_samples": 4, "iops_min": 523, "iops_max": 810, "iops_mean": 718.5, "iops_stddev": 133.047611, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.18, "sys_cpu": 25.94, "ctx": 14008, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.057061, "20": 0.114123, "50": 0.028531, "100": 0.0, "250": 94.89301, "500": 4.136947, "750": 0.114123, "1000": 0.114123}, "latency_ms": {"2": 0.313837, "4": 0.171184, "10": 0.057061, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13503, "write_ios": 28, "read_merges": 0, "write_merges": 15, "read_ticks": 3594, "write_ticks": 10, "in_queue": 3605, "util": 86.473332}]} 2026-04-19 19:24:51.275363 2026-04-19 19:16:23.943354 -15 1 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626721, "timestamp_ms": 1776626721449, "time": "Sun Apr 19 19:25:21 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14717812736, "io_kbytes": 14372864, "bw_bytes": 2942385592, "bw": 2873423, "iops": 701.519392, "runtime": 5002, "total_ios": 3509, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 842813, "max": 11554424, "mean": 1239354.619835, "stddev": 360856.208176, "N": 3509}, "clat_ns": {"min": 6870, "max": 2907319, "mean": 166117.867199, "stddev": 96950.980458, "N": 3509, "percentile": {"1.000000": 117248, "5.000000": 124416, "10.000000": 127488, "20.000000": 134144, "30.000000": 138240, "40.000000": 144384, "50.000000": 148480, "60.000000": 154624, "70.000000": 164864, "80.000000": 181248, "90.000000": 214016, "95.000000": 246784, "99.000000": 370688, "99.500000": 497664, "99.900000": 2023424, "99.950000": 2703360, "99.990000": 2899968}}, "lat_ns": {"min": 965473, "max": 12465327, "mean": 1410348.502137, "stddev": 404285.027856, "N": 3509}, "bw_min": 2598361, "bw_max": 3081206, "bw_agg": 99.092496, "bw_mean": 2847347.75, "bw_dev": 202047.20367, "bw_samples": 4, "iops_min": 634, "iops_max": 752, "iops_mean": 695.0, "iops_stddev": 49.382858, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 0.819836, "sys_cpu": 32.313537, "ctx": 13985, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.056996, "20": 0.113993, "50": 0.028498, "100": 0.028498, "250": 94.898832, "500": 4.388715, "750": 0.256483, "1000": 0.056996}, "latency_ms": {"2": 0.056996, "4": 0.113993, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13845, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3792, "write_ticks": 0, "in_queue": 3792, "util": 85.295283}]} 2026-04-19 19:25:07.145501 2026-04-19 19:16:23.943354 -16 1 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626743, "timestamp_ms": 1776626743955, "time": "Sun Apr 19 19:25:43 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 18, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6337593344, "io_kbytes": 6189056, "bw_bytes": 380567666, "bw": 371648, "iops": 90.734402, "runtime": 16653, "total_ios": 1511, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1289394, "max": 12855807793, "mean": 10674308.725347, "stddev": 330670990.878579, "N": 1511}, "clat_ns": {"min": 12630, "max": 5273106, "mean": 318393.287889, "stddev": 349580.580063, "N": 1511, "percentile": {"1.000000": 171008, "5.000000": 179200, "10.000000": 185344, "20.000000": 193536, "30.000000": 207872, "40.000000": 226304, "50.000000": 244736, "60.000000": 268288, "70.000000": 301056, "80.000000": 346112, "90.000000": 436224, "95.000000": 552960, "99.000000": 2088960, "99.500000": 3096576, "99.900000": 4947968, "99.950000": 5275648, "99.990000": 5275648}}, "lat_ns": {"min": 1451494, "max": 12856511165, "mean": 10999543.385837, "stddev": 330681172.525735, "N": 1511}, "bw_min": 1449984, "bw_max": 1810432, "bw_agg": 100.0, "bw_mean": 1545875.75, "bw_dev": 176498.957044, "bw_samples": 4, "iops_min": 354, "iops_max": 442, "iops_mean": 377.25, "iops_stddev": 43.200116, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 16652, "usr_cpu": 1.441268, "sys_cpu": 3.993514, "ctx": 6058, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.132363, "50": 0.066181, "100": 0.0, "250": 51.753805, "500": 41.495698, "750": 3.639974, "1000": 1.191264}, "latency_ms": {"2": 0.661813, "4": 0.860357, "10": 0.198544, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 6043, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2789, "in_queue": 2789, "util": 20.398635}]} 2026-04-19 19:25:24.141458 2026-04-19 19:16:23.943354 -17 1 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626757, "timestamp_ms": 1776626757824, "time": "Sun Apr 19 19:25:57 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10354688, "io_kbytes": 10112, "bw_bytes": 2069282, "bw": 2020, "iops": 4041.566747, "runtime": 5004, "total_ios": 20224, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 85810, "max": 177958330, "mean": 145852.439181, "stddev": 1271340.477486, "N": 20224}, "clat_ns": {"min": 4980, "max": 10837762, "mean": 88156.702581, "stddev": 160341.91331, "N": 20224, "percentile": {"1.000000": 5472, "5.000000": 5728, "10.000000": 6176, "20.000000": 63744, "30.000000": 68096, "40.000000": 77312, "50.000000": 84480, "60.000000": 90624, "70.000000": 96768, "80.000000": 102912, "90.000000": 120320, "95.000000": 150528, "99.000000": 218112, "99.500000": 261120, "99.900000": 2088960, "99.950000": 3391488, "99.990000": 5799936}}, "lat_ns": {"min": 142791, "max": 178736773, "mean": 236692.464597, "stddev": 1285179.443058, "N": 20224}, "bw_min": 2105, "bw_max": 2393, "bw_agg": 100.0, "bw_mean": 2282.25, "bw_dev": 123.766918, "bw_samples": 4, "iops_min": 4211, "iops_max": 4787, "iops_mean": 4565.25, "iops_stddev": 247.429956, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5003, "usr_cpu": 10.393764, "sys_cpu": 48.490905, "ctx": 20228, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.198378, "20": 0.519185, "50": 0.01, "100": 63.207081, "250": 23.462223, "500": 0.296677, "750": 0.093948, "1000": 0.044502}, "latency_ms": {"2": 0.06428, "4": 0.074169, "10": 0.019778, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 20064, "read_merges": 0, "write_merges": 2510, "read_ticks": 0, "write_ticks": 2601, "in_queue": 2601, "util": 79.028082}]} 2026-04-19 19:25:50.157398 2026-04-19 19:16:23.943354 -18 1 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626782, "timestamp_ms": 1776626782434, "time": "Sun Apr 19 19:26:22 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12861440, "io_kbytes": 12560, "bw_bytes": 2571773, "bw": 2511, "iops": 5022.995401, "runtime": 5001, "total_ios": 25120, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77681, "max": 3446210, "mean": 92763.553782, "stddev": 33228.335249, "N": 25120}, "clat_ns": {"min": 5240, "max": 6880571, "mean": 95530.86461, "stddev": 234797.632655, "N": 25120, "percentile": {"1.000000": 47872, "5.000000": 49920, "10.000000": 50944, "20.000000": 52480, "30.000000": 59648, "40.000000": 65280, "50.000000": 71168, "60.000000": 76288, "70.000000": 80384, "80.000000": 87552, "90.000000": 110080, "95.000000": 140288, "99.000000": 544768, "99.500000": 1564672, "99.900000": 4079616, "99.950000": 4816896, "99.990000": 6586368}}, "lat_ns": {"min": 122381, "max": 7017431, "mean": 190514.110072, "stddev": 241015.691758, "N": 25120}, "bw_min": 1802, "bw_max": 2915, "bw_agg": 100.0, "bw_mean": 2566.0, "bw_dev": 518.854508, "bw_samples": 4, "iops_min": 3605, "iops_max": 5830, "iops_mean": 5132.25, "iops_stddev": 1037.218195, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.08, "sys_cpu": 63.58, "ctx": 24995, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.163217, "20": 0.051752, "50": 6.130573, "100": 80.752389, "250": 11.476911, "500": 0.386146, "750": 0.147293, "1000": 0.051752}, "latency_ms": {"2": 0.545382, "4": 0.183121, "10": 0.111465, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23745, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2888, "write_ticks": 0, "in_queue": 2888, "util": 78.305573}]} 2026-04-19 19:26:00.223657 2026-04-19 19:16:23.943354 -19 1 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626807, "timestamp_ms": 1776626807945, "time": "Sun Apr 19 19:26:47 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12559872, "io_kbytes": 12265, "bw_bytes": 2511472, "bw": 2452, "iops": 4905.218956, "runtime": 5001, "total_ios": 24531, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77150, "max": 3133349, "mean": 92885.08744, "stddev": 31088.067294, "N": 24531}, "clat_ns": {"min": 4130, "max": 7205111, "mean": 99713.302882, "stddev": 235757.860745, "N": 24531, "percentile": {"1.000000": 44800, "5.000000": 51968, "10.000000": 54528, "20.000000": 61696, "30.000000": 67072, "40.000000": 70144, "50.000000": 75264, "60.000000": 79360, "70.000000": 82432, "80.000000": 87552, "90.000000": 109056, "95.000000": 134144, "99.000000": 946176, "99.500000": 1630208, "99.900000": 3850240, "99.950000": 4554752, "99.990000": 6782976}}, "lat_ns": {"min": 126571, "max": 7337952, "mean": 194731.811789, "stddev": 241344.126595, "N": 24531}, "bw_min": 1593, "bw_max": 2867, "bw_agg": 96.020183, "bw_mean": 2355.75, "bw_dev": 557.046602, "bw_samples": 4, "iops_min": 3186, "iops_max": 5734, "iops_mean": 4711.75, "iops_stddev": 1114.268781, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 12.28, "sys_cpu": 54.4, "ctx": 24325, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.811218, "20": 0.020382, "50": 1.059883, "100": 85.275774, "250": 11.507888, "500": 0.163059, "750": 0.110065, "1000": 0.061147}, "latency_ms": {"2": 0.664465, "4": 0.248665, "10": 0.077453, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24489, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3010, "write_ticks": 0, "in_queue": 3010, "util": 68.488304}]} 2026-04-19 19:26:24.591912 2026-04-19 19:16:23.943354 -20 1 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626817, "timestamp_ms": 1776626817670, "time": "Sun Apr 19 19:26:57 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5826560, "io_kbytes": 5690, "bw_bytes": 1165078, "bw": 1137, "iops": 2275.544891, "runtime": 5001, "total_ios": 11380, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 92700, "max": 7737163, "mean": 416657.740158, "stddev": 361184.242258, "N": 11380}, "clat_ns": {"min": 4360, "max": 1097283, "mean": 7566.447627, "stddev": 19461.393203, "N": 11380, "percentile": {"1.000000": 4512, "5.000000": 4640, "10.000000": 4640, "20.000000": 4768, "30.000000": 4768, "40.000000": 4832, "50.000000": 4896, "60.000000": 5024, "70.000000": 5152, "80.000000": 5408, "90.000000": 8896, "95.000000": 9536, "99.000000": 108032, "99.500000": 123392, "99.900000": 201728, "99.950000": 244736, "99.990000": 585728}}, "lat_ns": {"min": 174820, "max": 7756633, "mean": 427733.67109, "stddev": 361644.12339, "N": 11380}, "bw_min": 721, "bw_max": 1316, "bw_agg": 99.141173, "bw_mean": 1128.25, "bw_dev": 274.737905, "bw_samples": 4, "iops_min": 1443, "iops_max": 2632, "iops_mean": 2257.0, "iops_stddev": 549.145397, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.34, "sys_cpu": 66.8, "ctx": 11442, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.353251, "20": 1.977153, "50": 0.13181, "100": 0.281195, "250": 1.221441, "500": 0.017575, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22, "write_ios": 11068, "read_merges": 0, "write_merges": 19084, "read_ticks": 10, "write_ticks": 1684, "in_queue": 1695, "util": 58.58748}]} 2026-04-19 19:26:50.011049 2026-04-19 19:16:23.943354 -21 1 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626828, "timestamp_ms": 1776626828931, "time": "Sun Apr 19 19:27:08 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 57344000, "io_kbytes": 56000, "bw_bytes": 11466506, "bw": 11197, "iops": 2799.440112, "runtime": 5001, "total_ios": 14000, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 245451, "max": 6835720, "mean": 338989.499571, "stddev": 322202.1135, "N": 14000}, "clat_ns": {"min": 4730, "max": 260210, "mean": 5903.112286, "stddev": 3217.347943, "N": 14000, "percentile": {"1.000000": 4960, "5.000000": 5088, "10.000000": 5152, "20.000000": 5152, "30.000000": 5216, "40.000000": 5280, "50.000000": 5280, "60.000000": 5344, "70.000000": 5408, "80.000000": 5728, "90.000000": 8384, "95.000000": 9152, "99.000000": 12352, "99.500000": 15936, "99.900000": 18816, "99.950000": 29312, "99.990000": 179200}}, "lat_ns": {"min": 253261, "max": 6853661, "mean": 348273.366071, "stddev": 323535.841856, "N": 14000}, "bw_min": 10385, "bw_max": 13066, "bw_agg": 100.0, "bw_mean": 12298.5, "bw_dev": 1279.028407, "bw_samples": 4, "iops_min": 2596, "iops_max": 3266, "iops_mean": 3074.25, "iops_stddev": 319.67314, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.34, "sys_cpu": 66.72, "ctx": 14008, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 98.014286, "20": 1.9, "50": 0.064286, "100": 0.0, "250": 0.014286, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 13625, "read_merges": 0, "write_merges": 27250, "read_ticks": 0, "write_ticks": 2094, "in_queue": 2094, "util": 70.281124}]} 2026-04-19 19:27:01.053014 2026-04-19 19:16:23.943354 -22 1 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626845, "timestamp_ms": 1776626845431, "time": "Sun Apr 19 19:27:25 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 111489024, "io_kbytes": 108876, "bw_bytes": 22288889, "bw": 21766, "iops": 5441.623351, "runtime": 5002, "total_ios": 27219, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79930, "max": 4121952, "mean": 91368.506852, "stddev": 34347.32931, "N": 27219}, "clat_ns": {"min": 4040, "max": 13785051, "mean": 80953.347404, "stddev": 143210.676509, "N": 27219, "percentile": {"1.000000": 48896, "5.000000": 51456, "10.000000": 53504, "20.000000": 61184, "30.000000": 66048, "40.000000": 69120, "50.000000": 72192, "60.000000": 75264, "70.000000": 78336, "80.000000": 82432, "90.000000": 93696, "95.000000": 111104, "99.000000": 179200, "99.500000": 242688, "99.900000": 1908736, "99.950000": 2899968, "99.990000": 5013504}}, "lat_ns": {"min": 125761, "max": 13897412, "mean": 174801.067159, "stddev": 149458.935756, "N": 27219}, "bw_min": 20292, "bw_max": 23276, "bw_agg": 100.0, "bw_mean": 22179.0, "bw_dev": 1301.659966, "bw_samples": 4, "iops_min": 5073, "iops_max": 5819, "iops_mean": 5544.75, "iops_stddev": 325.414991, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 15.656869, "sys_cpu": 56.74865, "ctx": 27079, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.378412, "20": 0.025717, "50": 1.664279, "100": 90.547044, "250": 6.90694, "500": 0.106543, "750": 0.077152, "1000": 0.040413}, "latency_ms": {"2": 0.157978, "4": 0.077152, "10": 0.014696, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 27089, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3275, "write_ticks": 0, "in_queue": 3275, "util": 82.588843}]} 2026-04-19 19:27:11.066804 2026-04-19 19:16:23.943354 -23 1 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626862, "timestamp_ms": 1776626862918, "time": "Sun Apr 19 19:27:42 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 107216896, "io_kbytes": 104704, "bw_bytes": 21439091, "bw": 20936, "iops": 5234.153169, "runtime": 5001, "total_ios": 26176, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78610, "max": 1251564, "mean": 92737.252483, "stddev": 25480.306359, "N": 26176}, "clat_ns": {"min": 4360, "max": 6332479, "mean": 87412.761041, "stddev": 162436.360958, "N": 26176, "percentile": {"1.000000": 49920, "5.000000": 52992, "10.000000": 55552, "20.000000": 61696, "30.000000": 67072, "40.000000": 70144, "50.000000": 74240, "60.000000": 76288, "70.000000": 79360, "80.000000": 82432, "90.000000": 94720, "95.000000": 123392, "99.000000": 207872, "99.500000": 905216, "99.900000": 2899968, "99.950000": 3686400, "99.990000": 5341184}}, "lat_ns": {"min": 127570, "max": 6466399, "mean": 182062.43112, "stddev": 167555.561882, "N": 26176}, "bw_min": 20392, "bw_max": 23124, "bw_agg": 100.0, "bw_mean": 22222.0, "bw_dev": 1240.148378, "bw_samples": 4, "iops_min": 5098, "iops_max": 5781, "iops_mean": 5555.5, "iops_stddev": 310.037095, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.58, "sys_cpu": 62.02, "ctx": 26115, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.191015, "20": 0.049664, "50": 0.748778, "100": 90.453087, "250": 7.785758, "500": 0.13371, "750": 0.099328, "1000": 0.072586}, "latency_ms": {"2": 0.301803, "4": 0.13371, "10": 0.030562, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 25996, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3156, "write_ticks": 0, "in_queue": 3156, "util": 79.776179}]} 2026-04-19 19:27:27.659801 2026-04-19 19:16:23.943354 -66 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:34:12' --until '2026-04-19 19:36:22' 0 Systemd errors records 2026-04-19 19:34:12.544933 2026-04-19 19:36:22.129231 -24 1 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626872, "timestamp_ms": 1776626872367, "time": "Sun Apr 19 19:27:52 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 44908544, "io_kbytes": 43856, "bw_bytes": 8979912, "bw": 8769, "iops": 2192.361528, "runtime": 5001, "total_ios": 10964, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 123390, "max": 7269062, "mean": 435335.769154, "stddev": 361777.074624, "N": 10964}, "clat_ns": {"min": 4840, "max": 1261323, "mean": 6538.999453, "stddev": 12538.884728, "N": 10964, "percentile": {"1.000000": 5088, "5.000000": 5536, "10.000000": 5536, "20.000000": 5600, "30.000000": 5664, "40.000000": 5728, "50.000000": 5792, "60.000000": 5856, "70.000000": 5984, "80.000000": 6240, "90.000000": 8640, "95.000000": 9280, "99.000000": 13888, "99.500000": 16768, "99.900000": 21632, "99.950000": 112128, "99.990000": 268288}}, "lat_ns": {"min": 246941, "max": 7285632, "mean": 445227.100511, "stddev": 363398.093959, "N": 10964}, "bw_min": 5084, "bw_max": 10028, "bw_agg": 96.699389, "bw_mean": 8480.25, "bw_dev": 2337.294216, "bw_samples": 4, "iops_min": 1271, "iops_max": 2507, "iops_mean": 2120.0, "iops_stddev": 584.268774, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.1, "sys_cpu": 71.02, "ctx": 11009, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 97.619482, "20": 2.179861, "50": 0.145932, "100": 0.0, "250": 0.036483, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10668, "read_merges": 0, "write_merges": 21332, "read_ticks": 0, "write_ticks": 1703, "in_queue": 1703, "util": 73.574297}]} 2026-04-19 19:27:45.155992 2026-04-19 19:16:23.943354 -25 1 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626883, "timestamp_ms": 1776626883605, "time": "Sun Apr 19 19:28:03 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8212447232, "io_kbytes": 8019968, "bw_bytes": 1642161014, "bw": 1603672, "iops": 783.043391, "runtime": 5001, "total_ios": 3916, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 537801, "max": 10665232, "mean": 957884.762513, "stddev": 522853.014851, "N": 3916}, "clat_ns": {"min": 5500, "max": 4204703, "mean": 298122.316905, "stddev": 269738.599368, "N": 3916, "percentile": {"1.000000": 5792, "5.000000": 6304, "10.000000": 6816, "20.000000": 230400, "30.000000": 261120, "40.000000": 280576, "50.000000": 296960, "60.000000": 317440, "70.000000": 337920, "80.000000": 370688, "90.000000": 415744, "95.000000": 485376, "99.000000": 1384448, "99.500000": 2211840, "99.900000": 3620864, "99.950000": 3981312, "99.990000": 4227072}}, "lat_ns": {"min": 760222, "max": 10730112, "mean": 1261312.678498, "stddev": 587477.92152, "N": 3916}, "bw_min": 1413754, "bw_max": 1749290, "bw_agg": 98.540359, "bw_mean": 1580265.0, "bw_dev": 169801.36694, "bw_samples": 4, "iops_min": 690, "iops_max": 854, "iops_mean": 771.5, "iops_stddev": 82.963848, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.64, "sys_cpu": 23.24, "ctx": 8507, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 14.325843, "20": 2.73238, "50": 0.178754, "100": 0.0, "250": 7.99285, "500": 70.301328, "750": 2.73238, "1000": 0.331971}, "latency_ms": {"2": 0.81716, "4": 0.561798, "10": 0.025536, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8255, "read_merges": 0, "write_merges": 672, "read_ticks": 0, "write_ticks": 3542, "in_queue": 3542, "util": 89.861474}]} 2026-04-19 19:27:56.027816 2026-04-19 19:16:23.943354 -26 1 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626907, "timestamp_ms": 1776626907847, "time": "Sun Apr 19 19:28:27 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13245612032, "io_kbytes": 12935168, "bw_bytes": 2649122406, "bw": 2587033, "iops": 1263.2, "runtime": 5000, "total_ios": 6316, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 234670, "max": 7000101, "mean": 565235.316498, "stddev": 342790.308243, "N": 6316}, "clat_ns": {"min": 6570, "max": 7235602, "mean": 210351.102438, "stddev": 280148.12198, "N": 6316, "percentile": {"1.000000": 102912, "5.000000": 116224, "10.000000": 127488, "20.000000": 146432, "30.000000": 158720, "40.000000": 168960, "50.000000": 179200, "60.000000": 191488, "70.000000": 203776, "80.000000": 220160, "90.000000": 248832, "95.000000": 284672, "99.000000": 774144, "99.500000": 2441216, "99.900000": 4227072, "99.950000": 4358144, "99.990000": 7241728}}, "lat_ns": {"min": 487602, "max": 10900712, "mean": 779859.434769, "stddev": 476501.96328, "N": 6316}, "bw_min": 2084827, "bw_max": 2978909, "bw_agg": 96.980302, "bw_mean": 2508913.25, "bw_dev": 396889.612934, "bw_samples": 4, "iops_min": 1017, "iops_max": 1454, "iops_mean": 1224.5, "iops_stddev": 193.832402, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.14, "sys_cpu": 32.38, "ctx": 12591, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.031666, "20": 0.142495, "50": 0.0, "100": 0.316656, "250": 89.962001, "500": 8.217226, "750": 0.316656, "1000": 0.079164}, "latency_ms": {"2": 0.348322, "4": 0.443319, "10": 0.142495, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 12538, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3300, "write_ticks": 0, "in_queue": 3299, "util": 81.027668}]} 2026-04-19 19:28:07.39207 2026-04-19 19:16:23.943354 -27 1 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626928, "timestamp_ms": 1776626928376, "time": "Sun Apr 19 19:28:48 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14086569984, "io_kbytes": 13756416, "bw_bytes": 2816750646, "bw": 2750733, "iops": 1343.131374, "runtime": 5001, "total_ios": 6717, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 189830, "max": 5328336, "mean": 527827.931815, "stddev": 258662.91576, "N": 6717}, "clat_ns": {"min": 5470, "max": 4922294, "mean": 201309.919011, "stddev": 246401.802906, "N": 6717, "percentile": {"1.000000": 105984, "5.000000": 116224, "10.000000": 124416, "20.000000": 142336, "30.000000": 154624, "40.000000": 164864, "50.000000": 175104, "60.000000": 185344, "70.000000": 197632, "80.000000": 209920, "90.000000": 238592, "95.000000": 276480, "99.000000": 815104, "99.500000": 2072576, "99.900000": 3850240, "99.950000": 4423680, "99.990000": 4947968}}, "lat_ns": {"min": 477351, "max": 6316449, "mean": 732817.009826, "stddev": 384825.83635, "N": 6717}, "bw_min": 2931852, "bw_max": 3084288, "bw_agg": 100.0, "bw_mean": 3020330.75, "bw_dev": 64130.368393, "bw_samples": 4, "iops_min": 1431, "iops_max": 1506, "iops_mean": 1474.5, "iops_stddev": 31.522479, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 1.96, "sys_cpu": 41.26, "ctx": 13400, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.119101, "20": 0.044663, "50": 0.0, "100": 0.267977, "250": 91.811821, "500": 6.44633, "750": 0.282864, "1000": 0.223314}, "latency_ms": {"2": 0.267977, "4": 0.461516, "10": 0.074438, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13401, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3361, "write_ticks": 0, "in_queue": 3361, "util": 82.033097}]} 2026-04-19 19:28:29.965357 2026-04-19 19:16:23.943354 -28 1 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626937, "timestamp_ms": 1776626937679, "time": "Sun Apr 19 19:28:57 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7981760512, "io_kbytes": 7794688, "bw_bytes": 1596032895, "bw": 1558625, "iops": 761.04779, "runtime": 5001, "total_ios": 3806, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 504032, "max": 16819010, "mean": 997475.298476, "stddev": 709036.457442, "N": 3806}, "clat_ns": {"min": 5220, "max": 4287293, "mean": 295151.43773, "stddev": 306479.547172, "N": 3806, "percentile": {"1.000000": 5664, "5.000000": 6432, "10.000000": 9280, "20.000000": 230400, "30.000000": 257024, "40.000000": 272384, "50.000000": 288768, "60.000000": 305152, "70.000000": 321536, "80.000000": 350208, "90.000000": 403456, "95.000000": 473088, "99.000000": 1695744, "99.500000": 2670592, "99.900000": 3653632, "99.950000": 4014080, "99.990000": 4292608}}, "lat_ns": {"min": 727833, "max": 17325522, "mean": 1297513.17341, "stddev": 751220.031667, "N": 3806}, "bw_min": 1211204, "bw_max": 1781760, "bw_agg": 96.27968, "bw_mean": 1500640.25, "bw_dev": 287166.719186, "bw_samples": 4, "iops_min": 591, "iops_max": 870, "iops_mean": 732.5, "iops_stddev": 140.400617, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.42, "sys_cpu": 25.26, "ctx": 8300, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 14.16185, "20": 3.231739, "50": 0.262743, "100": 0.052549, "250": 8.775617, "500": 69.41671, "750": 2.07567, "1000": 0.341566}, "latency_ms": {"2": 0.840778, "4": 0.788229, "10": 0.052549, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8094, "read_merges": 0, "write_merges": 672, "read_ticks": 0, "write_ticks": 3553, "in_queue": 3553, "util": 89.495883}]} 2026-04-19 19:28:50.458096 2026-04-19 19:16:23.943354 -29 1 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626948, "timestamp_ms": 1776626948989, "time": "Sun Apr 19 19:29:08 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4345298944, "io_kbytes": 4243456, "bw_bytes": 789193415, "bw": 770696, "iops": 188.158373, "runtime": 5506, "total_ios": 1036, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1337324, "max": 2948383367, "mean": 5090110.792471, "stddev": 91535784.606021, "N": 1036}, "clat_ns": {"min": 5800, "max": 4250253, "mean": 196036.796332, "stddev": 287696.280416, "N": 1036, "percentile": {"1.000000": 6112, "5.000000": 6368, "10.000000": 6688, "20.000000": 8032, "30.000000": 16768, "40.000000": 183296, "50.000000": 199680, "60.000000": 220160, "70.000000": 240640, "80.000000": 264192, "90.000000": 309248, "95.000000": 378880, "99.000000": 1433600, "99.500000": 2179072, "99.900000": 3489792, "99.950000": 4227072, "99.990000": 4227072}}, "lat_ns": {"min": 1502844, "max": 2948907128, "mean": 5293650.801158, "stddev": 91546554.546878, "N": 1036}, "bw_min": 814289, "bw_max": 1714509, "bw_agg": 100.0, "bw_mean": 1412276.666667, "bw_dev": 517882.636315, "bw_samples": 3, "iops_min": 198, "iops_max": 418, "iops_mean": 344.333333, "iops_stddev": 126.72937, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5505, "usr_cpu": 0.871935, "sys_cpu": 11.280654, "ctx": 4484, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 23.552124, "20": 7.818533, "50": 0.965251, "100": 0.096525, "250": 42.181467, "500": 23.166023, "750": 0.772201, "1000": 0.19305}, "latency_ms": {"2": 0.675676, "4": 0.482625, "10": 0.096525, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 4477, "read_merges": 0, "write_merges": 336, "read_ticks": 0, "write_ticks": 1954, "in_queue": 1955, "util": 42.481752}]} 2026-04-19 19:29:01.205076 2026-04-19 19:16:23.943354 -30 1 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626965, "timestamp_ms": 1776626965115, "time": "Sun Apr 19 19:29:25 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14856224768, "io_kbytes": 14508032, "bw_bytes": 2970650823, "bw": 2901026, "iops": 708.258348, "runtime": 5001, "total_ios": 3542, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 736622, "max": 7695513, "mean": 1217712.579616, "stddev": 483468.424029, "N": 3542}, "clat_ns": {"min": 5590, "max": 4620634, "mean": 173837.945793, "stddev": 191392.356217, "N": 3542, "percentile": {"1.000000": 12864, "5.000000": 122368, "10.000000": 127488, "20.000000": 136192, "30.000000": 140288, "40.000000": 146432, "50.000000": 152576, "60.000000": 160768, "70.000000": 173056, "80.000000": 185344, "90.000000": 207872, "95.000000": 242688, "99.000000": 321536, "99.500000": 1089536, "99.900000": 3391488, "99.950000": 4014080, "99.990000": 4620288}}, "lat_ns": {"min": 851832, "max": 11704405, "mean": 1397017.828063, "stddev": 558718.056329, "N": 3542}, "bw_min": 2135976, "bw_max": 3305472, "bw_agg": 98.180223, "bw_mean": 2848234.0, "bw_dev": 544209.050867, "bw_samples": 4, "iops_min": 521, "iops_max": 807, "iops_mean": 695.25, "iops_stddev": 133.072349, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.24, "sys_cpu": 32.12, "ctx": 14098, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.367024, "20": 0.762281, "50": 0.0, "100": 0.028233, "250": 94.918125, "500": 3.274986, "750": 0.056465, "1000": 0.084698}, "latency_ms": {"2": 0.169396, "4": 0.282326, "10": 0.056465, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14163, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3635, "write_ticks": 0, "in_queue": 3634, "util": 69.179427}]} 2026-04-19 19:29:11.158118 2026-04-19 19:16:23.943354 -31 1 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626980, "timestamp_ms": 1776626980001, "time": "Sun Apr 19 19:29:40 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15011414016, "io_kbytes": 14659584, "bw_bytes": 3001682466, "bw": 2931330, "iops": 715.656869, "runtime": 5001, "total_ios": 3579, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 747242, "max": 8619636, "mean": 1209014.927913, "stddev": 443455.711074, "N": 3579}, "clat_ns": {"min": 6560, "max": 4279793, "mean": 168053.366583, "stddev": 116970.158268, "N": 3579, "percentile": {"1.000000": 107008, "5.000000": 123392, "10.000000": 127488, "20.000000": 134144, "30.000000": 140288, "40.000000": 146432, "50.000000": 152576, "60.000000": 162816, "70.000000": 175104, "80.000000": 187392, "90.000000": 209920, "95.000000": 236544, "99.000000": 317440, "99.500000": 399360, "99.900000": 2244608, "99.950000": 2408448, "99.990000": 4292608}}, "lat_ns": {"min": 854273, "max": 8845016, "mean": 1382203.401788, "stddev": 483308.108322, "N": 3579}, "bw_min": 2295560, "bw_max": 3284992, "bw_agg": 96.325473, "bw_mean": 2823618.0, "bw_dev": 449026.331065, "bw_samples": 4, "iops_min": 560, "iops_max": 802, "iops_mean": 689.25, "iops_stddev": 109.79792, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.52, "sys_cpu": 30.66, "ctx": 14252, "majf": 0, "minf": 530, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.139704, "20": 0.558815, "50": 0.0, "100": 0.055882, "250": 95.669181, "500": 3.157307, "750": 0.139704, "1000": 0.0}, "latency_ms": {"2": 0.167645, "4": 0.083822, "10": 0.027941, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13839, "write_ios": 23, "read_merges": 0, "write_merges": 12, "read_ticks": 3590, "write_ticks": 11, "in_queue": 3603, "util": 82.2128}]} 2026-04-19 19:29:27.273658 2026-04-19 19:16:23.943354 -32 1 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626990, "timestamp_ms": 1776626990228, "time": "Sun Apr 19 19:29:50 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8585740288, "io_kbytes": 8384512, "bw_bytes": 1716804696, "bw": 1676567, "iops": 409.318136, "runtime": 5001, "total_ios": 2047, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1292624, "max": 12803388, "mean": 2189056.575476, "stddev": 1011115.644448, "N": 2047}, "clat_ns": {"min": 5510, "max": 7694893, "mean": 227738.711773, "stddev": 344691.969404, "N": 2047, "percentile": {"1.000000": 5792, "5.000000": 6304, "10.000000": 7904, "20.000000": 171008, "30.000000": 185344, "40.000000": 193536, "50.000000": 203776, "60.000000": 220160, "70.000000": 234496, "80.000000": 252928, "90.000000": 288768, "95.000000": 346112, "99.000000": 1433600, "99.500000": 2998272, "99.900000": 3981312, "99.950000": 4177920, "99.990000": 7700480}}, "lat_ns": {"min": 1450254, "max": 14538313, "mean": 2423468.905227, "stddev": 1135575.00857, "N": 2047}, "bw_min": 1470464, "bw_max": 1898645, "bw_agg": 97.403678, "bw_mean": 1633038.25, "bw_dev": 185018.395306, "bw_samples": 4, "iops_min": 359, "iops_max": 463, "iops_mean": 398.25, "iops_stddev": 45.028695, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.24, "sys_cpu": 17.8, "ctx": 8532, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 11.382511, "20": 4.787494, "50": 0.390816, "100": 0.048852, "250": 61.944309, "500": 19.198828, "750": 0.683928, "1000": 0.097704}, "latency_ms": {"2": 0.635076, "4": 0.73278, "10": 0.097704, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8308, "read_merges": 0, "write_merges": 336, "read_ticks": 0, "write_ticks": 3698, "in_queue": 3698, "util": 82.061607}]} 2026-04-19 19:29:42.09078 2026-04-19 19:16:23.943354 -33 1 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627004, "timestamp_ms": 1776627004808, "time": "Sun Apr 19 19:30:04 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6891520, "io_kbytes": 6730, "bw_bytes": 1378028, "bw": 1345, "iops": 2691.461708, "runtime": 5001, "total_ios": 13460, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 85001, "max": 8487466, "mean": 219605.685513, "stddev": 486194.161037, "N": 13460}, "clat_ns": {"min": 5070, "max": 20595191, "mean": 136957.191605, "stddev": 379477.566728, "N": 13460, "percentile": {"1.000000": 5408, "5.000000": 5984, "10.000000": 9920, "20.000000": 72192, "30.000000": 83456, "40.000000": 92672, "50.000000": 99840, "60.000000": 117248, "70.000000": 140288, "80.000000": 158720, "90.000000": 193536, "95.000000": 242688, "99.000000": 585728, "99.500000": 1925120, "99.900000": 4882432, "99.950000": 6127616, "99.990000": 18481152}}, "lat_ns": {"min": 140560, "max": 21676335, "mean": 359685.712259, "stddev": 608116.321335, "N": 13460}, "bw_min": 824, "bw_max": 1343, "bw_agg": 82.928939, "bw_mean": 1116.25, "bw_dev": 241.442022, "bw_samples": 4, "iops_min": 1649, "iops_max": 2687, "iops_mean": 2233.25, "iops_stddev": 482.654034, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.56, "sys_cpu": 36.56, "ctx": 13476, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 10.312036, "20": 2.31055, "50": 0.222883, "100": 37.065379, "250": 45.438336, "500": 3.491828, "750": 0.334324, "1000": 0.1263}, "latency_ms": {"2": 0.230312, "4": 0.312036, "10": 0.1263, "20": 0.022288, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 6, "write_ios": 12919, "read_merges": 0, "write_merges": 1615, "read_ticks": 6, "write_ticks": 2071, "in_queue": 2076, "util": 55.869958}]} 2026-04-19 19:29:57.531131 2026-04-19 19:16:23.943354 -34 1 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627033, "timestamp_ms": 1776627033610, "time": "Sun Apr 19 19:30:33 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12464128, "io_kbytes": 12172, "bw_bytes": 2492327, "bw": 2433, "iops": 4867.826435, "runtime": 5001, "total_ios": 24344, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78790, "max": 3324420, "mean": 94899.324639, "stddev": 33983.444088, "N": 24344}, "clat_ns": {"min": 4630, "max": 6774211, "mean": 100059.255422, "stddev": 234787.579072, "N": 24344, "percentile": {"1.000000": 49920, "5.000000": 52480, "10.000000": 53504, "20.000000": 56064, "30.000000": 63744, "40.000000": 70144, "50.000000": 73216, "60.000000": 79360, "70.000000": 83456, "80.000000": 89600, "90.000000": 114176, "95.000000": 142336, "99.000000": 856064, "99.500000": 1630208, "99.900000": 3850240, "99.950000": 4554752, "99.990000": 5603328}}, "lat_ns": {"min": 125831, "max": 6916731, "mean": 197004.718329, "stddev": 241635.931841, "N": 24344}, "bw_min": 1117, "bw_max": 2881, "bw_agg": 97.990352, "bw_mean": 2385.25, "bw_dev": 847.291518, "bw_samples": 4, "iops_min": 2235, "iops_max": 5763, "iops_mean": 4771.5, "iops_stddev": 1694.583036, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.42, "sys_cpu": 59.68, "ctx": 24244, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.156096, "20": 0.061617, "50": 0.70654, "100": 85.51183, "250": 12.101545, "500": 0.287545, "750": 0.127341, "1000": 0.082156}, "latency_ms": {"2": 0.607953, "4": 0.271114, "10": 0.086264, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23008, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2858, "write_ticks": 0, "in_queue": 2859, "util": 71.33758}]} 2026-04-19 19:30:07.336934 2026-04-19 19:16:23.943354 -35 1 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627058, "timestamp_ms": 1776627058753, "time": "Sun Apr 19 19:30:58 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12743680, "io_kbytes": 12445, "bw_bytes": 2548226, "bw": 2488, "iops": 4977.004599, "runtime": 5001, "total_ios": 24890, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79091, "max": 4188222, "mean": 92440.591201, "stddev": 46516.855084, "N": 24890}, "clat_ns": {"min": 4770, "max": 5941508, "mean": 97624.19996, "stddev": 228445.718452, "N": 24890, "percentile": {"1.000000": 48896, "5.000000": 51456, "10.000000": 53504, "20.000000": 58112, "30.000000": 64256, "40.000000": 70144, "50.000000": 73216, "60.000000": 80384, "70.000000": 82432, "80.000000": 86528, "90.000000": 103936, "95.000000": 134144, "99.000000": 700416, "99.500000": 1630208, "99.900000": 3850240, "99.950000": 4489216, "99.990000": 5406720}}, "lat_ns": {"min": 124901, "max": 6063338, "mean": 191965.016151, "stddev": 236510.544939, "N": 24890}, "bw_min": 1108, "bw_max": 2916, "bw_agg": 98.091143, "bw_mean": 2441.0, "bw_dev": 889.01556, "bw_samples": 4, "iops_min": 2216, "iops_max": 5832, "iops_mean": 4882.5, "iops_stddev": 1778.35289, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.46, "sys_cpu": 58.24, "ctx": 24795, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.148654, "20": 0.016071, "50": 2.012857, "100": 86.669345, "250": 9.867417, "500": 0.200884, "750": 0.092407, "1000": 0.12053}, "latency_ms": {"2": 0.522298, "4": 0.281237, "10": 0.068301, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24265, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2956, "write_ticks": 0, "in_queue": 2956, "util": 74.088907}]} 2026-04-19 19:30:35.685408 2026-04-19 19:16:23.943354 -36 1 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627068, "timestamp_ms": 1776627068421, "time": "Sun Apr 19 19:31:08 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5753856, "io_kbytes": 5619, "bw_bytes": 1150541, "bw": 1123, "iops": 2247.15057, "runtime": 5001, "total_ios": 11238, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 96380, "max": 123584258, "mean": 421738.042267, "stddev": 1210809.6596, "N": 11238}, "clat_ns": {"min": 4640, "max": 1151993, "mean": 7955.270333, "stddev": 20447.266737, "N": 11238, "percentile": {"1.000000": 4832, "5.000000": 4960, "10.000000": 5024, "20.000000": 5088, "30.000000": 5216, "40.000000": 5280, "50.000000": 5344, "60.000000": 5472, "70.000000": 5600, "80.000000": 5920, "90.000000": 8640, "95.000000": 9408, "99.000000": 112128, "99.500000": 130560, "99.900000": 195584, "99.950000": 230400, "99.990000": 700416}}, "lat_ns": {"min": 185010, "max": 123636768, "mean": 433129.946699, "stddev": 1211606.141724, "N": 11238}, "bw_min": 592, "bw_max": 1311, "bw_agg": 99.147792, "bw_mean": 1114.25, "bw_dev": 348.535388, "bw_samples": 4, "iops_min": 1185, "iops_max": 2622, "iops_mean": 2228.75, "iops_stddev": 696.571305, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.86, "sys_cpu": 70.88, "ctx": 11283, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.333867, "20": 1.957644, "50": 0.169069, "100": 0.195764, "250": 1.299164, "500": 0.026695, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10931, "read_merges": 0, "write_merges": 18877, "read_ticks": 0, "write_ticks": 2016, "in_queue": 2142, "util": 78.376206}]} 2026-04-19 19:31:01.215486 2026-04-19 19:16:23.943354 -86 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:39:49.152506 2026-04-19 19:39:49.15251 -37 1 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627079, "timestamp_ms": 1776627079672, "time": "Sun Apr 19 19:31:19 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 55435264, "io_kbytes": 54136, "bw_bytes": 11084835, "bw": 10825, "iops": 2706.258748, "runtime": 5001, "total_ios": 13534, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 96120, "max": 4593254, "mean": 114533.852298, "stddev": 48357.816476, "N": 13534}, "clat_ns": {"min": 7090, "max": 8587185, "mean": 240974.753731, "stddev": 350866.619186, "N": 13534, "percentile": {"1.000000": 146432, "5.000000": 154624, "10.000000": 160768, "20.000000": 168960, "30.000000": 175104, "40.000000": 181248, "50.000000": 185344, "60.000000": 191488, "70.000000": 205824, "80.000000": 236544, "90.000000": 280576, "95.000000": 317440, "99.000000": 1761280, "99.500000": 2768896, "99.900000": 5406720, "99.950000": 6586368, "99.990000": 7176192}}, "lat_ns": {"min": 242621, "max": 8742636, "mean": 358068.306192, "stddev": 358449.577904, "N": 13534}, "bw_min": 6120, "bw_max": 13168, "bw_agg": 99.685597, "bw_mean": 10791.0, "bw_dev": 3321.934176, "bw_samples": 4, "iops_min": 1530, "iops_max": 3292, "iops_mean": 2697.75, "iops_stddev": 830.483544, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.38, "sys_cpu": 35.22, "ctx": 13540, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.110832, "20": 0.118221, "50": 0.01, "100": 0.0, "250": 84.158416, "500": 13.403281, "750": 0.354662, "1000": 0.251219}, "latency_ms": {"2": 0.761046, "4": 0.61327, "10": 0.221664, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 13137, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 1988, "in_queue": 1989, "util": 75.627888}]} 2026-04-19 19:31:11.701503 2026-04-19 19:16:23.943354 -38 1 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627095, "timestamp_ms": 1776627095537, "time": "Sun Apr 19 19:31:35 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 113217536, "io_kbytes": 110564, "bw_bytes": 22638979, "bw": 22108, "iops": 5527.094581, "runtime": 5001, "total_ios": 27641, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78730, "max": 3192570, "mean": 90458.168265, "stddev": 25502.067571, "N": 27641}, "clat_ns": {"min": 4450, "max": 4913974, "mean": 80887.060164, "stddev": 108538.268886, "N": 27641, "percentile": {"1.000000": 50944, "5.000000": 52992, "10.000000": 54528, "20.000000": 61696, "30.000000": 66048, "40.000000": 70144, "50.000000": 75264, "60.000000": 79360, "70.000000": 82432, "80.000000": 84480, "90.000000": 92672, "95.000000": 109056, "99.000000": 179200, "99.500000": 224256, "99.900000": 1548288, "99.950000": 2965504, "99.990000": 4554752}}, "lat_ns": {"min": 127900, "max": 5044745, "mean": 173263.45664, "stddev": 113642.363423, "N": 27641}, "bw_min": 21228, "bw_max": 23100, "bw_agg": 100.0, "bw_mean": 22357.0, "bw_dev": 803.554603, "bw_samples": 4, "iops_min": 5307, "iops_max": 5775, "iops_mean": 5589.25, "iops_stddev": 200.888651, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.68, "sys_cpu": 66.54, "ctx": 27543, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.108534, "20": 0.043414, "50": 0.484787, "100": 93.118918, "250": 5.824681, "500": 0.144713, "750": 0.079592, "1000": 0.021707}, "latency_ms": {"2": 0.104917, "4": 0.039796, "10": 0.028943, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 27511, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3313, "write_ticks": 0, "in_queue": 3313, "util": 85.646123}]} 2026-04-19 19:31:21.742445 2026-04-19 19:16:23.943354 -39 1 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627113, "timestamp_ms": 1776627113150, "time": "Sun Apr 19 19:31:53 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 107470848, "io_kbytes": 104952, "bw_bytes": 21472696, "bw": 20969, "iops": 5242.357642, "runtime": 5005, "total_ios": 26238, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79421, "max": 3416490, "mean": 92056.14338, "stddev": 32502.307291, "N": 26238}, "clat_ns": {"min": 4680, "max": 14034792, "mean": 87206.606449, "stddev": 178424.939711, "N": 26238, "percentile": {"1.000000": 50944, "5.000000": 53504, "10.000000": 56064, "20.000000": 63232, "30.000000": 68096, "40.000000": 71168, "50.000000": 76288, "60.000000": 80384, "70.000000": 83456, "80.000000": 86528, "90.000000": 94720, "95.000000": 118272, "99.000000": 193536, "99.500000": 292864, "99.900000": 2473984, "99.950000": 3784704, "99.990000": 6258688}}, "lat_ns": {"min": 127510, "max": 14177423, "mean": 181415.838936, "stddev": 184066.259474, "N": 26238}, "bw_min": 15108, "bw_max": 22824, "bw_agg": 100.0, "bw_mean": 20986.4, "bw_dev": 3298.057125, "bw_samples": 5, "iops_min": 3777, "iops_max": 5706, "iops_mean": 5246.6, "iops_stddev": 824.514281, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5004, "usr_cpu": 7.673861, "sys_cpu": 63.189448, "ctx": 26170, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.118149, "20": 0.026679, "50": 0.426862, "100": 91.580913, "250": 7.28333, "500": 0.114338, "750": 0.083848, "1000": 0.034301}, "latency_ms": {"2": 0.163884, "4": 0.121961, "10": 0.041924, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 26234, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3220, "write_ticks": 0, "in_queue": 3220, "util": 79.322568}]} 2026-04-19 19:31:37.821581 2026-04-19 19:16:23.943354 -40 1 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627122, "timestamp_ms": 1776627122475, "time": "Sun Apr 19 19:32:02 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 42471424, "io_kbytes": 41476, "bw_bytes": 8492586, "bw": 8293, "iops": 2073.385323, "runtime": 5001, "total_ios": 10369, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93730, "max": 18924357, "mean": 116936.736715, "stddev": 188072.075744, "N": 10369}, "clat_ns": {"min": 4670, "max": 176679067, "mean": 348708.756968, "stddev": 1788423.825089, "N": 10369, "percentile": {"1.000000": 171008, "5.000000": 189440, "10.000000": 199680, "20.000000": 211968, "30.000000": 226304, "40.000000": 252928, "50.000000": 276480, "60.000000": 288768, "70.000000": 301056, "80.000000": 321536, "90.000000": 378880, "95.000000": 432128, "99.000000": 2801664, "99.500000": 3784704, "99.900000": 4816896, "99.950000": 6717440, "99.990000": 13434880}}, "lat_ns": {"min": 259591, "max": 176824017, "mean": 468548.411612, "stddev": 1800139.437653, "N": 10369}, "bw_min": 4651, "bw_max": 10452, "bw_agg": 93.530616, "bw_mean": 7757.5, "bw_dev": 2442.496605, "bw_samples": 4, "iops_min": 1162, "iops_max": 2613, "iops_mean": 1939.0, "iops_stddev": 610.85241, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.48, "sys_cpu": 23.76, "ctx": 10339, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.453274, "20": 0.028932, "50": 0.0, "100": 0.0, "250": 38.605459, "500": 57.63333, "750": 0.761886, "1000": 0.270036}, "latency_ms": {"2": 0.810107, "4": 1.157296, "10": 0.250747, "20": 0.019288, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10060, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 1517, "in_queue": 1517, "util": 27.550201}]} 2026-04-19 19:31:55.280402 2026-04-19 19:16:23.943354 -41 1 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627133, "timestamp_ms": 1776627133756, "time": "Sun Apr 19 19:32:13 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 3084910592, "io_kbytes": 3012608, "bw_bytes": 609545661, "bw": 595259, "iops": 290.654021, "runtime": 5061, "total_ios": 1471, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 558561, "max": 3048907477, "mean": 2855694.547247, "stddev": 79477149.895502, "N": 1471}, "clat_ns": {"min": 15361, "max": 308872541, "mean": 563462.878314, "stddev": 8045966.762307, "N": 1471, "percentile": {"1.000000": 218112, "5.000000": 246784, "10.000000": 259072, "20.000000": 276480, "30.000000": 296960, "40.000000": 321536, "50.000000": 337920, "60.000000": 354304, "70.000000": 370688, "80.000000": 391168, "90.000000": 428032, "95.000000": 485376, "99.000000": 815104, "99.500000": 1155072, "99.900000": 3850240, "99.950000": 308281344, "99.990000": 308281344}}, "lat_ns": {"min": 766822, "max": 3049751059, "mean": 3424377.666893, "stddev": 79891193.567903, "N": 1471}, "bw_min": 122880, "bw_max": 1761566, "bw_agg": 100.0, "bw_mean": 1002932.666667, "bw_dev": 826062.91681, "bw_samples": 3, "iops_min": 60, "iops_max": 860, "iops_mean": 489.666667, "iops_stddev": 403.286912, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5061, "usr_cpu": 1.817823, "sys_cpu": 7.449121, "ctx": 2980, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.203943, "50": 0.0, "100": 0.0, "250": 6.526173, "500": 89.530931, "750": 2.515296, "1000": 0.67981}, "latency_ms": {"2": 0.135962, "4": 0.339905, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.067981, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 2983, "read_merges": 0, "write_merges": 8, "read_ticks": 0, "write_ticks": 7353, "in_queue": 10399, "util": 87.602974}]} 2026-04-19 19:32:06.266019 2026-04-19 19:16:23.943354 -42 1 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627150, "timestamp_ms": 1776627150150, "time": "Sun Apr 19 19:32:30 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12631146496, "io_kbytes": 12335104, "bw_bytes": 2525724154, "bw": 2466527, "iops": 1204.359128, "runtime": 5001, "total_ios": 6023, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 365801, "max": 13677620, "mean": 572098.541092, "stddev": 469717.683438, "N": 6023}, "clat_ns": {"min": 6330, "max": 8374245, "mean": 242515.570812, "stddev": 424033.420765, "N": 6023, "percentile": {"1.000000": 101888, "5.000000": 113152, "10.000000": 122368, "20.000000": 144384, "30.000000": 156672, "40.000000": 166912, "50.000000": 177152, "60.000000": 189440, "70.000000": 201728, "80.000000": 218112, "90.000000": 257024, "95.000000": 309248, "99.000000": 2375680, "99.500000": 3653632, "99.900000": 5341184, "99.950000": 5931008, "99.990000": 8355840}}, "lat_ns": {"min": 474622, "max": 14410833, "mean": 818641.822182, "stddev": 709070.574453, "N": 6023}, "bw_min": 1581522, "bw_max": 3096576, "bw_agg": 95.646775, "bw_mean": 2359154.0, "bw_dev": 843558.007722, "bw_samples": 4, "iops_min": 772, "iops_max": 1512, "iops_mean": 1151.75, "iops_stddev": 411.822272, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.3, "sys_cpu": 37.06, "ctx": 12036, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.116221, "20": 0.099618, "50": 0.0, "100": 0.581106, "250": 88.07903, "500": 8.052466, "750": 0.33206, "1000": 0.348663}, "latency_ms": {"2": 1.079196, "4": 1.04599, "10": 0.265648, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 12053, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3064, "write_ticks": 0, "in_queue": 3064, "util": 69.398157}]} 2026-04-19 19:32:15.906864 2026-04-19 19:16:23.943354 -43 1 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627165, "timestamp_ms": 1776627165139, "time": "Sun Apr 19 19:32:45 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13801357312, "io_kbytes": 13477888, "bw_bytes": 2759719518, "bw": 2695038, "iops": 1315.936813, "runtime": 5001, "total_ios": 6581, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 211951, "max": 7712123, "mean": 538693.485792, "stddev": 289663.253933, "N": 6581}, "clat_ns": {"min": 7050, "max": 7197161, "mean": 204231.981918, "stddev": 263078.070105, "N": 6581, "percentile": {"1.000000": 104960, "5.000000": 117248, "10.000000": 125440, "20.000000": 144384, "30.000000": 154624, "40.000000": 166912, "50.000000": 177152, "60.000000": 187392, "70.000000": 197632, "80.000000": 211968, "90.000000": 242688, "95.000000": 276480, "99.000000": 692224, "99.500000": 2473984, "99.900000": 3981312, "99.950000": 4489216, "99.990000": 7176192}}, "lat_ns": {"min": 488961, "max": 8656296, "mean": 746966.054703, "stddev": 417613.571437, "N": 6581}, "bw_min": 1724739, "bw_max": 2932736, "bw_agg": 96.572791, "bw_mean": 2602674.0, "bw_dev": 586080.572987, "bw_samples": 4, "iops_min": 842, "iops_max": 1432, "iops_mean": 1270.5, "iops_stddev": 286.065843, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.2, "sys_cpu": 37.22, "ctx": 13132, "majf": 0, "minf": 529, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.091172, "20": 0.075976, "50": 0.0, "100": 0.395077, "250": 90.882845, "500": 7.096186, "750": 0.516639, "1000": 0.182343}, "latency_ms": {"2": 0.182343, "4": 0.486248, "10": 0.091172, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13029, "write_ios": 25, "read_merges": 0, "write_merges": 16, "read_ticks": 3322, "write_ticks": 12, "in_queue": 3340, "util": 76.831683}]} 2026-04-19 19:32:32.234986 2026-04-19 19:16:23.943354 -44 1 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627174, "timestamp_ms": 1776627174918, "time": "Sun Apr 19 19:32:54 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8212447232, "io_kbytes": 8019968, "bw_bytes": 1642161014, "bw": 1603672, "iops": 783.043391, "runtime": 5001, "total_ios": 3916, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 519502, "max": 17016270, "mean": 861540.022217, "stddev": 559420.758184, "N": 3916}, "clat_ns": {"min": 10420, "max": 5864027, "mean": 392881.183095, "stddev": 353198.339175, "N": 3916, "percentile": {"1.000000": 222208, "5.000000": 246784, "10.000000": 259072, "20.000000": 276480, "30.000000": 292864, "40.000000": 309248, "50.000000": 325632, "60.000000": 350208, "70.000000": 378880, "80.000000": 415744, "90.000000": 485376, "95.000000": 585728, "99.000000": 2179072, "99.500000": 3358720, "99.900000": 4685824, "99.950000": 4882432, "99.990000": 5865472}}, "lat_ns": {"min": 756752, "max": 17561432, "mean": 1259555.208376, "stddev": 730798.451185, "N": 3916}, "bw_min": 1398784, "bw_max": 1765376, "bw_agg": 97.376468, "bw_mean": 1561600.0, "bw_dev": 165963.834518, "bw_samples": 4, "iops_min": 683, "iops_max": 862, "iops_mean": 762.5, "iops_stddev": 81.037029, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.06, "sys_cpu": 23.46, "ctx": 7845, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.20429, "50": 0.0, "100": 0.025536, "250": 5.643514, "500": 85.495403, "750": 5.541369, "1000": 0.970378}, "latency_ms": {"2": 1.046987, "4": 0.868233, "10": 0.20429, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7640, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3466, "in_queue": 3465, "util": 87.050793}]} 2026-04-19 19:32:47.689206 2026-04-19 19:16:23.943354 -45 1 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627189, "timestamp_ms": 1776627189257, "time": "Sun Apr 19 19:33:09 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7616856064, "io_kbytes": 7438336, "bw_bytes": 1521849363, "bw": 1486181, "iops": 362.837163, "runtime": 5005, "total_ios": 1816, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1341344, "max": 251677320, "mean": 2395382.697137, "stddev": 6349016.568367, "N": 1816}, "clat_ns": {"min": 11280, "max": 35480486, "mean": 333005.956498, "stddev": 1320887.618492, "N": 1816, "percentile": {"1.000000": 154624, "5.000000": 166912, "10.000000": 175104, "20.000000": 185344, "30.000000": 193536, "40.000000": 203776, "50.000000": 220160, "60.000000": 242688, "70.000000": 276480, "80.000000": 333824, "90.000000": 403456, "95.000000": 501760, "99.000000": 1712128, "99.500000": 2506752, "99.900000": 34340864, "99.950000": 35389440, "99.990000": 35389440}}, "lat_ns": {"min": 1493585, "max": 252081151, "mean": 2735442.645925, "stddev": 6488727.935323, "N": 1816}, "bw_min": 957506, "bw_max": 1912832, "bw_agg": 100.0, "bw_mean": 1497460.0, "bw_dev": 403232.312941, "bw_samples": 4, "iops_min": 233, "iops_max": 467, "iops_mean": 365.25, "iops_stddev": 98.712968, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5004, "usr_cpu": 3.43725, "sys_cpu": 17.805755, "ctx": 7272, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.055066, "50": 0.055066, "100": 0.0, "250": 63.270925, "500": 31.497797, "750": 3.359031, "1000": 0.385463}, "latency_ms": {"2": 0.715859, "4": 0.440529, "10": 0.055066, "20": 0.0, "50": 0.165198, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7239, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3892, "in_queue": 3892, "util": 88.35468}]} 2026-04-19 19:32:59.754675 2026-04-19 19:16:23.943354 -46 1 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627214, "timestamp_ms": 1776627214736, "time": "Sun Apr 19 19:33:34 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15065939968, "io_kbytes": 14712832, "bw_bytes": 3012585476, "bw": 2941978, "iops": 718.256349, "runtime": 5001, "total_ios": 3592, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 601912, "max": 7240831, "mean": 1202596.087138, "stddev": 484252.932459, "N": 3592}, "clat_ns": {"min": 6000, "max": 4812024, "mean": 172113.794265, "stddev": 167519.280377, "N": 3592, "percentile": {"1.000000": 105984, "5.000000": 124416, "10.000000": 127488, "20.000000": 134144, "30.000000": 140288, "40.000000": 146432, "50.000000": 152576, "60.000000": 158720, "70.000000": 168960, "80.000000": 185344, "90.000000": 214016, "95.000000": 246784, "99.000000": 366592, "99.500000": 569344, "99.900000": 3391488, "99.950000": 4751360, "99.990000": 4816896}}, "lat_ns": {"min": 843133, "max": 9961559, "mean": 1379681.984131, "stddev": 552583.998746, "N": 3592}, "bw_min": 2464958, "bw_max": 3400375, "bw_agg": 100.0, "bw_mean": 3118440.75, "bw_dev": 439689.091781, "bw_samples": 4, "iops_min": 601, "iops_max": 830, "iops_mean": 761.0, "iops_stddev": 107.65067, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 5.758848, "sys_cpu": 28.194361, "ctx": 14300, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.167038, "20": 0.194878, "50": 0.02784, "100": 0.083519, "250": 94.793987, "500": 4.203786, "750": 0.139198, "1000": 0.055679}, "latency_ms": {"2": 0.139198, "4": 0.139198, "10": 0.055679, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13825, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3513, "write_ticks": 0, "in_queue": 3513, "util": 83.364255}]} 2026-04-19 19:33:20.323123 2026-04-19 19:16:23.943354 -47 1 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627230, "timestamp_ms": 1776627230140, "time": "Sun Apr 19 19:33:50 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14617149440, "io_kbytes": 14274560, "bw_bytes": 2922260983, "bw": 2853770, "iops": 696.721311, "runtime": 5002, "total_ios": 3485, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 609862, "max": 7909763, "mean": 1235339.636729, "stddev": 420265.512128, "N": 3485}, "clat_ns": {"min": 7290, "max": 4212863, "mean": 180311.9934, "stddev": 184963.212105, "N": 3485, "percentile": {"1.000000": 115200, "5.000000": 126464, "10.000000": 130560, "20.000000": 138240, "30.000000": 144384, "40.000000": 150528, "50.000000": 158720, "60.000000": 171008, "70.000000": 183296, "80.000000": 195584, "90.000000": 220160, "95.000000": 246784, "99.000000": 362496, "99.500000": 610304, "99.900000": 3948544, "99.950000": 4112384, "99.990000": 4227072}}, "lat_ns": {"min": 881742, "max": 8112054, "mean": 1420801.754376, "stddev": 489499.745866, "N": 3485}, "bw_min": 2344663, "bw_max": 3183504, "bw_agg": 96.259773, "bw_mean": 2747033.75, "bw_dev": 351177.456917, "bw_samples": 4, "iops_min": 572, "iops_max": 777, "iops_mean": 670.5, "iops_stddev": 85.807925, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 3.539292, "sys_cpu": 31.453709, "ctx": 13864, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.057389, "20": 0.315638, "50": 0.0, "100": 0.028694, "250": 94.748924, "500": 4.246772, "750": 0.172166, "1000": 0.028694}, "latency_ms": {"2": 0.143472, "4": 0.172166, "10": 0.086083, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13685, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3650, "write_ticks": 0, "in_queue": 3649, "util": 87.275628}]} 2026-04-19 19:33:36.812932 2026-04-19 19:16:23.943354 -48 1 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627239, "timestamp_ms": 1776627239952, "time": "Sun Apr 19 19:33:59 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8841592832, "io_kbytes": 8634368, "bw_bytes": 1767611521, "bw": 1726183, "iops": 421.431427, "runtime": 5002, "total_ios": 2108, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1236214, "max": 14680104, "mean": 2062687.896584, "stddev": 937040.881084, "N": 2108}, "clat_ns": {"min": 8000, "max": 5310656, "mean": 282200.759488, "stddev": 296339.889348, "N": 2108, "percentile": {"1.000000": 154624, "5.000000": 171008, "10.000000": 177152, "20.000000": 187392, "30.000000": 197632, "40.000000": 211968, "50.000000": 228352, "60.000000": 244736, "70.000000": 272384, "80.000000": 309248, "90.000000": 366592, "95.000000": 460800, "99.000000": 1302528, "99.500000": 2867200, "99.900000": 4292608, "99.950000": 4554752, "99.990000": 5341184}}, "lat_ns": {"min": 1397014, "max": 15088345, "mean": 2351810.972011, "stddev": 1047679.488734, "N": 2108}, "bw_min": 1563108, "bw_max": 1902737, "bw_agg": 100.0, "bw_mean": 1779979.5, "bw_dev": 154664.919445, "bw_samples": 4, "iops_min": 381, "iops_max": 464, "iops_mean": 434.0, "iops_stddev": 37.797707, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 2.678928, "sys_cpu": 21.371451, "ctx": 8438, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.094877, "20": 0.094877, "50": 0.047438, "100": 0.0, "250": 61.812144, "500": 34.155598, "750": 1.944972, "1000": 0.56926}, "latency_ms": {"2": 0.56926, "4": 0.56926, "10": 0.142315, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8246, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3694, "in_queue": 3694, "util": 89.459948}]} 2026-04-19 19:33:52.220189 2026-04-19 19:16:23.943354 -49 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:34:07.019429 2026-04-19 19:34:07.019432 -50 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:20:52' --until '2026-04-19 19:34:04' 0 OOM records. 2026-04-19 19:20:52.477774 2026-04-19 19:34:04.994626 -51 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:20:52' --until '2026-04-19 19:34:04' 0 Systemd errors records 2026-04-19 19:20:52.477774 2026-04-19 19:34:04.994626 -52 1 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 274MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-193415Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:34:20.027573 2026-04-19 19:16:23.943354 -63 1 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-193415Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627377, "timestamp_ms": 1776627377428, "time": "Sun Apr 19 19:36:17 2026", "jobs": [{"jobname": "seq_read_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_256k", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "274MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260419-193415Z/testfiles", "offset_increment": "3k", "bs": "256k", "iodepth": "1", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12177113088, "io_kbytes": 11891712, "bw_bytes": 1014674867, "bw": 990893, "iops": 3870.677444, "runtime": 12001, "total_ios": 46452, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 101660, "max": 6649880, "mean": 114135.983854, "stddev": 55669.002643, "N": 46452}, "clat_ns": {"min": 6800, "max": 20344270, "mean": 132234.452962, "stddev": 266295.760177, "N": 46452, "percentile": {"1.000000": 80384, "5.000000": 83456, "10.000000": 85504, "20.000000": 92672, "30.000000": 96768, "40.000000": 100864, "50.000000": 103936, "60.000000": 108032, "70.000000": 112128, "80.000000": 118272, "90.000000": 144384, "95.000000": 185344, "99.000000": 774144, "99.500000": 1777664, "99.900000": 4227072, "99.950000": 4685824, "99.990000": 7110656}}, "lat_ns": {"min": 179831, "max": 20505971, "mean": 248744.262464, "stddev": 276140.690408, "N": 46452}, "bw_min": 566784, "bw_max": 1141504, "bw_agg": 99.165458, "bw_mean": 982624.454545, "bw_dev": 211397.892732, "bw_samples": 11, "iops_min": 2214, "iops_max": 4459, "iops_mean": 3838.272727, "iops_stddev": 825.889471, "iops_samples": 11}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 3.8, "sys_cpu": 60.216667, "ctx": 46482, "majf": 0, "minf": 85, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.096874, "20": 0.092569, "50": 0.0, "100": 38.030655, "250": 60.074916, "500": 0.57694, "750": 0.116249, "1000": 0.137777}, "latency_ms": {"2": 0.469302, "4": 0.282012, "10": 0.118402, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 46337, "write_ios": 26, "read_merges": 0, "write_merges": 10, "read_ticks": 7372, "write_ticks": 8, "in_queue": 7383, "util": 73.885985}]} 2026-04-19 19:35:57.370449 2026-04-19 19:16:23.943354 -64 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:36:24.077396 2026-04-19 19:36:24.077399 -53 1 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-193415Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:34:19.98305 2026-04-19 19:16:23.943354 -54 1 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-193415Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:34:20.223745 2026-04-19 19:16:23.943354 -55 1 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-193415Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:34:44.593167 2026-04-19 19:16:23.943354 -56 1 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 274MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-193415Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:34:44.41551 2026-04-19 19:16:23.943354 -57 1 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-193415Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:02.394188 2026-04-19 19:16:23.943354 -58 1 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 274MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-193415Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:21.076277 2026-04-19 19:16:23.943354 -59 1 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-193415Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:21.08898 2026-04-19 19:16:23.943354 -60 1 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-193415Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:21.447314 2026-04-19 19:16:23.943354 -61 1 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 274MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-193415Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:40.857834 2026-04-19 19:16:23.943354 -62 1 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-193415Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:40.877983 2026-04-19 19:16:23.943354 -67 1 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627399, "timestamp_ms": 1776627399104, "time": "Sun Apr 19 19:36:39 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7553941504, "io_kbytes": 7376896, "bw_bytes": 1510486203, "bw": 1475084, "iops": 1440.511898, "runtime": 5001, "total_ios": 7204, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 394232, "max": 5509307, "mean": 504444.692671, "stddev": 152874.495043, "N": 7204}, "clat_ns": {"min": 9790, "max": 3465790, "mean": 174395.409911, "stddev": 69463.300399, "N": 7204, "percentile": {"1.000000": 129536, "5.000000": 138240, "10.000000": 142336, "20.000000": 148480, "30.000000": 154624, "40.000000": 158720, "50.000000": 162816, "60.000000": 168960, "70.000000": 175104, "80.000000": 183296, "90.000000": 207872, "95.000000": 261120, "99.000000": 337920, "99.500000": 399360, "99.900000": 782336, "99.950000": 1302528, "99.990000": 3457024}}, "lat_ns": {"min": 525022, "max": 6628330, "mean": 682576.388673, "stddev": 191911.811679, "N": 7204}, "bw_min": 1422336, "bw_max": 1519120, "bw_agg": 100.0, "bw_mean": 1483788.0, "bw_dev": 42668.568041, "bw_samples": 4, "iops_min": 1389, "iops_max": 1483, "iops_mean": 1448.75, "iops_stddev": 41.443737, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 0.0, "sys_cpu": 36.34, "ctx": 14423, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.013881, "20": 0.152693, "50": 0.013881, "100": 0.013881, "250": 94.017213, "500": 5.510827, "750": 0.166574, "1000": 0.041644}, "latency_ms": {"2": 0.041644, "4": 0.027762, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 7, "write_ios": 14004, "read_merges": 0, "write_merges": 0, "read_ticks": 2, "write_ticks": 3485, "in_queue": 3488, "util": 83.9048}]} 2026-04-19 19:36:31.06969 2026-04-19 19:16:23.943354 -68 1 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627408, "timestamp_ms": 1776627408804, "time": "Sun Apr 19 19:36:48 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "256k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 3383754752, "io_kbytes": 3304448, "bw_bytes": 676615627, "bw": 660757, "iops": 2581.083783, "runtime": 5001, "total_ios": 12908, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 86040, "max": 452324208, "mean": 166799.13418, "stddev": 3980781.930035, "N": 12908}, "clat_ns": {"min": 9380, "max": 123195217, "mean": 206851.178804, "stddev": 1149144.425152, "N": 12908, "percentile": {"1.000000": 112128, "5.000000": 119296, "10.000000": 123392, "20.000000": 128512, "30.000000": 132096, "40.000000": 136192, "50.000000": 142336, "60.000000": 150528, "70.000000": 171008, "80.000000": 197632, "90.000000": 236544, "95.000000": 272384, "99.000000": 1302528, "99.500000": 3063808, "99.900000": 6258688, "99.950000": 7962624, "99.990000": 10682368}}, "lat_ns": {"min": 213130, "max": 452638149, "mean": 376294.508909, "stddev": 4144583.557136, "N": 12908}, "bw_min": 363776, "bw_max": 888576, "bw_agg": 93.559142, "bw_mean": 618199.5, "bw_dev": 236720.242381, "bw_samples": 4, "iops_min": 1421, "iops_max": 3471, "iops_mean": 2414.75, "iops_stddev": 924.661515, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 16.6, "sys_cpu": 24.94, "ctx": 12921, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.046483, "20": 0.21692, "50": 0.0, "100": 0.01, "250": 92.175395, "500": 6.120236, "750": 0.170437, "1000": 0.05423}, "latency_ms": {"2": 0.426092, "4": 0.472575, "10": 0.294391, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 12478, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3115, "in_queue": 3689, "util": 81.97511}]} 2026-04-19 19:36:41.526728 2026-04-19 19:16:23.943354 -69 1 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627419, "timestamp_ms": 1776627419060, "time": "Sun Apr 19 19:36:59 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_64k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1274871808, "io_kbytes": 1244992, "bw_bytes": 254923376, "bw": 248948, "iops": 3889.822036, "runtime": 5001, "total_ios": 19453, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 91160, "max": 3805502, "mean": 107360.977381, "stddev": 58369.454306, "N": 19453}, "clat_ns": {"min": 5940, "max": 15427086, "mean": 137900.050995, "stddev": 328232.247415, "N": 19453, "percentile": {"1.000000": 73216, "5.000000": 79360, "10.000000": 80384, "20.000000": 85504, "30.000000": 87552, "40.000000": 89600, "50.000000": 92672, "60.000000": 97792, "70.000000": 108032, "80.000000": 144384, "90.000000": 179200, "95.000000": 201728, "99.000000": 561152, "99.500000": 2211840, "99.900000": 4947968, "99.950000": 6324224, "99.990000": 9371648}}, "lat_ns": {"min": 161440, "max": 15556556, "mean": 247559.608287, "stddev": 339529.744624, "N": 19453}, "bw_min": 128704, "bw_max": 308032, "bw_agg": 100.0, "bw_mean": 249856.0, "bw_dev": 84411.091088, "bw_samples": 4, "iops_min": 2011, "iops_max": 4813, "iops_mean": 3904.0, "iops_stddev": 1318.923298, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 22.06, "sys_cpu": 29.42, "ctx": 19461, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.133655, "20": 0.138796, "50": 0.0, "100": 63.054542, "250": 34.534519, "500": 1.094947, "750": 0.138796, "1000": 0.056547}, "latency_ms": {"2": 0.303295, "4": 0.34442, "10": 0.195343, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 7, "write_ios": 18869, "read_merges": 0, "write_merges": 1, "read_ticks": 1, "write_ticks": 2610, "in_queue": 2611, "util": 77.009646}]} 2026-04-19 19:36:51.21382 2026-04-19 19:16:23.943354 -70 1 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627429, "timestamp_ms": 1776627429439, "time": "Sun Apr 19 19:37:09 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_read_1M", "numjobs": "1", "size": "100MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13826523136, "io_kbytes": 13502464, "bw_bytes": 2764198947, "bw": 2699413, "iops": 2636.145542, "runtime": 5002, "total_ios": 13186, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 135301, "max": 4319513, "mean": 151820.988624, "stddev": 81750.113435, "N": 13186}, "clat_ns": {"min": 9040, "max": 4435654, "mean": 215993.385257, "stddev": 149751.59583, "N": 13186, "percentile": {"1.000000": 140288, "5.000000": 152576, "10.000000": 160768, "20.000000": 177152, "30.000000": 187392, "40.000000": 195584, "50.000000": 201728, "60.000000": 207872, "70.000000": 216064, "80.000000": 228352, "90.000000": 257024, "95.000000": 301056, "99.000000": 415744, "99.500000": 815104, "99.900000": 2801664, "99.950000": 3555328, "99.990000": 4423680}}, "lat_ns": {"min": 269691, "max": 4590334, "mean": 370130.061201, "stddev": 173092.577666, "N": 13186}, "bw_min": 2601430, "bw_max": 2839552, "bw_agg": 100.0, "bw_mean": 2766071.25, "bw_dev": 110679.284275, "bw_samples": 4, "iops_min": 2540, "iops_max": 2773, "iops_mean": 2701.0, "iops_stddev": 108.243553, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 17.696461, "sys_cpu": 38.65227, "ctx": 13199, "majf": 0, "minf": 276, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.037919, "20": 0.227514, "50": 0.01, "100": 0.022751, "250": 88.563628, "500": 10.412559, "750": 0.204763, "1000": 0.075838}, "latency_ms": {"2": 0.250265, "4": 0.15926, "10": 0.037919, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 12826, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3237, "write_ticks": 0, "in_queue": 3237, "util": 82.440231}]} 2026-04-19 19:37:01.1224 2026-04-19 19:16:23.943354 -71 1 loader /usr/bin/fio --name seq_read_64k --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627439, "timestamp_ms": 1776627439369, "time": "Sun Apr 19 19:37:19 2026", "jobs": [{"jobname": "seq_read_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_read_64k", "numjobs": "1", "size": "100MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 1443758080, "io_kbytes": 1409920, "bw_bytes": 288693877, "bw": 281927, "iops": 4405.118976, "runtime": 5001, "total_ios": 22030, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 86140, "max": 3517911, "mean": 100834.052519, "stddev": 37579.742887, "N": 22030}, "clat_ns": {"min": 4830, "max": 21048633, "mean": 115163.144848, "stddev": 335604.549654, "N": 22030, "percentile": {"1.000000": 58624, "5.000000": 64768, "10.000000": 68096, "20.000000": 74240, "30.000000": 78336, "40.000000": 80384, "50.000000": 82432, "60.000000": 84480, "70.000000": 87552, "80.000000": 94720, "90.000000": 126464, "95.000000": 162816, "99.000000": 798720, "99.500000": 1826816, "99.900000": 4489216, "99.950000": 5341184, "99.990000": 9240576}}, "lat_ns": {"min": 147350, "max": 21303324, "mean": 218015.413527, "stddev": 341951.736848, "N": 22030}, "bw_min": 181258, "bw_max": 341056, "bw_agg": 98.27629, "bw_mean": 277068.5, "bw_dev": 68659.343474, "bw_samples": 4, "iops_min": 2832, "iops_max": 5329, "iops_mean": 4329.0, "iops_stddev": 1072.867497, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.72, "sys_cpu": 59.36, "ctx": 22039, "majf": 0, "minf": 36, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.136178, "20": 0.086246, "50": 0.01, "100": 83.313663, "250": 14.879709, "500": 0.417612, "750": 0.136178, "1000": 0.090785}, "latency_ms": {"2": 0.490241, "4": 0.285974, "10": 0.145256, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 21441, "write_ios": 25, "read_merges": 0, "write_merges": 9, "read_ticks": 2886, "write_ticks": 7, "in_queue": 2894, "util": 69.614375}]} 2026-04-19 19:37:11.582439 2026-04-19 19:16:23.943354 -72 1 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627449, "timestamp_ms": 1776627449155, "time": "Sun Apr 19 19:37:29 2026", "jobs": [{"jobname": "rand_write_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_64k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1168900096, "io_kbytes": 1141504, "bw_bytes": 233733272, "bw": 228255, "iops": 3566.486703, "runtime": 5001, "total_ios": 17836, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 92381, "max": 7859934, "mean": 115896.742824, "stddev": 101998.848989, "N": 17836}, "clat_ns": {"min": 5030, "max": 11935675, "mean": 147211.155192, "stddev": 325820.23155, "N": 17836, "percentile": {"1.000000": 10560, "5.000000": 82432, "10.000000": 84480, "20.000000": 87552, "30.000000": 90624, "40.000000": 93696, "50.000000": 96768, "60.000000": 102912, "70.000000": 118272, "80.000000": 154624, "90.000000": 207872, "95.000000": 242688, "99.000000": 716800, "99.500000": 2506752, "99.900000": 4620288, "99.950000": 6651904, "99.990000": 10289152}}, "lat_ns": {"min": 169281, "max": 12153336, "mean": 267064.674703, "stddev": 349147.898663, "N": 17836}, "bw_min": 168448, "bw_max": 290112, "bw_agg": 92.623541, "bw_mean": 211418.25, "bw_dev": 56435.54496, "bw_samples": 4, "iops_min": 2632, "iops_max": 4533, "iops_mean": 3303.25, "iops_stddev": 881.793768, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.78, "sys_cpu": 41.04, "ctx": 17845, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.953129, "20": 0.257905, "50": 0.0, "100": 54.917022, "250": 39.37542, "500": 3.30231, "750": 0.218659, "1000": 0.128953}, "latency_ms": {"2": 0.257905, "4": 0.437318, "10": 0.140166, "20": 0.011213, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14, "write_ios": 17309, "read_merges": 0, "write_merges": 1, "read_ticks": 4, "write_ticks": 2483, "in_queue": 2486, "util": 47.238401}]} 2026-04-19 19:37:21.790907 2026-04-19 19:16:23.943354 -73 1 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627459, "timestamp_ms": 1776627459040, "time": "Sun Apr 19 19:37:39 2026", "jobs": [{"jobname": "rand_write_16k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_16k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "16k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 255066112, "io_kbytes": 249088, "bw_bytes": 50982632, "bw": 49787, "iops": 3111.73296, "runtime": 5003, "total_ios": 15568, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 55980, "max": 5112165, "mean": 107926.932618, "stddev": 57984.987753, "N": 15568}, "clat_ns": {"min": 4360, "max": 298339339, "mean": 199917.118191, "stddev": 3001818.714926, "N": 15568, "percentile": {"1.000000": 64768, "5.000000": 74240, "10.000000": 81408, "20.000000": 85504, "30.000000": 91648, "40.000000": 96768, "50.000000": 123392, "60.000000": 179200, "70.000000": 197632, "80.000000": 214016, "90.000000": 257024, "95.000000": 296960, "99.000000": 448512, "99.500000": 987136, "99.900000": 3981312, "99.950000": 4882432, "99.990000": 225443840}}, "lat_ns": {"min": 150291, "max": 298456590, "mean": 310214.720709, "stddev": 3002715.67836, "N": 15568}, "bw_min": 29650, "bw_max": 74992, "bw_agg": 97.092202, "bw_mean": 48340.5, "bw_dev": 19172.630936, "bw_samples": 4, "iops_min": 1853, "iops_max": 4687, "iops_mean": 3021.25, "iops_stddev": 1198.330053, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 9.916034, "sys_cpu": 32.586965, "ctx": 15539, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.61665, "20": 0.077081, "50": 0.0, "100": 42.503854, "250": 45.824769, "500": 10.097636, "750": 0.282631, "1000": 0.109198}, "latency_ms": {"2": 0.160586, "4": 0.231244, "10": 0.083505, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.01, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 17, "write_ios": 15323, "read_merges": 0, "write_merges": 0, "read_ticks": 7, "write_ticks": 3119, "in_queue": 3639, "util": 67.48343}]} 2026-04-19 19:37:31.302049 2026-04-19 19:16:23.943354 -74 1 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627468, "timestamp_ms": 1776627468593, "time": "Sun Apr 19 19:37:48 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_4k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 41623552, "io_kbytes": 40648, "bw_bytes": 8323045, "bw": 8127, "iops": 2031.993601, "runtime": 5001, "total_ios": 10162, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93640, "max": 171955342, "mean": 138296.491242, "stddev": 1742418.475613, "N": 10162}, "clat_ns": {"min": 5030, "max": 176337766, "mean": 337202.126451, "stddev": 1806006.956029, "N": 10162, "percentile": {"1.000000": 154624, "5.000000": 175104, "10.000000": 183296, "20.000000": 197632, "30.000000": 207872, "40.000000": 220160, "50.000000": 240640, "60.000000": 268288, "70.000000": 288768, "80.000000": 313344, "90.000000": 366592, "95.000000": 428032, "99.000000": 2998272, "99.500000": 3620864, "99.900000": 5406720, "99.950000": 7045120, "99.990000": 10682368}}, "lat_ns": {"min": 245091, "max": 176505456, "mean": 478570.286361, "stddev": 2511900.384259, "N": 10162}, "bw_min": 3856, "bw_max": 11508, "bw_agg": 100.0, "bw_mean": 8229.5, "bw_dev": 3195.967198, "bw_samples": 4, "iops_min": 964, "iops_max": 2877, "iops_mean": 2057.25, "iops_stddev": 798.948215, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.86, "sys_cpu": 24.92, "ctx": 10131, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.560913, "20": 0.0, "50": 0.0, "100": 0.0, "250": 52.794725, "500": 43.160795, "750": 0.698681, "1000": 0.295217}, "latency_ms": {"2": 0.777406, "4": 1.407203, "10": 0.275536, "20": 0.019681, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 3, "write_ios": 9878, "read_merges": 0, "write_merges": 16, "read_ticks": 2, "write_ticks": 1856, "in_queue": 2026, "util": 57.188755}]} 2026-04-19 19:37:41.277231 2026-04-19 19:16:23.943354 -75 1 loader /usr/bin/fio --name rand_read_16k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627480, "timestamp_ms": 1776627480799, "time": "Sun Apr 19 19:38:00 2026", "jobs": [{"jobname": "rand_read_16k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_read_16k", "numjobs": "1", "size": "100MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "16k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 382255104, "io_kbytes": 373296, "bw_bytes": 76435733, "bw": 74644, "iops": 4665.266947, "runtime": 5001, "total_ios": 23331, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 82640, "max": 2234347, "mean": 97565.102653, "stddev": 29478.739951, "N": 23331}, "clat_ns": {"min": 5330, "max": 7216671, "mean": 105631.799194, "stddev": 238048.60929, "N": 23331, "percentile": {"1.000000": 54016, "5.000000": 57600, "10.000000": 62720, "20.000000": 68096, "30.000000": 72192, "40.000000": 75264, "50.000000": 78336, "60.000000": 82432, "70.000000": 84480, "80.000000": 89600, "90.000000": 113152, "95.000000": 146432, "99.000000": 1073152, "99.500000": 1744896, "99.900000": 3686400, "99.950000": 4751360, "99.990000": 6127616}}, "lat_ns": {"min": 134120, "max": 7347332, "mean": 204991.003386, "stddev": 244025.952318, "N": 23331}, "bw_min": 37856, "bw_max": 87376, "bw_agg": 95.498287, "bw_mean": 71284.0, "bw_dev": 23098.231505, "bw_samples": 4, "iops_min": 2366, "iops_max": 5461, "iops_mean": 4455.25, "iops_stddev": 1443.639469, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 21.36, "sys_cpu": 45.8, "ctx": 23306, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.145729, "20": 0.042861, "50": 0.090009, "100": 86.400069, "250": 11.872616, "500": 0.214307, "750": 0.128584, "1000": 0.094295}, "latency_ms": {"2": 0.651494, "4": 0.295744, "10": 0.064292, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23087, "write_ios": 1, "read_merges": 0, "write_merges": 5, "read_ticks": 2950, "write_ticks": 0, "in_queue": 2951, "util": 67.788557}]} 2026-04-19 19:37:51.289047 2026-04-19 19:16:23.943354 -76 1 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627493, "timestamp_ms": 1776627493154, "time": "Sun Apr 19 19:38:13 2026", "jobs": [{"jobname": "rand_read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_read_4k", "numjobs": "1", "size": "100MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 98189312, "io_kbytes": 95888, "bw_bytes": 19633935, "bw": 19173, "iops": 4793.441312, "runtime": 5001, "total_ios": 23972, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78220, "max": 17521363, "mean": 95336.833306, "stddev": 126857.113531, "N": 23972}, "clat_ns": {"min": 4540, "max": 21261974, "mean": 101455.809319, "stddev": 297563.767729, "N": 23972, "percentile": {"1.000000": 49920, "5.000000": 52480, "10.000000": 55040, "20.000000": 62208, "30.000000": 68096, "40.000000": 71168, "50.000000": 75264, "60.000000": 79360, "70.000000": 82432, "80.000000": 87552, "90.000000": 111104, "95.000000": 142336, "99.000000": 806912, "99.500000": 1613824, "99.900000": 3817472, "99.950000": 4751360, "99.990000": 7897088}}, "lat_ns": {"min": 126490, "max": 21342894, "mean": 198827.299933, "stddev": 330586.774563, "N": 23972}, "bw_min": 11416, "bw_max": 23156, "bw_agg": 95.578518, "bw_mean": 18326.25, "bw_dev": 5333.559185, "bw_samples": 4, "iops_min": 2854, "iops_max": 5789, "iops_mean": 4581.25, "iops_stddev": 1333.34701, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 13.677265, "sys_cpu": 52.609478, "ctx": 23918, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.120974, "20": 0.066745, "50": 1.059569, "100": 86.004505, "250": 11.409144, "500": 0.183547, "750": 0.154347, "1000": 0.062573}, "latency_ms": {"2": 0.617387, "4": 0.24612, "10": 0.066745, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22849, "write_ios": 3, "read_merges": 0, "write_merges": 5, "read_ticks": 2879, "write_ticks": 60, "in_queue": 2941, "util": 70.689303}]} 2026-04-19 19:38:02.880808 2026-04-19 19:16:23.943354 -77 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:38:18.953895 2026-04-19 19:38:18.953898 -78 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:36:28' --until '2026-04-19 19:38:17' 0 OOM records. 2026-04-19 19:36:28.940886 2026-04-19 19:38:17.139284 -79 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:36:28' --until '2026-04-19 19:38:17' 0 Systemd errors records 2026-04-19 19:36:28.940886 2026-04-19 19:38:17.139284 -80 1 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627517, "timestamp_ms": 1776627517804, "time": "Sun Apr 19 19:38:37 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 10, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 18216910848, "io_kbytes": 17789952, "bw_bytes": 2024551105, "bw": 1977100, "iops": 1930.762392, "runtime": 8998, "total_ios": 17373, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 137441, "max": 4294693, "mean": 175778.606286, "stddev": 79093.341249, "N": 17373}, "clat_ns": {"min": 9450, "max": 13181500, "mean": 326658.240718, "stddev": 259845.449268, "N": 17373, "percentile": {"1.000000": 222208, "5.000000": 236544, "10.000000": 248832, "20.000000": 264192, "30.000000": 276480, "40.000000": 284672, "50.000000": 296960, "60.000000": 309248, "70.000000": 329728, "80.000000": 354304, "90.000000": 391168, "95.000000": 432128, "99.000000": 741376, "99.500000": 1036288, "99.900000": 4620288, "99.950000": 6324224, "99.990000": 7634944}}, "lat_ns": {"min": 342421, "max": 13407000, "mean": 505901.212629, "stddev": 280301.197399, "N": 17373}, "bw_min": 1456719, "bw_max": 2238273, "bw_agg": 98.529529, "bw_mean": 1948028.375, "bw_dev": 294962.426894, "bw_samples": 8, "iops_min": 1422, "iops_max": 2185, "iops_mean": 1902.0, "iops_stddev": 288.045631, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 9000, "usr_cpu": 15.055556, "sys_cpu": 25.144444, "ctx": 17435, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.040292, "20": 0.074829, "50": 0.0, "100": 0.0, "250": 10.700512, "500": 87.037357, "750": 1.185748, "1000": 0.448973}, "latency_ms": {"2": 0.178438, "4": 0.207218, "10": 0.120877, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 3, "write_ios": 17109, "read_merges": 0, "write_merges": 0, "read_ticks": 1, "write_ticks": 5840, "in_queue": 5841, "util": 88.571747}]} 2026-04-19 19:38:26.446109 2026-04-19 19:16:23.943354 -81 1 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627531, "timestamp_ms": 1776627531606, "time": "Sun Apr 19 19:38:51 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 10, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "256k", "iodepth": "1", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7231242240, "io_kbytes": 7061760, "bw_bytes": 803382095, "bw": 784552, "iops": 3064.659482, "runtime": 9001, "total_ios": 27585, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 90231, "max": 501320955, "mean": 149010.300489, "stddev": 3018281.031779, "N": 27585}, "clat_ns": {"min": 5690, "max": 108172732, "mean": 164942.978467, "stddev": 697900.25325, "N": 27585, "percentile": {"1.000000": 107008, "5.000000": 112128, "10.000000": 115200, "20.000000": 119296, "30.000000": 122368, "40.000000": 126464, "50.000000": 129536, "60.000000": 134144, "70.000000": 138240, "80.000000": 150528, "90.000000": 199680, "95.000000": 244736, "99.000000": 456704, "99.500000": 1515520, "99.900000": 4014080, "99.950000": 5406720, "99.990000": 9109504}}, "lat_ns": {"min": 212421, "max": 501699026, "mean": 316176.682001, "stddev": 3099619.631261, "N": 27585}, "bw_min": 355584, "bw_max": 958976, "bw_agg": 97.308043, "bw_mean": 763433.5, "bw_dev": 245704.305649, "bw_samples": 8, "iops_min": 1389, "iops_max": 3746, "iops_mean": 2982.125, "iops_stddev": 959.750628, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 9000, "usr_cpu": 22.022222, "sys_cpu": 25.711111, "ctx": 27616, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.058003, "20": 0.199384, "50": 0.01, "100": 0.061628, "250": 94.990031, "500": 3.719413, "750": 0.148632, "1000": 0.145006}, "latency_ms": {"2": 0.300888, "4": 0.271887, "10": 0.094254, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 9, "write_ios": 27158, "read_merges": 0, "write_merges": 6, "read_ticks": 2, "write_ticks": 6122, "in_queue": 6732, "util": 80.588694}]} 2026-04-19 19:38:39.957783 2026-04-19 19:16:23.943354 -87 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:38:24' --until '2026-04-19 19:39:47' 0 OOM records. 2026-04-19 19:38:24.331158 2026-04-19 19:39:47.414478 -88 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:38:24' --until '2026-04-19 19:39:47' 0 Systemd errors records 2026-04-19 19:38:24.331158 2026-04-19 19:39:47.414478 -89 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:39:57.096053 2026-04-19 19:39:57.096056 -90 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:39:54' --until '2026-04-19 19:39:55' 0 OOM records. 2026-04-19 19:39:54.039808 2026-04-19 19:39:55.102761 -1034 28 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-24 15:50:58.118057 2026-04-24 15:50:58.11806 -82 1 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627544, "timestamp_ms": 1776627544587, "time": "Sun Apr 19 19:39:04 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "seq_write_64k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2128347136, "io_kbytes": 2078464, "bw_bytes": 266010140, "bw": 259775, "iops": 4058.992626, "runtime": 8001, "total_ios": 32476, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 90860, "max": 4173522, "mean": 107031.113284, "stddev": 48387.620904, "N": 32476}, "clat_ns": {"min": 6270, "max": 11028003, "mean": 127369.417631, "stddev": 240937.099298, "N": 32476, "percentile": {"1.000000": 74240, "5.000000": 80384, "10.000000": 82432, "20.000000": 86528, "30.000000": 89600, "40.000000": 91648, "50.000000": 94720, "60.000000": 97792, "70.000000": 103936, "80.000000": 130560, "90.000000": 179200, "95.000000": 205824, "99.000000": 342016, "99.500000": 1351680, "99.900000": 3981312, "99.950000": 4620288, "99.990000": 7503872}}, "lat_ns": {"min": 162520, "max": 11164833, "mean": 236504.065772, "stddev": 249715.136309, "N": 32476}, "bw_min": 148331, "bw_max": 304576, "bw_agg": 97.708203, "bw_mean": 253822.571429, "bw_dev": 54505.21693, "bw_samples": 7, "iops_min": 2317, "iops_max": 4759, "iops_mean": 3965.857143, "iops_stddev": 851.865488, "iops_samples": 7}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 35.7875, "sys_cpu": 17.9, "ctx": 32491, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.061584, "20": 0.206306, "50": 0.0, "100": 63.1143, "250": 34.785688, "500": 1.028452, "750": 0.120089, "1000": 0.064663}, "latency_ms": {"2": 0.258653, "4": 0.264811, "10": 0.092376, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 31931, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 4410, "in_queue": 4410, "util": 78.183415}]} 2026-04-19 19:38:53.91144 2026-04-19 19:16:23.943354 -83 1 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627557, "timestamp_ms": 1776627557426, "time": "Sun Apr 19 19:39:17 2026", "jobs": [{"jobname": "rand_write_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_64k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2113077248, "io_kbytes": 2063552, "bw_bytes": 264101643, "bw": 257911, "iops": 4029.871266, "runtime": 8001, "total_ios": 32243, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 91570, "max": 4202872, "mean": 108859.439134, "stddev": 47480.215313, "N": 32243}, "clat_ns": {"min": 6210, "max": 8387505, "mean": 126656.063456, "stddev": 241490.03702, "N": 32243, "percentile": {"1.000000": 75264, "5.000000": 81408, "10.000000": 83456, "20.000000": 87552, "30.000000": 90624, "40.000000": 92672, "50.000000": 94720, "60.000000": 98816, "70.000000": 104960, "80.000000": 118272, "90.000000": 173056, "95.000000": 214016, "99.000000": 342016, "99.500000": 1073152, "99.900000": 4112384, "99.950000": 4816896, "99.990000": 8093696}}, "lat_ns": {"min": 162651, "max": 8562305, "mean": 237555.099029, "stddev": 250451.175424, "N": 32243}, "bw_min": 154752, "bw_max": 301184, "bw_agg": 97.892007, "bw_mean": 252475.714286, "bw_dev": 59568.845912, "bw_samples": 7, "iops_min": 2418, "iops_max": 4706, "iops_mean": 3944.857143, "iops_stddev": 930.809223, "iops_samples": 7}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 7.725, "sys_cpu": 46.4625, "ctx": 32252, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.114754, "20": 0.093043, "50": 0.0, "100": 62.416649, "250": 34.88199, "500": 1.77713, "750": 0.117855, "1000": 0.080638}, "latency_ms": {"2": 0.176783, "4": 0.238812, "10": 0.102348, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 9, "write_ios": 31702, "read_merges": 0, "write_merges": 0, "read_ticks": 3, "write_ticks": 4405, "in_queue": 4408, "util": 79.739054}]} 2026-04-19 19:39:06.920932 2026-04-19 19:16:23.943354 -84 1 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627570, "timestamp_ms": 1776627570530, "time": "Sun Apr 19 19:39:30 2026", "jobs": [{"jobname": "rand_write_16k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_16k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "16k", "iodepth": "1", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 451035136, "io_kbytes": 440464, "bw_bytes": 56351216, "bw": 55030, "iops": 3439.405297, "runtime": 8004, "total_ios": 27529, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 87970, "max": 11050813, "mean": 106905.260235, "stddev": 84520.196507, "N": 27529}, "clat_ns": {"min": 4520, "max": 216592076, "mean": 170978.597188, "stddev": 1341790.653339, "N": 27529, "percentile": {"1.000000": 66048, "5.000000": 72192, "10.000000": 78336, "20.000000": 83456, "30.000000": 86528, "40.000000": 89600, "50.000000": 93696, "60.000000": 97792, "70.000000": 114176, "80.000000": 205824, "90.000000": 280576, "95.000000": 325632, "99.000000": 1269760, "99.500000": 2572288, "99.900000": 4620288, "99.950000": 5537792, "99.990000": 8716288}}, "lat_ns": {"min": 154201, "max": 216698576, "mean": 280077.540412, "stddev": 1346031.837023, "N": 27529}, "bw_min": 23512, "bw_max": 80767, "bw_agg": 94.9183, "bw_mean": 52234.428571, "bw_dev": 23504.615822, "bw_samples": 7, "iops_min": 1469, "iops_max": 5047, "iops_mean": 3264.285714, "iops_stddev": 1469.040811, "iops_samples": 7}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8004, "usr_cpu": 13.093453, "sys_cpu": 32.871064, "ctx": 27536, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.167097, "20": 0.076283, "50": 0.0, "100": 62.806495, "250": 22.993934, "500": 12.354245, "750": 0.341458, "1000": 0.148934}, "latency_ms": {"2": 0.414109, "4": 0.548512, "10": 0.145301, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14, "write_ios": 27166, "read_merges": 0, "write_merges": 5, "read_ticks": 4, "write_ticks": 4162, "in_queue": 4376, "util": 78.965863}]} 2026-04-19 19:39:20.05556 2026-04-19 19:16:23.943354 -85 1 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627583, "timestamp_ms": 1776627583205, "time": "Sun Apr 19 19:39:43 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_4k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 77479936, "io_kbytes": 75664, "bw_bytes": 9683781, "bw": 9456, "iops": 2364.204474, "runtime": 8001, "total_ios": 18916, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 50720, "max": 4168372, "mean": 116264.327342, "stddev": 44274.831923, "N": 18916}, "clat_ns": {"min": 6490, "max": 10639012, "mean": 291902.00296, "stddev": 369532.228559, "N": 18916, "percentile": {"1.000000": 168960, "5.000000": 183296, "10.000000": 189440, "20.000000": 199680, "30.000000": 207872, "40.000000": 216064, "50.000000": 224256, "60.000000": 236544, "70.000000": 268288, "80.000000": 301056, "90.000000": 350208, "95.000000": 411648, "99.000000": 2211840, "99.500000": 3260416, "99.900000": 4685824, "99.950000": 5210112, "99.990000": 9240576}}, "lat_ns": {"min": 256451, "max": 10775823, "mean": 410520.445919, "stddev": 378070.738047, "N": 18916}, "bw_min": 4836, "bw_max": 11820, "bw_agg": 100.0, "bw_mean": 9858.285714, "bw_dev": 2594.987843, "bw_samples": 7, "iops_min": 1209, "iops_max": 2955, "iops_mean": 2464.571429, "iops_stddev": 648.746961, "iops_samples": 7}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 4.0375, "sys_cpu": 32.3, "ctx": 18923, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.047579, "20": 0.042292, "50": 0.0, "100": 0.0, "250": 64.844576, "500": 32.305984, "750": 0.803553, "1000": 0.237894}, "latency_ms": {"2": 0.618524, "4": 0.903997, "10": 0.190315, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 3, "write_ios": 18793, "read_merges": 0, "write_merges": 0, "read_ticks": 2, "write_ticks": 2885, "in_queue": 2886, "util": 82.07701}]} 2026-04-19 19:39:32.90988 2026-04-19 19:16:23.943354 -91 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:39:54' --until '2026-04-19 19:39:55' 0 Systemd errors records 2026-04-19 19:39:54.039808 2026-04-19 19:39:55.102761 -92 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:40:04.532795 2026-04-19 19:40:04.532798 -93 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:40:02' --until '2026-04-19 19:40:02' 0 OOM records. 2026-04-19 19:40:02.021729 2026-04-19 19:40:02.713173 -94 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:40:02' --until '2026-04-19 19:40:02' 0 Systemd errors records 2026-04-19 19:40:02.021729 2026-04-19 19:40:02.713173 -95 2 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627728, "timestamp_ms": 1776627728422, "time": "Sun Apr 19 19:42:08 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "job_start": 1776627723162, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9314304, "io_kbytes": 9096, "bw_bytes": 1862488, "bw": 1818, "iops": 3637.672466, "runtime": 5001, "total_ios": 18192, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 64850, "max": 3819547, "mean": 123951.378023, "stddev": 87280.481338, "N": 18192}, "clat_ns": {"min": 22889, "max": 9859023, "mean": 135815.826572, "stddev": 102095.577505, "N": 18192, "percentile": {"1.000000": 23680, "5.000000": 24704, "10.000000": 25728, "20.000000": 119296, "30.000000": 126464, "40.000000": 132096, "50.000000": 138240, "60.000000": 146432, "70.000000": 158720, "80.000000": 175104, "90.000000": 199680, "95.000000": 220160, "99.000000": 280576, "99.500000": 305152, "99.900000": 358400, "99.950000": 419840, "99.990000": 5472256}}, "lat_ns": {"min": 170009, "max": 9949962, "mean": 259767.204595, "stddev": 105069.000154, "N": 18192}, "bw_min": 1791, "bw_max": 1853, "bw_agg": 100.0, "bw_mean": 1819.4, "bw_dev": 22.142719, "bw_samples": 5, "iops_min": 3582, "iops_max": 3707, "iops_mean": 3639.2, "iops_stddev": 44.628466, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 56.68, "sys_cpu": 10.5, "ctx": 18213, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 16.782102, "100": 0.170405, "250": 80.876209, "500": 2.127309, "750": 0.016491, "1000": 0.010994}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.010994, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 18194, "read_sectors": 0, "write_sectors": 34350, "read_merges": 0, "write_merges": 2302, "read_ticks": 0, "write_ticks": 2365, "in_queue": 2372, "util": 94.529412}]} 2026-04-19 19:42:02.719774 2026-04-19 19:16:23.943354 -96 2 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627805, "timestamp_ms": 1776627805224, "time": "Sun Apr 19 19:43:25 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "job_start": 1776627799964, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13834240, "io_kbytes": 13510, "bw_bytes": 2766294, "bw": 2701, "iops": 5402.919416, "runtime": 5001, "total_ios": 27020, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 51310, "max": 1151523, "mean": 81669.765285, "stddev": 39310.492192, "N": 27020}, "clat_ns": {"min": 19280, "max": 13984701, "mean": 92984.343079, "stddev": 91688.74408, "N": 27020, "percentile": {"1.000000": 21120, "5.000000": 22144, "10.000000": 23168, "20.000000": 66048, "30.000000": 94720, "40.000000": 96768, "50.000000": 98816, "60.000000": 101888, "70.000000": 105984, "80.000000": 115200, "90.000000": 125440, "95.000000": 140288, "99.000000": 168960, "99.500000": 183296, "99.900000": 216064, "99.950000": 254976, "99.990000": 561152}}, "lat_ns": {"min": 104920, "max": 14062271, "mean": 174654.108364, "stddev": 89156.019005, "N": 27020}, "bw_min": 2666, "bw_max": 2750, "bw_agg": 99.98301, "bw_mean": 2701.8, "bw_dev": 30.597386, "bw_samples": 5, "iops_min": 5333, "iops_max": 5498, "iops_mean": 5404.4, "iops_stddev": 59.751987, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 77.14, "sys_cpu": 3.34, "ctx": 19673, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.011103, "50": 14.19319, "100": 41.025167, "250": 44.715026, "500": 0.044412, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 25665, "write_ios": 0, "read_sectors": 25665, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2733, "write_ticks": 0, "in_queue": 2733, "util": 97.051546}]} 2026-04-19 19:42:08.539215 2026-04-19 19:16:23.943354 -97 2 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627880, "timestamp_ms": 1776627880268, "time": "Sun Apr 19 19:44:40 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "job_start": 1776627874968, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13133824, "io_kbytes": 12826, "bw_bytes": 2626239, "bw": 2564, "iops": 5129.374125, "runtime": 5001, "total_ios": 25652, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 53569, "max": 10692471, "mean": 84671.419694, "stddev": 81492.979141, "N": 25652}, "clat_ns": {"min": 20880, "max": 9768586, "mean": 97292.624123, "stddev": 69918.90537, "N": 25652, "percentile": {"1.000000": 22144, "5.000000": 23168, "10.000000": 25472, "20.000000": 94720, "30.000000": 97792, "40.000000": 98816, "50.000000": 100864, "60.000000": 104960, "70.000000": 109056, "80.000000": 113152, "90.000000": 123392, "95.000000": 146432, "99.000000": 179200, "99.500000": 191488, "99.900000": 226304, "99.950000": 264192, "99.990000": 1011712}}, "lat_ns": {"min": 113759, "max": 10737331, "mean": 181964.043817, "stddev": 97044.03655, "N": 25652}, "bw_min": 2526, "bw_max": 2638, "bw_agg": 99.973232, "bw_mean": 2564.8, "bw_dev": 45.636608, "bw_samples": 5, "iops_min": 5053, "iops_max": 5276, "iops_mean": 5129.8, "iops_stddev": 91.061518, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 64.26, "sys_cpu": 15.52, "ctx": 20364, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 12.540932, "100": 32.28988, "250": 55.114611, "500": 0.042882, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 24566, "write_ios": 1, "read_sectors": 24566, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2751, "write_ticks": 0, "in_queue": 2752, "util": 90.044971}]} 2026-04-19 19:43:25.330709 2026-04-19 19:16:23.943354 -98 2 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627886, "timestamp_ms": 1776627886319, "time": "Sun Apr 19 19:44:46 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "job_start": 1776627880782, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7384576, "io_kbytes": 7211, "bw_bytes": 1476619, "bw": 1442, "iops": 2884.023195, "runtime": 5001, "total_ios": 14423, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 72210, "max": 3267832, "mean": 303469.512099, "stddev": 61046.468405, "N": 14423}, "clat_ns": {"min": 21399, "max": 556137, "mean": 27557.9324, "stddev": 21670.910821, "N": 14423, "percentile": {"1.000000": 22400, "5.000000": 22656, "10.000000": 22912, "20.000000": 23168, "30.000000": 23168, "40.000000": 23424, "50.000000": 23680, "60.000000": 23936, "70.000000": 24448, "80.000000": 25216, "90.000000": 27520, "95.000000": 35072, "99.000000": 146432, "99.500000": 171008, "99.900000": 292864, "99.950000": 325632, "99.990000": 407552}}, "lat_ns": {"min": 201399, "max": 3295832, "mean": 331027.444498, "stddev": 56635.386587, "N": 14423}, "bw_min": 1401, "bw_max": 1469, "bw_agg": 99.999255, "bw_mean": 1442.2, "bw_dev": 25.587106, "bw_samples": 5, "iops_min": 2803, "iops_max": 2939, "iops_mean": 2885.0, "iops_stddev": 50.911688, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.14, "sys_cpu": 71.9, "ctx": 14413, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 97.815988, "100": 0.159468, "250": 1.85121, "500": 0.166401, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 13821, "read_sectors": 0, "write_sectors": 110387, "read_merges": 0, "write_merges": 23932, "read_ticks": 0, "write_ticks": 2125, "in_queue": 2424, "util": 55.605657}]} 2026-04-19 19:44:40.375169 2026-04-19 19:16:23.943354 -99 2 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627892, "timestamp_ms": 1776627892124, "time": "Sun Apr 19 19:44:52 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "job_start": 1776627886828, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 55480320, "io_kbytes": 54180, "bw_bytes": 11093845, "bw": 10833, "iops": 2708.458308, "runtime": 5001, "total_ios": 13545, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 100210, "max": 1241104, "mean": 141425.721226, "stddev": 57864.215923, "N": 13545}, "clat_ns": {"min": 22690, "max": 2134268, "mean": 211164.847176, "stddev": 60578.577233, "N": 13545, "percentile": {"1.000000": 28032, "5.000000": 162816, "10.000000": 166912, "20.000000": 173056, "30.000000": 177152, "40.000000": 183296, "50.000000": 193536, "60.000000": 211968, "70.000000": 230400, "80.000000": 248832, "90.000000": 280576, "95.000000": 317440, "99.000000": 387072, "99.500000": 411648, "99.900000": 493568, "99.950000": 602112, "99.990000": 1548288}}, "lat_ns": {"min": 259289, "max": 2297377, "mean": 352590.568402, "stddev": 77710.77554, "N": 13545}, "bw_min": 10621, "bw_max": 10980, "bw_agg": 100.0, "bw_mean": 10837.8, "bw_dev": 147.601491, "bw_samples": 5, "iops_min": 2655, "iops_max": 2745, "iops_mean": 2709.0, "iops_stddev": 37.15508, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 26.5, "sys_cpu": 32.02, "ctx": 13767, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.764489, "100": 0.0, "250": 78.427464, "500": 19.719454, "750": 0.059062, "1000": 0.0}, "latency_ms": {"2": 0.022148, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 12962, "read_sectors": 0, "write_sectors": 103976, "read_merges": 0, "write_merges": 35, "read_ticks": 0, "write_ticks": 1977, "in_queue": 2129, "util": 47.033552}]} 2026-04-19 19:44:46.429715 2026-04-19 19:16:23.943354 -100 2 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627915, "timestamp_ms": 1776627915429, "time": "Sun Apr 19 19:45:15 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "job_start": 1776627910214, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 111341568, "io_kbytes": 108732, "bw_bytes": 22263860, "bw": 21742, "iops": 5435.512897, "runtime": 5001, "total_ios": 27183, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 49789, "max": 592687, "mean": 74895.588419, "stddev": 30167.163394, "N": 27183}, "clat_ns": {"min": 20510, "max": 1454413, "mean": 98017.878527, "stddev": 30331.478219, "N": 27183, "percentile": {"1.000000": 21888, "5.000000": 55040, "10.000000": 62208, "20.000000": 90624, "30.000000": 92672, "40.000000": 94720, "50.000000": 96768, "60.000000": 99840, "70.000000": 104960, "80.000000": 112128, "90.000000": 130560, "95.000000": 150528, "99.000000": 177152, "99.500000": 189440, "99.900000": 238592, "99.950000": 261120, "99.990000": 387072}}, "lat_ns": {"min": 106240, "max": 1550752, "mean": 172913.466946, "stddev": 31977.888099, "N": 27183}, "bw_min": 21406, "bw_max": 22134, "bw_agg": 100.0, "bw_mean": 21750.6, "bw_dev": 273.045417, "bw_samples": 5, "iops_min": 5351, "iops_max": 5533, "iops_mean": 5436.6, "iops_stddev": 68.668042, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 37.68, "sys_cpu": 41.26, "ctx": 21759, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 4.72354, "100": 54.298643, "250": 40.904242, "500": 0.066218, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26964, "write_ios": 1, "read_sectors": 215712, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2800, "write_ticks": 0, "in_queue": 2800, "util": 50.16815}]} 2026-04-19 19:44:52.238926 2026-04-19 19:16:23.943354 -101 2 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627938, "timestamp_ms": 1776627938223, "time": "Sun Apr 19 19:45:38 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "job_start": 1776627933057, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 110960640, "io_kbytes": 108360, "bw_bytes": 22187690, "bw": 21667, "iops": 5416.916617, "runtime": 5001, "total_ios": 27090, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 51190, "max": 534987, "mean": 75685.149243, "stddev": 33329.955587, "N": 27090}, "clat_ns": {"min": 19730, "max": 6722953, "mean": 96716.198597, "stddev": 55467.93443, "N": 27090, "percentile": {"1.000000": 21120, "5.000000": 22400, "10.000000": 55040, "20.000000": 92672, "30.000000": 93696, "40.000000": 95744, "50.000000": 98816, "60.000000": 102912, "70.000000": 105984, "80.000000": 110080, "90.000000": 120320, "95.000000": 138240, "99.000000": 166912, "99.500000": 179200, "99.900000": 218112, "99.950000": 254976, "99.990000": 1433600}}, "lat_ns": {"min": 102209, "max": 6786363, "mean": 172401.347841, "stddev": 53539.364762, "N": 27090}, "bw_min": 21253, "bw_max": 22164, "bw_agg": 100.0, "bw_mean": 21673.8, "bw_dev": 425.333046, "bw_samples": 5, "iops_min": 5314, "iops_max": 5539, "iops_mean": 5418.4, "iops_stddev": 105.315241, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 66.54, "sys_cpu": 12.82, "ctx": 21309, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.040605, "50": 8.781838, "100": 44.204504, "250": 46.91399, "500": 0.044297, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26636, "write_ios": 1, "read_sectors": 213088, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2812, "write_ticks": 0, "in_queue": 2812, "util": 90.613142}]} 2026-04-19 19:45:15.534161 2026-04-19 19:16:23.943354 -102 2 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627944, "timestamp_ms": 1776627944228, "time": "Sun Apr 19 19:45:44 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "job_start": 1776627938678, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 50421760, "io_kbytes": 49240, "bw_bytes": 10082335, "bw": 9846, "iops": 2461.507698, "runtime": 5001, "total_ios": 12310, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 104629, "max": 1416512, "mean": 158565.666775, "stddev": 61372.411517, "N": 12310}, "clat_ns": {"min": 24690, "max": 1335743, "mean": 230066.806255, "stddev": 56543.559901, "N": 12310, "percentile": {"1.000000": 31872, "5.000000": 177152, "10.000000": 185344, "20.000000": 193536, "30.000000": 203776, "40.000000": 214016, "50.000000": 226304, "60.000000": 236544, "70.000000": 250880, "80.000000": 268288, "90.000000": 292864, "95.000000": 317440, "99.000000": 382976, "99.500000": 415744, "99.900000": 464896, "99.950000": 489472, "99.990000": 724992}}, "lat_ns": {"min": 285098, "max": 1560671, "mean": 388632.47303, "stddev": 68423.922928, "N": 12310}, "bw_min": 9589, "bw_max": 9972, "bw_agg": 100.0, "bw_mean": 9849.8, "bw_dev": 154.989354, "bw_samples": 5, "iops_min": 2397, "iops_max": 2494, "iops_mean": 2462.2, "iops_stddev": 38.951252, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 48.76, "sys_cpu": 15.0, "ctx": 12479, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.729488, "100": 0.048741, "250": 66.98619, "500": 30.203087, "750": 0.02437, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 11824, "read_sectors": 0, "write_sectors": 95808, "read_merges": 0, "write_merges": 152, "read_ticks": 0, "write_ticks": 2039, "in_queue": 2307, "util": 92.581239}]} 2026-04-19 19:45:38.331224 2026-04-19 19:16:23.943354 -103 2 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627950, "timestamp_ms": 1776627950029, "time": "Sun Apr 19 19:45:50 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "job_start": 1776627944734, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9539944448, "io_kbytes": 9316352, "bw_bytes": 1907607368, "bw": 1862897, "iops": 909.618076, "runtime": 5001, "total_ios": 4549, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 288749, "max": 1099974, "mean": 386889.659705, "stddev": 82751.049063, "N": 4549}, "clat_ns": {"min": 251669, "max": 4085567, "mean": 695191.58914, "stddev": 163950.530516, "N": 4549, "percentile": {"1.000000": 468992, "5.000000": 536576, "10.000000": 569344, "20.000000": 602112, "30.000000": 626688, "40.000000": 651264, "50.000000": 675840, "60.000000": 700416, "70.000000": 724992, "80.000000": 765952, "90.000000": 831488, "95.000000": 888832, "99.000000": 1073152, "99.500000": 1466368, "99.900000": 2768896, "99.950000": 2965504, "99.990000": 4079616}}, "lat_ns": {"min": 805966, "max": 4594054, "mean": 1082081.248846, "stddev": 186374.305968, "N": 4549}, "bw_min": 1814761, "bw_max": 1896296, "bw_agg": 100.0, "bw_mean": 1864036.4, "bw_dev": 31914.535909, "bw_samples": 5, "iops_min": 886, "iops_max": 925, "iops_mean": 909.4, "iops_stddev": 15.05988, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 37.92, "sys_cpu": 6.62, "ctx": 4640, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 2.242251, "750": 73.554627, "1000": 22.532425}, "latency_ms": {"2": 1.38492, "4": 0.241811, "10": 0.043966, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 8717, "read_sectors": 0, "write_sectors": 17846568, "read_merges": 0, "write_merges": 34, "read_ticks": 0, "write_ticks": 5743, "in_queue": 5743, "util": 88.2677}]} 2026-04-19 19:45:44.332977 2026-04-19 19:16:23.943354 -104 2 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627990, "timestamp_ms": 1776627990432, "time": "Sun Apr 19 19:46:30 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "job_start": 1776627985203, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 17100177408, "io_kbytes": 16699392, "bw_bytes": 3419351611, "bw": 3339210, "iops": 1630.473905, "runtime": 5001, "total_ios": 8154, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 264998, "max": 5592868, "mean": 329916.814079, "stddev": 96422.868321, "N": 8154}, "clat_ns": {"min": 22410, "max": 3595780, "mean": 269072.037037, "stddev": 87459.364041, "N": 8154, "percentile": {"1.000000": 25728, "5.000000": 175104, "10.000000": 201728, "20.000000": 224256, "30.000000": 236544, "40.000000": 248832, "50.000000": 261120, "60.000000": 272384, "70.000000": 288768, "80.000000": 309248, "90.000000": 350208, "95.000000": 403456, "99.000000": 514048, "99.500000": 561152, "99.900000": 675840, "99.950000": 790528, "99.990000": 3588096}}, "lat_ns": {"min": 453008, "max": 5646038, "mean": 598988.851116, "stddev": 110366.341056, "N": 8154}, "bw_min": 3270656, "bw_max": 3397632, "bw_agg": 100.0, "bw_mean": 3340556.8, "bw_dev": 55703.689673, "bw_samples": 5, "iops_min": 1596, "iops_max": 1659, "iops_mean": 1630.8, "iops_stddev": 27.362383, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.92, "sys_cpu": 66.86, "ctx": 7662, "majf": 0, "minf": 557, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.317881, "100": 0.024528, "250": 38.619083, "500": 57.652686, "750": 1.299975, "1000": 0.06132}, "latency_ms": {"2": 0.012264, "4": 0.012264, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 16230, "write_ios": 2, "read_sectors": 33239040, "write_sectors": 16, "read_merges": 8115, "write_merges": 0, "read_ticks": 5071, "write_ticks": 0, "in_queue": 5072, "util": 80.445496}]} 2026-04-19 19:45:52.72918 2026-04-19 19:16:23.943354 -105 2 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628005, "timestamp_ms": 1776628005252, "time": "Sun Apr 19 19:46:45 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "job_start": 1776628000058, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15751708672, "io_kbytes": 15382528, "bw_bytes": 3149711792, "bw": 3075890, "iops": 1501.89962, "runtime": 5001, "total_ios": 7511, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 300438, "max": 6977544, "mean": 389530.519372, "stddev": 118965.553642, "N": 7511}, "clat_ns": {"min": 24010, "max": 1343103, "mean": 260383.029956, "stddev": 75010.056761, "N": 7511, "percentile": {"1.000000": 25472, "5.000000": 29824, "10.000000": 205824, "20.000000": 236544, "30.000000": 248832, "40.000000": 257024, "50.000000": 268288, "60.000000": 276480, "70.000000": 288768, "80.000000": 301056, "90.000000": 321536, "95.000000": 346112, "99.000000": 411648, "99.500000": 440320, "99.900000": 561152, "99.950000": 897024, "99.990000": 1335296}}, "lat_ns": {"min": 469298, "max": 7282902, "mean": 649913.549328, "stddev": 124815.887023, "N": 7511}, "bw_min": 3006464, "bw_max": 3153920, "bw_agg": 100.0, "bw_mean": 3076525.2, "bw_dev": 63746.998543, "bw_samples": 5, "iops_min": 1468, "iops_max": 1540, "iops_mean": 1501.8, "iops_stddev": 31.035464, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 20.1, "sys_cpu": 57.72, "ctx": 6641, "majf": 0, "minf": 558, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 5.698309, "100": 0.039941, "250": 26.001864, "500": 68.086806, "750": 0.119824, "1000": 0.013314}, "latency_ms": {"2": 0.039941, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 14830, "write_ios": 9, "read_sectors": 30371840, "write_sectors": 152, "read_merges": 7415, "write_merges": 10, "read_ticks": 5487, "write_ticks": 4, "in_queue": 5491, "util": 88.688232}]} 2026-04-19 19:46:30.540797 2026-04-19 19:16:23.943354 -106 2 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628011, "timestamp_ms": 1776628011071, "time": "Sun Apr 19 19:46:51 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "job_start": 1776628005776, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8969519104, "io_kbytes": 8759296, "bw_bytes": 1793545111, "bw": 1751508, "iops": 855.228954, "runtime": 5001, "total_ios": 4277, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 339418, "max": 11763477, "mean": 490860.969839, "stddev": 218196.111261, "N": 4277}, "clat_ns": {"min": 39700, "max": 10392013, "mean": 658213.929156, "stddev": 290785.243205, "N": 4277, "percentile": {"1.000000": 337920, "5.000000": 415744, "10.000000": 452608, "20.000000": 505856, "30.000000": 536576, "40.000000": 569344, "50.000000": 602112, "60.000000": 634880, "70.000000": 675840, "80.000000": 749568, "90.000000": 937984, "95.000000": 1105920, "99.000000": 1613824, "99.500000": 2007040, "99.900000": 3096576, "99.950000": 3686400, "99.990000": 10420224}}, "lat_ns": {"min": 718946, "max": 12490573, "mean": 1149074.898995, "stddev": 374399.345812, "N": 4277}, "bw_min": 1471040, "bw_max": 1921024, "bw_agg": 100.0, "bw_mean": 1752291.0, "bw_dev": 170703.912647, "bw_samples": 5, "iops_min": 718, "iops_max": 938, "iops_mean": 855.2, "iops_stddev": 83.301861, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.36, "sys_cpu": 45.42, "ctx": 4463, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.070143, "100": 0.0, "250": 0.163666, "500": 18.751461, "750": 61.4917, "1000": 11.526771}, "latency_ms": {"2": 7.48188, "4": 0.490998, "10": 0.0, "20": 0.023381, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 8179, "read_sectors": 0, "write_sectors": 16748688, "read_merges": 0, "write_merges": 4107, "read_ticks": 0, "write_ticks": 5138, "in_queue": 5138, "util": 87.23491}]} 2026-04-19 19:46:45.366106 2026-04-19 19:16:23.943354 -107 2 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628019, "timestamp_ms": 1776628019177, "time": "Sun Apr 19 19:46:59 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "job_start": 1776628013934, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 11966349312, "io_kbytes": 11685888, "bw_bytes": 2392312937, "bw": 2336243, "iops": 570.371851, "runtime": 5002, "total_ios": 2853, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 540417, "max": 2003489, "mean": 762837.798107, "stddev": 175919.027536, "N": 2853}, "clat_ns": {"min": 32500, "max": 12699672, "mean": 970575.425868, "stddev": 405113.6813, "N": 2853, "percentile": {"1.000000": 667648, "5.000000": 741376, "10.000000": 765952, "20.000000": 806912, "30.000000": 847872, "40.000000": 880640, "50.000000": 921600, "60.000000": 954368, "70.000000": 1003520, "80.000000": 1056768, "90.000000": 1171456, "95.000000": 1286144, "99.000000": 1810432, "99.500000": 2473984, "99.900000": 7241728, "99.950000": 11337728, "99.990000": 12648448}}, "lat_ns": {"min": 1232164, "max": 13528038, "mean": 1733413.223975, "stddev": 450601.88959, "N": 2853}, "bw_min": 2316019, "bw_max": 2361657, "bw_agg": 100.0, "bw_mean": 2336374.4, "bw_dev": 23271.704317, "bw_samples": 5, "iops_min": 565, "iops_max": 576, "iops_mean": 570.0, "iops_stddev": 5.522681, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 7.756897, "sys_cpu": 42.263095, "ctx": 3084, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.035051, "100": 0.0, "250": 0.0, "500": 0.070102, "750": 6.764809, "1000": 62.460568}, "latency_ms": {"2": 29.7932, "4": 0.630915, "10": 0.175254, "20": 0.070102, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 14237, "read_sectors": 0, "write_sectors": 23322896, "read_merges": 0, "write_merges": 33, "read_ticks": 0, "write_ticks": 18807, "in_queue": 19639, "util": 97.7934}]} 2026-04-19 19:46:53.460657 2026-04-19 19:16:23.943354 -108 2 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628054, "timestamp_ms": 1776628054482, "time": "Sun Apr 19 19:47:34 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "job_start": 1776628049368, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 24087887872, "io_kbytes": 23523328, "bw_bytes": 4817577574, "bw": 4704665, "iops": 1148.6, "runtime": 5000, "total_ios": 5743, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 446177, "max": 9943318, "mean": 595449.810378, "stddev": 148006.6557, "N": 5743}, "clat_ns": {"min": 22980, "max": 949785, "mean": 260838.844332, "stddev": 77578.594294, "N": 5743, "percentile": {"1.000000": 24448, "5.000000": 121344, "10.000000": 185344, "20.000000": 224256, "30.000000": 238592, "40.000000": 252928, "50.000000": 268288, "60.000000": 284672, "70.000000": 296960, "80.000000": 309248, "90.000000": 329728, "95.000000": 350208, "99.000000": 456704, "99.500000": 518144, "99.900000": 667648, "99.950000": 741376, "99.990000": 946176}}, "lat_ns": {"min": 661727, "max": 9989858, "mean": 856288.65471, "stddev": 149394.578813, "N": 5743}, "bw_min": 4645413, "bw_max": 4771840, "bw_agg": 100.0, "bw_mean": 4705597.2, "bw_dev": 45045.778156, "bw_samples": 5, "iops_min": 1134, "iops_max": 1165, "iops_mean": 1148.6, "iops_stddev": 11.081516, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.98, "sys_cpu": 83.48, "ctx": 4518, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 4.596901, "100": 0.0, "250": 33.954379, "500": 60.769633, "750": 0.644263, "1000": 0.034825}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 22312, "write_ios": 12, "read_sectors": 45694976, "write_sectors": 264, "read_merges": 0, "write_merges": 21, "read_ticks": 10788, "write_ticks": 6, "in_queue": 10794, "util": 92.64795}]} 2026-04-19 19:47:10.265461 2026-04-19 19:16:23.943354 -239 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:39:06' --until '2026-04-19 20:39:40' 0 Systemd errors records 2026-04-19 20:39:06.022792 2026-04-19 20:39:40.59023 -240 5 loader /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:39:48.json {"results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboUIg9el as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18167519569396973, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15853261947631836, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accK0TBxe as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 44769\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17183375358581543, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.16004323959350586, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 36703\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 36559\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 45323\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.21931958198547363, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.047716379165649414, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.054398298263549805, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09294652938842773, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04743075370788574, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.12780141830444336, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13065600395202637, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.05473899841308594, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1550142765045166, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04780268669128418, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15845823287963867, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04880404472351074, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.0469057559967041, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04876303672790527, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15232515335083008, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15484237670898438, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.30336594581604004, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.1598598957061768, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:33: TPASS: alarm(0) passed\\nalarm06.c:38: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.174603223800659, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:34: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:30: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.218027114868164, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17568016052246094, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binCOc3yh as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16898560523986816, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09426355361938477, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binnP58jT as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16992783546447754, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binnmpBGW as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 any TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 any TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 any SCTP\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 loop SCTP\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 any TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 any TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 any SCTP\\nbind04.c:149: TPASS: Communication successful\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.618901252746582, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binYEHsnX as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20998859405517578, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 12.553611516952515, "passed": 86, "failed": 0, "broken": 1, "skipped": 1480, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:39:48.247972 2026-04-19 19:16:23.943354 -109 2 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628069, "timestamp_ms": 1776628069277, "time": "Sun Apr 19 19:47:49 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "job_start": 1776628064022, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 22351446016, "io_kbytes": 21827584, "bw_bytes": 4469395324, "bw": 4364643, "iops": 1065.586883, "runtime": 5001, "total_ios": 5329, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 420188, "max": 9412302, "mean": 605824.974667, "stddev": 154844.537873, "N": 5329}, "clat_ns": {"min": 23380, "max": 4827985, "mean": 316310.685494, "stddev": 139339.788464, "N": 5329, "percentile": {"1.000000": 25472, "5.000000": 148480, "10.000000": 189440, "20.000000": 230400, "30.000000": 254976, "40.000000": 280576, "50.000000": 305152, "60.000000": 329728, "70.000000": 362496, "80.000000": 399360, "90.000000": 460800, "95.000000": 509952, "99.000000": 610304, "99.500000": 684032, "99.900000": 1499136, "99.950000": 1859584, "99.990000": 4816896}}, "lat_ns": {"min": 658786, "max": 9719740, "mean": 922135.660161, "stddev": 180199.708684, "N": 5329}, "bw_min": 4296704, "bw_max": 4431872, "bw_agg": 100.0, "bw_mean": 4366438.4, "bw_dev": 59834.233757, "bw_samples": 5, "iops_min": 1049, "iops_max": 1082, "iops_mean": 1066.2, "iops_stddev": 14.377065, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.32, "sys_cpu": 79.8, "ctx": 4929, "majf": 0, "minf": 1070, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.908613, "100": 0.018765, "250": 25.089135, "500": 66.185025, "750": 5.423156, "1000": 0.112591}, "latency_ms": {"2": 0.225183, "4": 0.018765, "10": 0.018765, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26645, "write_ios": 6, "read_sectors": 43655168, "write_sectors": 136, "read_merges": 0, "write_merges": 11, "read_ticks": 14014, "write_ticks": 2, "in_queue": 14017, "util": 88.08402}]} 2026-04-19 19:47:34.587135 2026-04-19 19:16:23.943354 -110 2 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628075, "timestamp_ms": 1776628075082, "time": "Sun Apr 19 19:47:55 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "job_start": 1776628069801, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10599006208, "io_kbytes": 10350592, "bw_bytes": 2118953660, "bw": 2069290, "iops": 505.197921, "runtime": 5002, "total_ios": 2527, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 644617, "max": 1998129, "mean": 936716.1852, "stddev": 182156.634525, "N": 2527}, "clat_ns": {"min": 418228, "max": 35145962, "mean": 1021834.764543, "stddev": 722193.152385, "N": 2527, "percentile": {"1.000000": 675840, "5.000000": 757760, "10.000000": 806912, "20.000000": 856064, "30.000000": 897024, "40.000000": 929792, "50.000000": 970752, "60.000000": 1011712, "70.000000": 1056768, "80.000000": 1122304, "90.000000": 1220608, "95.000000": 1302528, "99.000000": 1875968, "99.500000": 2736128, "99.900000": 3719168, "99.950000": 3883008, "99.990000": 35389440}}, "lat_ns": {"min": 1380073, "max": 36124646, "mean": 1958550.949743, "stddev": 757490.042192, "N": 2527}, "bw_min": 2011136, "bw_max": 2119751, "bw_agg": 100.0, "bw_mean": 2069749.6, "bw_dev": 50538.196192, "bw_samples": 5, "iops_min": 491, "iops_max": 517, "iops_mean": 505.0, "iops_stddev": 12.083046, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 2.359528, "sys_cpu": 49.290142, "ctx": 2798, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.118718, "750": 4.39256, "1000": 52.117135}, "latency_ms": {"2": 42.540562, "4": 0.791452, "10": 0.0, "20": 0.0, "50": 0.039573, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 14594, "read_sectors": 0, "write_sectors": 19925272, "read_merges": 0, "write_merges": 2449, "read_ticks": 0, "write_ticks": 17848, "in_queue": 17849, "util": 87.109933}]} 2026-04-19 19:47:49.383032 2026-04-19 19:16:23.943354 -111 2 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628084, "timestamp_ms": 1776628084084, "time": "Sun Apr 19 19:48:04 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "job_start": 1776628078792, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9321984, "io_kbytes": 9103, "bw_bytes": 1864023, "bw": 1820, "iops": 3640.671866, "runtime": 5001, "total_ios": 18207, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 64079, "max": 810956, "mean": 129311.341078, "stddev": 86396.796925, "N": 18207}, "clat_ns": {"min": 22340, "max": 686126, "mean": 131845.026693, "stddev": 61909.928259, "N": 18207, "percentile": {"1.000000": 23424, "5.000000": 24192, "10.000000": 25472, "20.000000": 107008, "30.000000": 123392, "40.000000": 130560, "50.000000": 136192, "60.000000": 142336, "70.000000": 156672, "80.000000": 175104, "90.000000": 201728, "95.000000": 224256, "99.000000": 288768, "99.500000": 309248, "99.900000": 346112, "99.950000": 374784, "99.990000": 536576}}, "lat_ns": {"min": 170909, "max": 854726, "mean": 261156.367771, "stddev": 56868.502337, "N": 18207}, "bw_min": 1786, "bw_max": 1836, "bw_agg": 99.981599, "bw_mean": 1820.8, "bw_dev": 20.029978, "bw_samples": 5, "iops_min": 3572, "iops_max": 3673, "iops_mean": 3642.0, "iops_stddev": 40.31749, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 58.62, "sys_cpu": 8.24, "ctx": 18215, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 19.201406, "100": 0.560224, "250": 77.706377, "500": 2.521008, "750": 0.010985, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 17411, "read_sectors": 0, "write_sectors": 32944, "read_merges": 0, "write_merges": 2213, "read_ticks": 0, "write_ticks": 2276, "in_queue": 2284, "util": 95.617448}]} 2026-04-19 19:47:58.388604 2026-04-19 19:16:23.943354 -112 2 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628158, "timestamp_ms": 1776628158634, "time": "Sun Apr 19 19:49:18 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "job_start": 1776628153419, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14471680, "io_kbytes": 14132, "bw_bytes": 2893757, "bw": 2825, "iops": 5651.869626, "runtime": 5001, "total_ios": 28265, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 49900, "max": 543147, "mean": 77519.107447, "stddev": 35830.944656, "N": 28265}, "clat_ns": {"min": 19309, "max": 5821119, "mean": 89188.128569, "stddev": 47381.732046, "N": 28265, "percentile": {"1.000000": 20864, "5.000000": 21632, "10.000000": 22656, "20.000000": 63232, "30.000000": 92672, "40.000000": 94720, "50.000000": 96768, "60.000000": 99840, "70.000000": 103936, "80.000000": 108032, "90.000000": 115200, "95.000000": 132096, "99.000000": 162816, "99.500000": 175104, "99.900000": 203776, "99.950000": 216064, "99.990000": 577536}}, "lat_ns": {"min": 95640, "max": 5967008, "mean": 166707.236016, "stddev": 42674.000325, "N": 28265}, "bw_min": 2744, "bw_max": 2896, "bw_agg": 99.966929, "bw_mean": 2825.8, "bw_dev": 66.262357, "bw_samples": 5, "iops_min": 5488, "iops_max": 5790, "iops_mean": 5652.2, "iops_stddev": 132.33178, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 77.6, "sys_cpu": 3.02, "ctx": 20347, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01769, "50": 13.773218, "100": 46.852998, "250": 39.331328, "500": 0.014152, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 28041, "write_ios": 1, "read_sectors": 28041, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2852, "write_ticks": 0, "in_queue": 2852, "util": 97.250247}]} 2026-04-19 19:48:04.1891 2026-04-19 19:16:23.943354 -113 2 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628239, "timestamp_ms": 1776628239188, "time": "Sun Apr 19 19:50:39 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "job_start": 1776628233986, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13815296, "io_kbytes": 13491, "bw_bytes": 2762506, "bw": 2697, "iops": 5395.520896, "runtime": 5001, "total_ios": 26983, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 49790, "max": 805905, "mean": 80678.304154, "stddev": 37178.727815, "N": 26983}, "clat_ns": {"min": 19540, "max": 1055724, "mean": 92328.269651, "stddev": 35505.054838, "N": 26983, "percentile": {"1.000000": 20864, "5.000000": 21632, "10.000000": 22656, "20.000000": 72192, "30.000000": 93696, "40.000000": 95744, "50.000000": 97792, "60.000000": 100864, "70.000000": 104960, "80.000000": 114176, "90.000000": 123392, "95.000000": 138240, "99.000000": 171008, "99.500000": 183296, "99.900000": 236544, "99.950000": 264192, "99.990000": 536576}}, "lat_ns": {"min": 96250, "max": 1175923, "mean": 173006.573806, "stddev": 27241.923827, "N": 26983}, "bw_min": 2648, "bw_max": 2765, "bw_agg": 100.0, "bw_mean": 2698.4, "bw_dev": 47.898852, "bw_samples": 5, "iops_min": 5293, "iops_max": 5530, "iops_mean": 5396.8, "iops_stddev": 96.515284, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 76.74, "sys_cpu": 3.12, "ctx": 20534, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.011118, "50": 14.961272, "100": 43.679354, "250": 41.274136, "500": 0.063003, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26721, "write_ios": 1, "read_sectors": 26721, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2831, "write_ticks": 0, "in_queue": 2831, "util": 97.52279}]} 2026-04-19 19:49:18.741377 2026-04-19 19:16:23.943354 -114 2 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628245, "timestamp_ms": 1776628245233, "time": "Sun Apr 19 19:50:45 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "job_start": 1776628239696, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7627264, "io_kbytes": 7448, "bw_bytes": 1525147, "bw": 1489, "iops": 2978.804239, "runtime": 5001, "total_ios": 14897, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 72629, "max": 2048577, "mean": 294189.924616, "stddev": 47618.721214, "N": 14897}, "clat_ns": {"min": 21540, "max": 561517, "mean": 26974.230046, "stddev": 23269.186894, "N": 14897, "percentile": {"1.000000": 22144, "5.000000": 22400, "10.000000": 22400, "20.000000": 22656, "30.000000": 22656, "40.000000": 22912, "50.000000": 22912, "60.000000": 23168, "70.000000": 23680, "80.000000": 24192, "90.000000": 26240, "95.000000": 33536, "99.000000": 148480, "99.500000": 171008, "99.900000": 342016, "99.950000": 358400, "99.990000": 395264}}, "lat_ns": {"min": 202599, "max": 2085407, "mean": 321164.154662, "stddev": 40507.237341, "N": 14897}, "bw_min": 1445, "bw_max": 1573, "bw_agg": 99.973052, "bw_mean": 1489.6, "bw_dev": 48.598354, "bw_samples": 5, "iops_min": 2891, "iops_max": 3146, "iops_mean": 2979.6, "iops_stddev": 96.90098, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 13.28, "sys_cpu": 62.64, "ctx": 14899, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 97.892193, "100": 0.114117, "250": 1.731892, "500": 0.255085, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 14230, "read_sectors": 0, "write_sectors": 113317, "read_merges": 0, "write_merges": 24539, "read_ticks": 0, "write_ticks": 2182, "in_queue": 2501, "util": 83.446015}]} 2026-04-19 19:50:39.291128 2026-04-19 19:16:23.943354 -115 2 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628251, "timestamp_ms": 1776628251034, "time": "Sun Apr 19 19:50:51 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "job_start": 1776628245735, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 63225856, "io_kbytes": 61744, "bw_bytes": 12642642, "bw": 12346, "iops": 3086.582683, "runtime": 5001, "total_ios": 15436, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 222028, "max": 5146988, "mean": 287727.070614, "stddev": 63040.485839, "N": 15436}, "clat_ns": {"min": 21209, "max": 602906, "mean": 23758.456789, "stddev": 5841.177752, "N": 15436, "percentile": {"1.000000": 21632, "5.000000": 22144, "10.000000": 22144, "20.000000": 22400, "30.000000": 22400, "40.000000": 22656, "50.000000": 22656, "60.000000": 22912, "70.000000": 23168, "80.000000": 23936, "90.000000": 25728, "95.000000": 30336, "99.000000": 36096, "99.500000": 38144, "99.900000": 48384, "99.950000": 55552, "99.990000": 191488}}, "lat_ns": {"min": 243378, "max": 5181468, "mean": 311485.527403, "stddev": 64017.74975, "N": 15436}, "bw_min": 11988, "bw_max": 12652, "bw_agg": 100.0, "bw_mean": 12350.4, "bw_dev": 310.735901, "bw_samples": 5, "iops_min": 2997, "iops_max": 3163, "iops_mean": 3087.4, "iops_stddev": 77.629247, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.24, "sys_cpu": 72.9, "ctx": 15439, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 99.915781, "100": 0.064784, "250": 0.012957, "500": 0.0, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 14792, "read_sectors": 0, "write_sectors": 222287, "read_merges": 0, "write_merges": 29619, "read_ticks": 0, "write_ticks": 2605, "in_queue": 2775, "util": 83.544563}]} 2026-04-19 19:50:45.338321 2026-04-19 19:16:23.943354 -116 2 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628275, "timestamp_ms": 1776628275337, "time": "Sun Apr 19 19:51:15 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "job_start": 1776628270061, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 112422912, "io_kbytes": 109788, "bw_bytes": 22480086, "bw": 21953, "iops": 5488.30234, "runtime": 5001, "total_ios": 27447, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 50639, "max": 673576, "mean": 80157.884541, "stddev": 40164.519445, "N": 27447}, "clat_ns": {"min": 19700, "max": 625097, "mean": 91935.272161, "stddev": 32323.902489, "N": 27447, "percentile": {"1.000000": 21376, "5.000000": 22400, "10.000000": 24192, "20.000000": 87552, "30.000000": 93696, "40.000000": 94720, "50.000000": 96768, "60.000000": 99840, "70.000000": 103936, "80.000000": 109056, "90.000000": 117248, "95.000000": 136192, "99.000000": 166912, "99.500000": 181248, "99.900000": 222208, "99.950000": 268288, "99.990000": 464896}}, "lat_ns": {"min": 111729, "max": 768816, "mean": 172093.156702, "stddev": 26436.355452, "N": 27447}, "bw_min": 21514, "bw_max": 22292, "bw_agg": 100.0, "bw_mean": 21966.0, "bw_dev": 302.954617, "bw_samples": 5, "iops_min": 5378, "iops_max": 5573, "iops_mean": 5490.8, "iops_stddev": 75.984867, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 77.82, "sys_cpu": 2.16, "ctx": 21282, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 13.382155, "100": 47.571684, "250": 38.976937, "500": 0.061938, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26162, "write_ios": 1, "read_sectors": 209296, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2747, "write_ticks": 1, "in_queue": 2747, "util": 97.411136}]} 2026-04-19 19:50:51.14053 2026-04-19 19:16:23.943354 -117 2 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628298, "timestamp_ms": 1776628298885, "time": "Sun Apr 19 19:51:38 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "job_start": 1776628293794, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 109776896, "io_kbytes": 107204, "bw_bytes": 21950989, "bw": 21436, "iops": 5359.128174, "runtime": 5001, "total_ios": 26801, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 51319, "max": 604157, "mean": 81531.032424, "stddev": 43228.989484, "N": 26801}, "clat_ns": {"min": 20150, "max": 3113531, "mean": 92781.55886, "stddev": 44064.606327, "N": 26801, "percentile": {"1.000000": 21632, "5.000000": 22656, "10.000000": 24192, "20.000000": 91648, "30.000000": 92672, "40.000000": 93696, "50.000000": 94720, "60.000000": 96768, "70.000000": 102912, "80.000000": 108032, "90.000000": 118272, "95.000000": 140288, "99.000000": 179200, "99.500000": 197632, "99.900000": 280576, "99.950000": 366592, "99.990000": 1499136}}, "lat_ns": {"min": 101189, "max": 3184170, "mean": 174312.591284, "stddev": 41802.906825, "N": 26801}, "bw_min": 21262, "bw_max": 21549, "bw_agg": 100.0, "bw_mean": 21443.2, "bw_dev": 109.75746, "bw_samples": 5, "iops_min": 5317, "iops_max": 5387, "iops_mean": 5360.6, "iops_stddev": 26.838405, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 71.96, "sys_cpu": 7.2, "ctx": 21584, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 13.421141, "100": 52.468191, "250": 33.968882, "500": 0.108205, "750": 0.011194, "1000": 0.01}, "latency_ms": {"2": 0.011194, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 25946, "write_ios": 0, "read_sectors": 207568, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2790, "write_ticks": 0, "in_queue": 2791, "util": 95.542047}]} 2026-04-19 19:51:15.441963 2026-04-19 19:16:23.943354 -118 2 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628304, "timestamp_ms": 1776628304930, "time": "Sun Apr 19 19:51:44 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "job_start": 1776628299383, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 57950208, "io_kbytes": 56592, "bw_bytes": 11587724, "bw": 11316, "iops": 2829.034193, "runtime": 5001, "total_ios": 14148, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 75690, "max": 1863639, "mean": 312728.083333, "stddev": 53976.229998, "N": 14148}, "clat_ns": {"min": 21830, "max": 867964, "mean": 25558.005018, "stddev": 11295.838445, "N": 14148, "percentile": {"1.000000": 22400, "5.000000": 22656, "10.000000": 22912, "20.000000": 23168, "30.000000": 23424, "40.000000": 23680, "50.000000": 23936, "60.000000": 24448, "70.000000": 24960, "80.000000": 25472, "90.000000": 30592, "95.000000": 34560, "99.000000": 38144, "99.500000": 44288, "99.900000": 168960, "99.950000": 232448, "99.990000": 407552}}, "lat_ns": {"min": 225239, "max": 1889549, "mean": 338286.088352, "stddev": 56278.660245, "N": 14148}, "bw_min": 10852, "bw_max": 11516, "bw_agg": 100.0, "bw_mean": 11320.4, "bw_dev": 273.635341, "bw_samples": 5, "iops_min": 2713, "iops_max": 2879, "iops_mean": 2829.4, "iops_stddev": 68.310321, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.16, "sys_cpu": 74.86, "ctx": 14130, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 99.639525, "100": 0.155499, "250": 0.162567, "500": 0.035341, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 13618, "read_sectors": 0, "write_sectors": 216903, "read_merges": 0, "write_merges": 27384, "read_ticks": 0, "write_ticks": 1862, "in_queue": 1863, "util": 59.492635}]} 2026-04-19 19:51:38.987558 2026-04-19 19:16:23.943354 -119 2 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628310, "timestamp_ms": 1776628310733, "time": "Sun Apr 19 19:51:50 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "job_start": 1776628305443, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8852078592, "io_kbytes": 8644608, "bw_bytes": 1769707835, "bw": 1728230, "iops": 843.862455, "runtime": 5002, "total_ios": 4221, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 325528, "max": 4617192, "mean": 555774.628998, "stddev": 320537.417295, "N": 4221}, "clat_ns": {"min": 23900, "max": 10933784, "mean": 610631.914949, "stddev": 357458.128528, "N": 4221, "percentile": {"1.000000": 24704, "5.000000": 25984, "10.000000": 27008, "20.000000": 561152, "30.000000": 618496, "40.000000": 651264, "50.000000": 684032, "60.000000": 708608, "70.000000": 733184, "80.000000": 774144, "90.000000": 831488, "95.000000": 897024, "99.000000": 1073152, "99.500000": 1646592, "99.900000": 3751936, "99.950000": 4423680, "99.990000": 10944512}}, "lat_ns": {"min": 857325, "max": 11414601, "mean": 1166406.543947, "stddev": 301064.723524, "N": 4221}, "bw_min": 1695744, "bw_max": 1757184, "bw_agg": 100.0, "bw_mean": 1728798.4, "bw_dev": 25484.50366, "bw_samples": 5, "iops_min": 828, "iops_max": 858, "iops_mean": 843.8, "iops_stddev": 12.498, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 16.516697, "sys_cpu": 27.974405, "ctx": 4345, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 16.370528, "100": 0.236911, "250": 0.094764, "500": 1.303009, "750": 56.479507, "1000": 23.785833}, "latency_ms": {"2": 1.445155, "4": 0.21322, "10": 0.047382, "20": 0.023691, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 8770, "read_sectors": 0, "write_sectors": 16520261, "read_merges": 0, "write_merges": 746, "read_ticks": 0, "write_ticks": 6513, "in_queue": 6514, "util": 81.147876}]} 2026-04-19 19:51:45.034506 2026-04-19 19:16:23.943354 -120 2 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628326, "timestamp_ms": 1776628326354, "time": "Sun Apr 19 19:52:06 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "job_start": 1776628321187, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14950596608, "io_kbytes": 14600192, "bw_bytes": 2989521417, "bw": 2919454, "iops": 1425.514897, "runtime": 5001, "total_ios": 7129, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 236699, "max": 5243168, "mean": 282701.801936, "stddev": 77638.143357, "N": 7129}, "clat_ns": {"min": 23950, "max": 1166603, "mean": 404187.804881, "stddev": 60497.890273, "N": 7129, "percentile": {"1.000000": 280576, "5.000000": 321536, "10.000000": 337920, "20.000000": 354304, "30.000000": 366592, "40.000000": 382976, "50.000000": 395264, "60.000000": 415744, "70.000000": 436224, "80.000000": 456704, "90.000000": 485376, "95.000000": 509952, "99.000000": 561152, "99.500000": 577536, "99.900000": 634880, "99.950000": 675840, "99.990000": 1171456}}, "lat_ns": {"min": 533087, "max": 5661825, "mean": 686889.606817, "stddev": 97939.33696, "N": 7129}, "bw_min": 2887680, "bw_max": 2957312, "bw_agg": 100.0, "bw_mean": 2921207.6, "bw_dev": 26397.101892, "bw_samples": 5, "iops_min": 1410, "iops_max": 1444, "iops_mean": 1426.2, "iops_stddev": 12.872451, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 15.7, "sys_cpu": 47.2, "ctx": 7127, "majf": 0, "minf": 557, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.056109, "100": 0.0, "250": 0.392762, "500": 93.15472, "750": 6.368355, "1000": 0.014027}, "latency_ms": {"2": 0.014027, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 14020, "write_ios": 0, "read_sectors": 28712960, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 5485, "write_ticks": 0, "in_queue": 5486, "util": 56.937512}]} 2026-04-19 19:51:53.134021 2026-04-19 19:16:23.943354 -121 2 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628341, "timestamp_ms": 1776628341154, "time": "Sun Apr 19 19:52:21 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "job_start": 1776628335893, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14248050688, "io_kbytes": 13914112, "bw_bytes": 2849040329, "bw": 2782265, "iops": 1358.528294, "runtime": 5001, "total_ios": 6794, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 316208, "max": 8173081, "mean": 406608.112011, "stddev": 139576.297117, "N": 6794}, "clat_ns": {"min": 23980, "max": 3431109, "mean": 310440.373712, "stddev": 76526.072154, "N": 6794, "percentile": {"1.000000": 28288, "5.000000": 232448, "10.000000": 246784, "20.000000": 268288, "30.000000": 284672, "40.000000": 296960, "50.000000": 309248, "60.000000": 321536, "70.000000": 333824, "80.000000": 350208, "90.000000": 370688, "95.000000": 399360, "99.000000": 481280, "99.500000": 536576, "99.900000": 929792, "99.950000": 1044480, "99.990000": 3424256}}, "lat_ns": {"min": 535947, "max": 8446019, "mean": 717048.485723, "stddev": 156688.893621, "N": 6794}, "bw_min": 2697865, "bw_max": 2880320, "bw_agg": 100.0, "bw_mean": 2783539.6, "bw_dev": 78080.67756, "bw_samples": 5, "iops_min": 1317, "iops_max": 1406, "iops_mean": 1358.8, "iops_stddev": 38.232185, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.64, "sys_cpu": 64.6, "ctx": 6537, "majf": 0, "minf": 558, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.133353, "100": 0.0, "250": 10.008831, "500": 88.107153, "750": 0.603474, "1000": 0.088313}, "latency_ms": {"2": 0.044157, "4": 0.014719, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 12951, "write_ios": 0, "read_sectors": 26445840, "write_sectors": 0, "read_merges": 6457, "write_merges": 0, "read_ticks": 5195, "write_ticks": 0, "in_queue": 5195, "util": 65.773748}]} 2026-04-19 19:52:06.455551 2026-04-19 19:16:23.943354 -241 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:40:36.138289 2026-04-19 20:40:36.138293 -122 2 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628346, "timestamp_ms": 1776628346953, "time": "Sun Apr 19 19:52:26 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "job_start": 1776628341659, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9483321344, "io_kbytes": 9261056, "bw_bytes": 1896285011, "bw": 1851840, "iops": 904.219156, "runtime": 5001, "total_ios": 4522, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 360428, "max": 9758081, "mean": 589769.100177, "stddev": 338813.702496, "N": 4522}, "clat_ns": {"min": 24530, "max": 7151927, "mean": 494893.278417, "stddev": 305655.652249, "N": 4522, "percentile": {"1.000000": 25216, "5.000000": 26240, "10.000000": 27264, "20.000000": 403456, "30.000000": 468992, "40.000000": 501760, "50.000000": 536576, "60.000000": 561152, "70.000000": 593920, "80.000000": 626688, "90.000000": 692224, "95.000000": 749568, "99.000000": 1056768, "99.500000": 1433600, "99.900000": 3686400, "99.950000": 4423680, "99.990000": 7176192}}, "lat_ns": {"min": 713566, "max": 10213078, "mean": 1084662.378594, "stddev": 317922.681623, "N": 4522}, "bw_min": 1642496, "bw_max": 1935360, "bw_agg": 100.0, "bw_mean": 1852186.0, "bw_dev": 125191.886462, "bw_samples": 5, "iops_min": 802, "iops_max": 945, "iops_mean": 904.4, "iops_stddev": 61.13755, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 19.54, "sys_cpu": 31.9, "ctx": 4670, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 15.214507, "100": 0.154799, "250": 0.508625, "500": 23.706325, "750": 55.395843, "1000": 3.825741}, "latency_ms": {"2": 0.773994, "4": 0.331712, "10": 0.088456, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 9364, "read_sectors": 0, "write_sectors": 17730887, "read_merges": 0, "write_merges": 5049, "read_ticks": 0, "write_ticks": 5889, "in_queue": 5889, "util": 60.167415}]} 2026-04-19 19:52:21.253299 2026-04-19 19:16:23.943354 -123 2 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628367, "timestamp_ms": 1776628367003, "time": "Sun Apr 19 19:52:47 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "job_start": 1776628361744, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 11634999296, "io_kbytes": 11362304, "bw_bytes": 2326069431, "bw": 2271552, "iops": 554.578169, "runtime": 5002, "total_ios": 2774, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 520557, "max": 3213991, "mean": 878295.232156, "stddev": 416846.025333, "N": 2774}, "clat_ns": {"min": 25090, "max": 7134878, "mean": 905552.416006, "stddev": 417717.250904, "N": 2774, "percentile": {"1.000000": 26240, "5.000000": 28288, "10.000000": 34048, "20.000000": 782336, "30.000000": 872448, "40.000000": 929792, "50.000000": 970752, "60.000000": 1028096, "70.000000": 1089536, "80.000000": 1155072, "90.000000": 1253376, "95.000000": 1351680, "99.000000": 1581056, "99.500000": 1859584, "99.900000": 3981312, "99.950000": 4046848, "99.990000": 7110656}}, "lat_ns": {"min": 1290382, "max": 7912523, "mean": 1783847.648162, "stddev": 285559.562008, "N": 2774}, "bw_min": 2154496, "bw_max": 2341157, "bw_agg": 100.0, "bw_mean": 2273024.6, "bw_dev": 69990.198044, "bw_samples": 5, "iops_min": 526, "iops_max": 571, "iops_mean": 554.6, "iops_stddev": 16.890826, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 3.159368, "sys_cpu": 41.831634, "ctx": 2996, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 12.761355, "100": 0.108147, "250": 0.0, "500": 0.144196, "750": 5.479452, "1000": 36.157174}, "latency_ms": {"2": 44.953136, "4": 0.324441, "10": 0.072098, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 11454, "read_sectors": 0, "write_sectors": 22727059, "read_merges": 0, "write_merges": 361, "read_ticks": 0, "write_ticks": 11630, "in_queue": 11630, "util": 100.0}]} 2026-04-19 19:52:41.283572 2026-04-19 19:16:23.943354 -124 2 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628386, "timestamp_ms": 1776628386629, "time": "Sun Apr 19 19:53:06 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "job_start": 1776628381336, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 23500685312, "io_kbytes": 22949888, "bw_bytes": 4699197222, "bw": 4589059, "iops": 1120.375925, "runtime": 5001, "total_ios": 5603, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 427867, "max": 10536227, "mean": 573399.234696, "stddev": 156557.947973, "N": 5603}, "clat_ns": {"min": 23960, "max": 867795, "mean": 302899.223809, "stddev": 85583.384901, "N": 5603, "percentile": {"1.000000": 25728, "5.000000": 171008, "10.000000": 220160, "20.000000": 259072, "30.000000": 276480, "40.000000": 288768, "50.000000": 301056, "60.000000": 317440, "70.000000": 333824, "80.000000": 354304, "90.000000": 387072, "95.000000": 423936, "99.000000": 569344, "99.500000": 610304, "99.900000": 708608, "99.950000": 757760, "99.990000": 864256}}, "lat_ns": {"min": 652966, "max": 10585857, "mean": 876298.458504, "stddev": 162371.940726, "N": 5603}, "bw_min": 4402893, "bw_max": 4767744, "bw_agg": 100.0, "bw_mean": 4590042.4, "bw_dev": 155221.031124, "bw_samples": 5, "iops_min": 1074, "iops_max": 1164, "iops_mean": 1120.4, "iops_stddev": 38.141841, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.18, "sys_cpu": 77.52, "ctx": 5199, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.837765, "100": 0.107085, "250": 13.474924, "500": 81.599143, "750": 1.927539, "1000": 0.053543}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 21517, "write_ios": 0, "read_sectors": 43974656, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 10302, "write_ticks": 0, "in_queue": 10302, "util": 87.994263}]} 2026-04-19 19:52:52.648732 2026-04-19 19:16:23.943354 -125 2 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628401, "timestamp_ms": 1776628401179, "time": "Sun Apr 19 19:53:21 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "job_start": 1776628396026, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 22535995392, "io_kbytes": 22007808, "bw_bytes": 4506297818, "bw": 4400681, "iops": 1074.385123, "runtime": 5001, "total_ios": 5373, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 434278, "max": 9211824, "mean": 615546.819282, "stddev": 180149.979044, "N": 5373}, "clat_ns": {"min": 22970, "max": 10959515, "mean": 297929.1126, "stddev": 172531.160019, "N": 5373, "percentile": {"1.000000": 25216, "5.000000": 187392, "10.000000": 228352, "20.000000": 248832, "30.000000": 264192, "40.000000": 280576, "50.000000": 296960, "60.000000": 309248, "70.000000": 321536, "80.000000": 337920, "90.000000": 370688, "95.000000": 419840, "99.000000": 593920, "99.500000": 659456, "99.900000": 1044480, "99.950000": 1482752, "99.990000": 10944512}}, "lat_ns": {"min": 654216, "max": 12112338, "mean": 913475.931882, "stddev": 247703.316305, "N": 5373}, "bw_min": 4169728, "bw_max": 4481409, "bw_agg": 100.0, "bw_mean": 4401566.4, "bw_dev": 131590.997387, "bw_samples": 5, "iops_min": 1018, "iops_max": 1094, "iops_mean": 1074.4, "iops_stddev": 32.020306, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.24, "sys_cpu": 79.54, "ctx": 4729, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 3.405918, "100": 0.0, "250": 17.23432, "500": 76.958868, "750": 2.196166, "1000": 0.093058}, "latency_ms": {"2": 0.093058, "4": 0.0, "10": 0.0, "20": 0.018612, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 21090, "write_ios": 0, "read_sectors": 43130880, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 10995, "write_ticks": 0, "in_queue": 10995, "util": 92.632633}]} 2026-04-19 19:53:06.73276 2026-04-19 19:16:23.943354 -126 2 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628406, "timestamp_ms": 1776628406982, "time": "Sun Apr 19 19:53:26 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "job_start": 1776628401701, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10645143552, "io_kbytes": 10395648, "bw_bytes": 2128602989, "bw": 2078713, "iops": 507.4985, "runtime": 5001, "total_ios": 2538, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 584646, "max": 26787682, "mean": 1026521.821513, "stddev": 680244.237988, "N": 2538}, "clat_ns": {"min": 25360, "max": 27320199, "mean": 921101.55595, "stddev": 769177.350371, "N": 2538, "percentile": {"1.000000": 25984, "5.000000": 27008, "10.000000": 29312, "20.000000": 815104, "30.000000": 880640, "40.000000": 921600, "50.000000": 962560, "60.000000": 1011712, "70.000000": 1056768, "80.000000": 1138688, "90.000000": 1236992, "95.000000": 1351680, "99.000000": 2277376, "99.500000": 2932736, "99.900000": 5931008, "99.950000": 18481152, "99.990000": 27394048}}, "lat_ns": {"min": 1285132, "max": 28085594, "mean": 1947623.377463, "stddev": 886973.184814, "N": 2538}, "bw_min": 2000943, "bw_max": 2168711, "bw_agg": 99.900763, "bw_mean": 2076651.2, "bw_dev": 72035.658852, "bw_samples": 5, "iops_min": 488, "iops_max": 529, "iops_mean": 506.6, "iops_stddev": 17.487138, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.06, "sys_cpu": 44.72, "ctx": 2710, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 13.356974, "100": 0.394011, "250": 0.039401, "500": 0.039401, "750": 2.955083, "1000": 40.780142}, "latency_ms": {"2": 41.252955, "4": 0.985028, "10": 0.118203, "20": 0.039401, "50": 0.039401, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 12472, "read_sectors": 0, "write_sectors": 19861287, "read_merges": 0, "write_merges": 374, "read_ticks": 0, "write_ticks": 15908, "in_queue": 15908, "util": 88.086495}]} 2026-04-19 19:53:21.282953 2026-04-19 19:16:23.943354 -127 2 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628415, "timestamp_ms": 1776628415805, "time": "Sun Apr 19 19:53:35 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "job_start": 1776628410507, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9185792, "io_kbytes": 8970, "bw_bytes": 1836791, "bw": 1793, "iops": 3587.482503, "runtime": 5001, "total_ios": 17941, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 64549, "max": 784756, "mean": 126235.42885, "stddev": 85709.734671, "N": 17941}, "clat_ns": {"min": 22500, "max": 614937, "mean": 139345.146536, "stddev": 62302.083265, "N": 17941, "percentile": {"1.000000": 23424, "5.000000": 24448, "10.000000": 25728, "20.000000": 121344, "30.000000": 129536, "40.000000": 136192, "50.000000": 140288, "60.000000": 148480, "70.000000": 164864, "80.000000": 183296, "90.000000": 205824, "95.000000": 230400, "99.000000": 296960, "99.500000": 325632, "99.900000": 382976, "99.950000": 423936, "99.990000": 552960}}, "lat_ns": {"min": 172939, "max": 828815, "mean": 265580.575386, "stddev": 57944.045379, "N": 17941}, "bw_min": 1778, "bw_max": 1811, "bw_agg": 100.0, "bw_mean": 1794.0, "bw_dev": 13.910428, "bw_samples": 5, "iops_min": 3556, "iops_max": 3623, "iops_mean": 3588.6, "iops_stddev": 28.218788, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 55.08, "sys_cpu": 10.52, "ctx": 17952, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 16.609999, "100": 0.535087, "250": 79.677833, "500": 3.160359, "750": 0.016721, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 17191, "read_sectors": 0, "write_sectors": 32511, "read_merges": 0, "write_merges": 2182, "read_ticks": 0, "write_ticks": 6339, "in_queue": 7361, "util": 97.095521}]} 2026-04-19 19:53:30.109897 2026-04-19 19:16:23.943354 -128 2 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628492, "timestamp_ms": 1776628492102, "time": "Sun Apr 19 19:54:52 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "job_start": 1776628486881, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13787648, "io_kbytes": 13464, "bw_bytes": 2756978, "bw": 2692, "iops": 5384.723055, "runtime": 5001, "total_ios": 26929, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 53480, "max": 611787, "mean": 81186.759107, "stddev": 37400.545554, "N": 26929}, "clat_ns": {"min": 19720, "max": 2340726, "mean": 94269.641762, "stddev": 37608.529082, "N": 26929, "percentile": {"1.000000": 20608, "5.000000": 21376, "10.000000": 22400, "20.000000": 89600, "30.000000": 94720, "40.000000": 96768, "50.000000": 99840, "60.000000": 102912, "70.000000": 107008, "80.000000": 113152, "90.000000": 124416, "95.000000": 142336, "99.000000": 173056, "99.500000": 189440, "99.900000": 234496, "99.950000": 250880, "99.990000": 456704}}, "lat_ns": {"min": 115239, "max": 2460425, "mean": 175456.400869, "stddev": 29216.144844, "N": 26929}, "bw_min": 2653, "bw_max": 2739, "bw_agg": 99.98658, "bw_mean": 2692.8, "bw_dev": 39.181628, "bw_samples": 5, "iops_min": 5307, "iops_max": 5478, "iops_mean": 5386.2, "iops_stddev": 77.438363, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 76.8, "sys_cpu": 2.86, "ctx": 20859, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01114, "50": 13.966356, "100": 37.613725, "250": 48.353077, "500": 0.048275, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26751, "write_ios": 0, "read_sectors": 26751, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2872, "write_ticks": 0, "in_queue": 2872, "util": 97.590361}]} 2026-04-19 19:53:35.906051 2026-04-19 19:16:23.943354 -129 2 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628572, "timestamp_ms": 1776628572764, "time": "Sun Apr 19 19:56:12 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "job_start": 1776628567630, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 10572288, "io_kbytes": 10324, "bw_bytes": 2114034, "bw": 2064, "iops": 4128.974205, "runtime": 5001, "total_ios": 20649, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 52769, "max": 3540210, "mean": 100381.459102, "stddev": 97543.403001, "N": 20649}, "clat_ns": {"min": 20450, "max": 9319655, "mean": 125674.126592, "stddev": 152657.40265, "N": 20649, "percentile": {"1.000000": 21632, "5.000000": 23168, "10.000000": 25984, "20.000000": 92672, "30.000000": 96768, "40.000000": 99840, "50.000000": 104960, "60.000000": 112128, "70.000000": 124416, "80.000000": 140288, "90.000000": 177152, "95.000000": 240640, "99.000000": 618496, "99.500000": 856064, "99.900000": 1843200, "99.950000": 2768896, "99.990000": 4489216}}, "lat_ns": {"min": 104440, "max": 9517754, "mean": 226055.585694, "stddev": 199018.029814, "N": 20649}, "bw_min": 1724, "bw_max": 2589, "bw_agg": 99.976443, "bw_mean": 2064.8, "bw_dev": 375.741534, "bw_samples": 5, "iops_min": 3448, "iops_max": 5175, "iops_mean": 4129.4, "iops_stddev": 750.538673, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 67.8, "sys_cpu": 11.22, "ctx": 15845, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 13.027265, "100": 26.064216, "250": 56.28844, "500": 3.104267, "750": 0.823284, "1000": 0.334157}, "latency_ms": {"2": 0.295414, "4": 0.038743, "10": 0.024214, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 20035, "write_ios": 2, "read_sectors": 20036, "write_sectors": 16, "read_merges": 0, "write_merges": 0, "read_ticks": 2818, "write_ticks": 1, "in_queue": 2818, "util": 92.389558}]} 2026-04-19 19:54:52.207281 2026-04-19 19:16:23.943354 -130 2 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628578, "timestamp_ms": 1776628578892, "time": "Sun Apr 19 19:56:18 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "job_start": 1776628573391, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6368768, "io_kbytes": 6219, "bw_bytes": 1273498, "bw": 1243, "iops": 2487.302539, "runtime": 5001, "total_ios": 12439, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 74250, "max": 6735461, "mean": 354548.066082, "stddev": 238749.40905, "N": 12439}, "clat_ns": {"min": 21290, "max": 1466911, "mean": 30714.365222, "stddev": 38235.561556, "N": 12439, "percentile": {"1.000000": 22144, "5.000000": 22656, "10.000000": 22912, "20.000000": 23168, "30.000000": 23424, "40.000000": 23936, "50.000000": 24448, "60.000000": 24960, "70.000000": 25728, "80.000000": 27520, "90.000000": 34560, "95.000000": 39168, "99.000000": 183296, "99.500000": 276480, "99.900000": 505856, "99.950000": 692224, "99.990000": 905216}}, "lat_ns": {"min": 203389, "max": 6844941, "mean": 385262.431305, "stddev": 248614.177588, "N": 12439}, "bw_min": 1028, "bw_max": 1428, "bw_agg": 99.947703, "bw_mean": 1243.6, "bw_dev": 171.546787, "bw_samples": 5, "iops_min": 2056, "iops_max": 2856, "iops_mean": 2487.8, "iops_stddev": 343.139476, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 12.1, "sys_cpu": 63.28, "ctx": 12440, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 96.792347, "100": 1.125492, "250": 1.487258, "500": 0.490393, "750": 0.072353, "1000": 0.024118}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 12444, "read_sectors": 0, "write_sectors": 99494, "read_merges": 0, "write_merges": 21567, "read_ticks": 0, "write_ticks": 2207, "in_queue": 2446, "util": 83.362762}]} 2026-04-19 19:56:12.895453 2026-04-19 19:16:23.943354 -131 2 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628584, "timestamp_ms": 1776628584696, "time": "Sun Apr 19 19:56:24 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "job_start": 1776628579400, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 53460992, "io_kbytes": 52208, "bw_bytes": 10690060, "bw": 10439, "iops": 2609.878024, "runtime": 5001, "total_ios": 13052, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 101199, "max": 692196, "mean": 140146.543212, "stddev": 58569.701211, "N": 13052}, "clat_ns": {"min": 24639, "max": 1500962, "mean": 227794.790454, "stddev": 69552.422719, "N": 13052, "percentile": {"1.000000": 33024, "5.000000": 166912, "10.000000": 173056, "20.000000": 181248, "30.000000": 189440, "40.000000": 201728, "50.000000": 218112, "60.000000": 234496, "70.000000": 248832, "80.000000": 272384, "90.000000": 309248, "95.000000": 342016, "99.000000": 415744, "99.500000": 460800, "99.900000": 724992, "99.950000": 1019904, "99.990000": 1335296}}, "lat_ns": {"min": 260838, "max": 1676171, "mean": 367941.333665, "stddev": 75425.986806, "N": 13052}, "bw_min": 9916, "bw_max": 10704, "bw_agg": 100.0, "bw_mean": 10443.6, "bw_dev": 314.643926, "bw_samples": 5, "iops_min": 2479, "iops_max": 2676, "iops_mean": 2610.6, "iops_stddev": 78.630783, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 51.92, "sys_cpu": 10.7, "ctx": 13165, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.49004, "100": 0.114925, "250": 68.441618, "500": 28.639289, "750": 0.222188, "1000": 0.038308}, "latency_ms": {"2": 0.053632, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 12498, "read_sectors": 0, "write_sectors": 100264, "read_merges": 0, "write_merges": 35, "read_ticks": 0, "write_ticks": 2027, "in_queue": 2177, "util": 96.646902}]} 2026-04-19 19:56:18.997316 2026-04-19 19:16:23.943354 -132 2 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628608, "timestamp_ms": 1776628608498, "time": "Sun Apr 19 19:56:48 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "job_start": 1776628603266, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 111763456, "io_kbytes": 109144, "bw_bytes": 22348221, "bw": 21824, "iops": 5456.108778, "runtime": 5001, "total_ios": 27286, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 51619, "max": 658447, "mean": 80338.872169, "stddev": 36918.867729, "N": 27286}, "clat_ns": {"min": 19780, "max": 10141393, "mean": 92726.65081, "stddev": 70952.143571, "N": 27286, "percentile": {"1.000000": 20608, "5.000000": 21120, "10.000000": 22144, "20.000000": 90624, "30.000000": 92672, "40.000000": 94720, "50.000000": 96768, "60.000000": 98816, "70.000000": 102912, "80.000000": 114176, "90.000000": 124416, "95.000000": 136192, "99.000000": 166912, "99.500000": 179200, "99.900000": 232448, "99.950000": 272384, "99.990000": 1187840}}, "lat_ns": {"min": 113789, "max": 10254832, "mean": 173065.522979, "stddev": 66967.588473, "N": 27286}, "bw_min": 21280, "bw_max": 22360, "bw_agg": 100.0, "bw_mean": 21833.2, "bw_dev": 401.436421, "bw_samples": 5, "iops_min": 5320, "iops_max": 5589, "iops_mean": 5458.2, "iops_stddev": 99.938481, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 76.96, "sys_cpu": 2.2, "ctx": 21374, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.018324, "50": 14.271055, "100": 49.021476, "250": 36.615847, "500": 0.054973, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.010995, "4": 0.0, "10": 0.0, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 27157, "write_ios": 1, "read_sectors": 217256, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2886, "write_ticks": 0, "in_queue": 2887, "util": 97.476838}]} 2026-04-19 19:56:24.797228 2026-04-19 19:16:23.943354 -133 2 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628632, "timestamp_ms": 1776628632058, "time": "Sun Apr 19 19:57:12 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "job_start": 1776628626832, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 112648192, "io_kbytes": 110008, "bw_bytes": 22525133, "bw": 21997, "iops": 5499.30014, "runtime": 5001, "total_ios": 27502, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 50449, "max": 614907, "mean": 80729.831794, "stddev": 37833.517989, "N": 27502}, "clat_ns": {"min": 19310, "max": 428968, "mean": 88727.49411, "stddev": 33261.650916, "N": 27502, "percentile": {"1.000000": 20864, "5.000000": 21888, "10.000000": 23168, "20.000000": 60160, "30.000000": 92672, "40.000000": 94720, "50.000000": 96768, "60.000000": 99840, "70.000000": 104960, "80.000000": 110080, "90.000000": 118272, "95.000000": 132096, "99.000000": 160768, "99.500000": 173056, "99.900000": 207872, "99.950000": 224256, "99.990000": 264192}}, "lat_ns": {"min": 96859, "max": 659837, "mean": 169457.325904, "stddev": 26230.550863, "N": 27502}, "bw_min": 20935, "bw_max": 23380, "bw_agg": 100.0, "bw_mean": 22006.0, "bw_dev": 969.857979, "bw_samples": 5, "iops_min": 5233, "iops_max": 5845, "iops_mean": 5500.8, "iops_stddev": 243.10327, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 78.84, "sys_cpu": 2.4, "ctx": 19511, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 15.489783, "100": 44.858556, "250": 39.637117, "500": 0.010908, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 27324, "write_ios": 1, "read_sectors": 218592, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2809, "write_ticks": 0, "in_queue": 2810, "util": 97.573964}]} 2026-04-19 19:56:48.600684 2026-04-19 19:16:23.943354 -134 2 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628638, "timestamp_ms": 1776628638113, "time": "Sun Apr 19 19:57:18 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "job_start": 1776628632567, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 50294784, "io_kbytes": 49116, "bw_bytes": 10056945, "bw": 9821, "iops": 2455.308938, "runtime": 5001, "total_ios": 12279, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 103700, "max": 2158638, "mean": 164349.899992, "stddev": 68697.090307, "N": 12279}, "clat_ns": {"min": 24360, "max": 813046, "mean": 225041.675544, "stddev": 59863.484502, "N": 12279, "percentile": {"1.000000": 28800, "5.000000": 175104, "10.000000": 179200, "20.000000": 187392, "30.000000": 193536, "40.000000": 201728, "50.000000": 214016, "60.000000": 232448, "70.000000": 246784, "80.000000": 264192, "90.000000": 292864, "95.000000": 321536, "99.000000": 395264, "99.500000": 436224, "99.900000": 569344, "99.950000": 692224, "99.990000": 798720}}, "lat_ns": {"min": 283479, "max": 2444586, "mean": 389391.575535, "stddev": 77863.922048, "N": 12279}, "bw_min": 9420, "bw_max": 10109, "bw_agg": 100.0, "bw_mean": 9823.8, "bw_dev": 267.672748, "bw_samples": 5, "iops_min": 2355, "iops_max": 2527, "iops_mean": 2455.8, "iops_stddev": 66.593543, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 43.3, "sys_cpu": 20.68, "ctx": 12456, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.53278, "100": 0.073296, "250": 69.346038, "500": 27.852431, "750": 0.171024, "1000": 0.024432}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 11752, "read_sectors": 0, "write_sectors": 95224, "read_merges": 0, "write_merges": 151, "read_ticks": 0, "write_ticks": 1981, "in_queue": 2229, "util": 80.736196}]} 2026-04-19 19:57:12.161818 2026-04-19 19:16:23.943354 -135 2 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628643, "timestamp_ms": 1776628643924, "time": "Sun Apr 19 19:57:23 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "job_start": 1776628638634, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9307160576, "io_kbytes": 9089024, "bw_bytes": 1861059903, "bw": 1817441, "iops": 887.422515, "runtime": 5001, "total_ios": 4438, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 298849, "max": 1392822, "mean": 422544.107256, "stddev": 107705.23148, "N": 4438}, "clat_ns": {"min": 36470, "max": 4160845, "mean": 686300.244479, "stddev": 180653.889001, "N": 4438, "percentile": {"1.000000": 444416, "5.000000": 528384, "10.000000": 552960, "20.000000": 585728, "30.000000": 610304, "40.000000": 634880, "50.000000": 659456, "60.000000": 684032, "70.000000": 716800, "80.000000": 757760, "90.000000": 823296, "95.000000": 897024, "99.000000": 1318912, "99.500000": 1581056, "99.900000": 3194880, "99.950000": 3588096, "99.990000": 4145152}}, "lat_ns": {"min": 805306, "max": 4612142, "mean": 1108844.351735, "stddev": 219451.089755, "N": 4438}, "bw_min": 1771520, "bw_max": 1853440, "bw_agg": 100.0, "bw_mean": 1817751.2, "bw_dev": 40705.679367, "bw_samples": 5, "iops_min": 866, "iops_max": 905, "iops_mean": 887.4, "iops_stddev": 19.654516, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 19.52, "sys_cpu": 25.54, "ctx": 4578, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.022533, "100": 0.0, "250": 0.0, "500": 2.456061, "750": 76.1379, "1000": 19.152772}, "latency_ms": {"2": 2.027941, "4": 0.180261, "10": 0.022533, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 8520, "read_sectors": 0, "write_sectors": 17441152, "read_merges": 0, "write_merges": 43, "read_ticks": 0, "write_ticks": 5568, "in_queue": 5568, "util": 80.960163}]} 2026-04-19 19:57:18.21397 2026-04-19 19:16:23.943354 -136 2 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628661, "timestamp_ms": 1776628661172, "time": "Sun Apr 19 19:57:41 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "job_start": 1776628655895, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15135145984, "io_kbytes": 14780416, "bw_bytes": 3026423912, "bw": 2955492, "iops": 1443.111378, "runtime": 5001, "total_ios": 7217, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 291108, "max": 5511659, "mean": 393260.138423, "stddev": 108866.139897, "N": 7217}, "clat_ns": {"min": 23870, "max": 11104256, "mean": 282744.132604, "stddev": 149153.556829, "N": 7217, "percentile": {"1.000000": 25728, "5.000000": 40192, "10.000000": 209920, "20.000000": 252928, "30.000000": 268288, "40.000000": 280576, "50.000000": 292864, "60.000000": 305152, "70.000000": 313344, "80.000000": 329728, "90.000000": 350208, "95.000000": 370688, "99.000000": 436224, "99.500000": 460800, "99.900000": 536576, "99.950000": 602112, "99.990000": 11075584}}, "lat_ns": {"min": 473058, "max": 11539734, "mean": 676004.271027, "stddev": 169773.583464, "N": 7217}, "bw_min": 2892979, "bw_max": 3003460, "bw_agg": 99.939939, "bw_mean": 2953717.4, "bw_dev": 40657.130891, "bw_samples": 5, "iops_min": 1412, "iops_max": 1466, "iops_mean": 1441.6, "iops_stddev": 19.756012, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 24.34, "sys_cpu": 52.3, "ctx": 6396, "majf": 0, "minf": 558, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 5.015935, "100": 0.0, "250": 13.509769, "500": 81.294167, "750": 0.152418, "1000": 0.0}, "latency_ms": {"2": 0.013856, "4": 0.0, "10": 0.0, "20": 0.013856, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 13804, "write_ios": 1, "read_sectors": 28270592, "write_sectors": 8, "read_merges": 6902, "write_merges": 0, "read_ticks": 5246, "write_ticks": 0, "in_queue": 5246, "util": 79.507187}]} 2026-04-19 19:57:26.446238 2026-04-19 19:16:23.943354 -137 2 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628675, "timestamp_ms": 1776628675987, "time": "Sun Apr 19 19:57:55 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "job_start": 1776628670689, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15227420672, "io_kbytes": 14870528, "bw_bytes": 3044875159, "bw": 2973510, "iops": 1451.909618, "runtime": 5001, "total_ios": 7261, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 297278, "max": 5936887, "mean": 398497.770417, "stddev": 112760.643096, "N": 7261}, "clat_ns": {"min": 23370, "max": 931695, "mean": 274075.236056, "stddev": 81321.780494, "N": 7261, "percentile": {"1.000000": 24960, "5.000000": 27008, "10.000000": 199680, "20.000000": 244736, "30.000000": 261120, "40.000000": 272384, "50.000000": 284672, "60.000000": 296960, "70.000000": 309248, "80.000000": 321536, "90.000000": 346112, "95.000000": 370688, "99.000000": 444416, "99.500000": 477184, "99.900000": 528384, "99.950000": 610304, "99.990000": 929792}}, "lat_ns": {"min": 506397, "max": 6178925, "mean": 672573.006473, "stddev": 114766.412555, "N": 7261}, "bw_min": 2890570, "bw_max": 3054574, "bw_agg": 100.0, "bw_mean": 2975302.0, "bw_dev": 66416.998502, "bw_samples": 5, "iops_min": 1410, "iops_max": 1491, "iops_mean": 1452.2, "iops_stddev": 32.828341, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 22.38, "sys_cpu": 55.06, "ctx": 6462, "majf": 0, "minf": 557, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 5.935822, "100": 0.0, "250": 16.705688, "500": 77.138135, "750": 0.192811, "1000": 0.027544}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 13938, "write_ios": 6, "read_sectors": 28545024, "write_sectors": 128, "read_merges": 6969, "write_merges": 10, "read_ticks": 5214, "write_ticks": 2, "in_queue": 5216, "util": 78.559738}]} 2026-04-19 19:57:41.277601 2026-04-19 19:16:23.943354 -1703 50 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-29 21:02:47.002686 2026-04-29 21:02:47.002689 -138 2 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628681, "timestamp_ms": 1776628681802, "time": "Sun Apr 19 19:58:01 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "job_start": 1776628676517, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9523167232, "io_kbytes": 9299968, "bw_bytes": 1904252595, "bw": 1859621, "iops": 908.018396, "runtime": 5001, "total_ios": 4541, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 367388, "max": 11955892, "mean": 492558.749174, "stddev": 215077.78593, "N": 4541}, "clat_ns": {"min": 27880, "max": 4441865, "mean": 589582.114512, "stddev": 203115.251824, "N": 4541, "percentile": {"1.000000": 325632, "5.000000": 407552, "10.000000": 444416, "20.000000": 489472, "30.000000": 518144, "40.000000": 544768, "50.000000": 569344, "60.000000": 593920, "70.000000": 626688, "80.000000": 659456, "90.000000": 724992, "95.000000": 774144, "99.000000": 1073152, "99.500000": 1761280, "99.900000": 3522560, "99.950000": 4145152, "99.990000": 4423680}}, "lat_ns": {"min": 709416, "max": 12287150, "mean": 1082140.863686, "stddev": 297368.3365, "N": 4541}, "bw_min": 1779980, "bw_max": 1961897, "bw_agg": 100.0, "bw_mean": 1860395.0, "bw_dev": 67103.34026, "bw_samples": 5, "iops_min": 869, "iops_max": 957, "iops_mean": 908.0, "iops_stddev": 32.557641, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 17.42, "sys_cpu": 34.26, "ctx": 4703, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.154151, "100": 0.022022, "250": 0.110108, "500": 23.342876, "750": 69.478089, "1000": 5.681568}, "latency_ms": {"2": 0.814799, "4": 0.330324, "10": 0.066065, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 8677, "read_sectors": 0, "write_sectors": 17768592, "read_merges": 0, "write_merges": 4356, "read_ticks": 0, "write_ticks": 4977, "in_queue": 4977, "util": 65.147179}]} 2026-04-19 19:57:56.095228 2026-04-19 19:16:23.943354 -139 2 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628709, "timestamp_ms": 1776628709644, "time": "Sun Apr 19 19:58:29 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "job_start": 1776628704398, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 12721324032, "io_kbytes": 12423168, "bw_bytes": 2543756055, "bw": 2484136, "iops": 606.478704, "runtime": 5001, "total_ios": 3033, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 530137, "max": 4682643, "mean": 770110.419387, "stddev": 193101.342543, "N": 3033}, "clat_ns": {"min": 31400, "max": 6769992, "mean": 856401.905045, "stddev": 271586.273812, "N": 3033, "percentile": {"1.000000": 419840, "5.000000": 552960, "10.000000": 634880, "20.000000": 692224, "30.000000": 749568, "40.000000": 790528, "50.000000": 831488, "60.000000": 872448, "70.000000": 921600, "80.000000": 978944, "90.000000": 1073152, "95.000000": 1187840, "99.000000": 1646592, "99.500000": 2113536, "99.900000": 3686400, "99.950000": 5472256, "99.990000": 6782976}}, "lat_ns": {"min": 1134113, "max": 7587257, "mean": 1626512.324431, "stddev": 321956.569258, "N": 3033}, "bw_min": 2418317, "bw_max": 2562562, "bw_agg": 100.0, "bw_mean": 2484662.2, "bw_dev": 51785.805808, "bw_samples": 5, "iops_min": 590, "iops_max": 625, "iops_mean": 606.4, "iops_stddev": 12.54193, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.52, "sys_cpu": 37.64, "ctx": 3276, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.065941, "100": 0.0, "250": 0.131883, "500": 2.967359, "750": 27.068909, "1000": 52.027695}, "latency_ms": {"2": 17.012859, "4": 0.659413, "10": 0.065941, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 12113, "read_sectors": 0, "write_sectors": 24797456, "read_merges": 0, "write_merges": 29, "read_ticks": 0, "write_ticks": 9186, "in_queue": 9186, "util": 67.668293}]} 2026-04-19 19:58:23.928292 2026-04-19 19:16:23.943354 -140 2 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628725, "timestamp_ms": 1776628725879, "time": "Sun Apr 19 19:58:45 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "job_start": 1776628720600, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 24805113856, "io_kbytes": 24223744, "bw_bytes": 4960030765, "bw": 4843780, "iops": 1182.563487, "runtime": 5001, "total_ios": 5914, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 426398, "max": 9725575, "mean": 559600.777308, "stddev": 145196.565171, "N": 5914}, "clat_ns": {"min": 22740, "max": 825435, "mean": 270140.826682, "stddev": 83070.72534, "N": 5914, "percentile": {"1.000000": 24704, "5.000000": 156672, "10.000000": 205824, "20.000000": 224256, "30.000000": 240640, "40.000000": 254976, "50.000000": 268288, "60.000000": 280576, "70.000000": 296960, "80.000000": 313344, "90.000000": 350208, "95.000000": 403456, "99.000000": 552960, "99.500000": 602112, "99.900000": 684032, "99.950000": 741376, "99.990000": 823296}}, "lat_ns": {"min": 630637, "max": 10002213, "mean": 829741.603991, "stddev": 149581.677226, "N": 5914}, "bw_min": 4743168, "bw_max": 4911104, "bw_agg": 100.0, "bw_mean": 4846692.0, "bw_dev": 69734.588394, "bw_samples": 5, "iops_min": 1158, "iops_max": 1198, "iops_mean": 1183.0, "iops_stddev": 16.777962, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.86, "sys_cpu": 75.8, "ctx": 5260, "majf": 0, "minf": 1068, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 3.533987, "100": 0.016909, "250": 32.600609, "500": 62.292864, "750": 1.538722, "1000": 0.016909}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 22555, "write_ios": 0, "read_sectors": 46194688, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 10317, "write_ticks": 0, "in_queue": 10317, "util": 60.25878}]} 2026-04-19 19:58:32.169523 2026-04-19 19:16:23.943354 -141 2 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628740, "timestamp_ms": 1776628740680, "time": "Sun Apr 19 19:59:00 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "job_start": 1776628735406, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 18513657856, "io_kbytes": 18079744, "bw_bytes": 3701251070, "bw": 3614502, "iops": 882.447021, "runtime": 5002, "total_ios": 4414, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 478427, "max": 9264118, "mean": 574653.344812, "stddev": 152951.535928, "N": 4414}, "clat_ns": {"min": 373378, "max": 10716700, "mean": 541399.356819, "stddev": 173170.217975, "N": 4414, "percentile": {"1.000000": 411648, "5.000000": 436224, "10.000000": 448512, "20.000000": 468992, "30.000000": 489472, "40.000000": 505856, "50.000000": 528384, "60.000000": 544768, "70.000000": 569344, "80.000000": 610304, "90.000000": 643072, "95.000000": 675840, "99.000000": 741376, "99.500000": 774144, "99.900000": 856064, "99.950000": 970752, "99.990000": 10682368}}, "lat_ns": {"min": 903705, "max": 11356476, "mean": 1116052.701631, "stddev": 235699.092103, "N": 4414}, "bw_min": 3494489, "bw_max": 3727360, "bw_agg": 100.0, "bw_mean": 3615978.6, "bw_dev": 83955.495281, "bw_samples": 5, "iops_min": 853, "iops_max": 910, "iops_mean": 882.6, "iops_stddev": 20.476816, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 9.858028, "sys_cpu": 52.489502, "ctx": 4418, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 35.364749, "750": 63.683734, "1000": 0.906208}, "latency_ms": {"2": 0.0, "4": 0.022655, "10": 0.0, "20": 0.022655, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 20991, "write_ios": 6, "read_sectors": 34392424, "write_sectors": 128, "read_merges": 0, "write_merges": 10, "read_ticks": 15738, "write_ticks": 2, "in_queue": 15740, "util": 81.084412}]} 2026-04-19 19:58:45.977832 2026-04-19 19:16:23.943354 -142 2 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628746, "timestamp_ms": 1776628746477, "time": "Sun Apr 19 19:59:06 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "job_start": 1776628741202, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 11446255616, "io_kbytes": 11177984, "bw_bytes": 2288793364, "bw": 2235149, "iops": 545.690862, "runtime": 5001, "total_ios": 2729, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 549187, "max": 4829693, "mean": 854130.506413, "stddev": 239297.959818, "N": 2729}, "clat_ns": {"min": 31429, "max": 44515839, "mean": 955216.329791, "stddev": 1224714.864926, "N": 2729, "percentile": {"1.000000": 440320, "5.000000": 544768, "10.000000": 626688, "20.000000": 716800, "30.000000": 774144, "40.000000": 831488, "50.000000": 880640, "60.000000": 929792, "70.000000": 987136, "80.000000": 1056768, "90.000000": 1204224, "95.000000": 1368064, "99.000000": 1990656, "99.500000": 2801664, "99.900000": 26345472, "99.950000": 35913728, "99.990000": 44302336}}, "lat_ns": {"min": 1111433, "max": 45166946, "mean": 1809346.836204, "stddev": 1237716.083893, "N": 2729}, "bw_min": 2127792, "bw_max": 2328295, "bw_agg": 99.940641, "bw_mean": 2233823.8, "bw_dev": 87914.594833, "bw_samples": 5, "iops_min": 519, "iops_max": 568, "iops_mean": 545.0, "iops_stddev": 21.575449, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.4, "sys_cpu": 49.7, "ctx": 2969, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.146574, "100": 0.0, "250": 0.0, "500": 2.491755, "750": 22.572371, "1000": 47.086845}, "latency_ms": {"2": 26.713082, "4": 0.732869, "10": 0.146574, "20": 0.0, "50": 0.10993, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 10501, "read_sectors": 0, "write_sectors": 21504144, "read_merges": 0, "write_merges": 17, "read_ticks": 0, "write_ticks": 9425, "in_queue": 9425, "util": 90.026569}]} 2026-04-19 19:59:00.777696 2026-04-19 19:16:23.943354 -143 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 19:59:12.093623 2026-04-19 19:59:12.093627 -144 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:42:02' --until '2026-04-19 19:59:11' 0 OOM records. 2026-04-19 19:42:02.239695 2026-04-19 19:59:11.821339 -145 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:42:02' --until '2026-04-19 19:59:11' 0 Systemd errors records 2026-04-19 19:42:02.239695 2026-04-19 19:59:11.821339 -146 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628768, "timestamp_ms": 1776628768292, "time": "Sun Apr 19 19:59:28 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776628754993, "error": 0, "eta": 0, "elapsed": 14, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "281MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles", "offset_increment": "3k", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 17862492160, "io_kbytes": 17443840, "bw_bytes": 1373932171, "bw": 1341730, "iops": 1310.283824, "runtime": 13001, "total_ios": 17035, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 196379, "max": 10586531, "mean": 283299.13619, "stddev": 115432.425114, "N": 17035}, "clat_ns": {"min": 26330, "max": 672826674, "mean": 462197.974582, "stddev": 6055900.333161, "N": 17035, "percentile": {"1.000000": 218112, "5.000000": 276480, "10.000000": 292864, "20.000000": 317440, "30.000000": 337920, "40.000000": 354304, "50.000000": 374784, "60.000000": 395264, "70.000000": 419840, "80.000000": 456704, "90.000000": 522240, "95.000000": 602112, "99.000000": 847872, "99.500000": 1003520, "99.900000": 1662976, "99.950000": 2088960, "99.990000": 417333248}}, "lat_ns": {"min": 455218, "max": 673135763, "mean": 745497.110772, "stddev": 6057230.60436, "N": 17035}, "bw_min": 79379, "bw_max": 1543168, "bw_agg": 99.094182, "bw_mean": 1329577.333333, "bw_dev": 401390.24611, "bw_samples": 12, "iops_min": 77, "iops_max": 1507, "iops_mean": 1298.083333, "iops_stddev": 392.075238, "iops_samples": 12}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 20.784615, "sys_cpu": 26.030769, "ctx": 17268, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.170238, "100": 0.01, "250": 2.148518, "500": 85.206927, "750": 10.719108, "1000": 1.244497}, "latency_ms": {"2": 0.44027, "4": 0.046962, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.01, "750": 0.01, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 5, "write_ios": 59894, "read_sectors": 272, "write_sectors": 69854307, "read_merges": 29, "write_merges": 38235, "read_ticks": 12, "write_ticks": 20201, "in_queue": 20212, "util": 97.145289}]} 2026-04-19 19:59:14.426525 2026-04-19 19:16:23.943354 -147 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-195914Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628768, "timestamp_ms": 1776628768292, "time": "Sun Apr 19 19:59:28 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776628754988, "error": 0, "eta": 0, "elapsed": 14, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "large_testfile", "size": "281MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260419-195914Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 18448646144, "io_kbytes": 18016256, "bw_bytes": 1419017471, "bw": 1385759, "iops": 1353.280517, "runtime": 13001, "total_ios": 17594, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 200069, "max": 3252391, "mean": 290585.942367, "stddev": 84135.621041, "N": 17594}, "clat_ns": {"min": 23600, "max": 672821084, "mean": 431094.814141, "stddev": 5071865.012368, "N": 17594, "percentile": {"1.000000": 224256, "5.000000": 276480, "10.000000": 292864, "20.000000": 313344, "30.000000": 333824, "40.000000": 350208, "50.000000": 366592, "60.000000": 387072, "70.000000": 411648, "80.000000": 444416, "90.000000": 514048, "95.000000": 593920, "99.000000": 839680, "99.500000": 987136, "99.900000": 1744896, "99.950000": 2408448, "99.990000": 11337728}}, "lat_ns": {"min": 460438, "max": 673207862, "mean": 721680.756508, "stddev": 5073627.801057, "N": 17594}, "bw_min": 690832, "bw_max": 1557013, "bw_agg": 99.467422, "bw_mean": 1378379.083333, "bw_dev": 228267.587678, "bw_samples": 12, "iops_min": 674, "iops_max": 1507, "iops_mean": 1344.833333, "iops_stddev": 222.129705, "iops_samples": 12}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 22.315385, "sys_cpu": 27.169231, "ctx": 17814, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.142094, "100": 0.0, "250": 1.926793, "500": 86.59202, "750": 9.781744, "1000": 1.091281}, "latency_ms": {"2": 0.386495, "4": 0.062521, "10": 0.01, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.01, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 5, "write_ios": 59904, "read_sectors": 272, "write_sectors": 69864580, "read_merges": 29, "write_merges": 38241, "read_ticks": 12, "write_ticks": 20203, "in_queue": 20215, "util": 97.130704}]} 2026-04-19 19:59:14.416151 2026-04-19 19:16:23.943354 -148 2 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 281MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-195914Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628768, "timestamp_ms": 1776628768539, "time": "Sun Apr 19 19:59:28 2026", "jobs": [{"jobname": "rand_write_512b", "groupid": 0, "job_start": 1776628754952, "error": 0, "eta": 0, "elapsed": 14, "job options": {"name": "rand_write_512b", "numjobs": "1", "filename": "small_testfile", "size": "281MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260419-195914Z/testfiles", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 13447680, "io_kbytes": 13132, "bw_bytes": 1034357, "bw": 1010, "iops": 2020.229213, "runtime": 13001, "total_ios": 26265, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 74900, "max": 672937504, "mean": 415122.7336, "stddev": 4726483.823883, "N": 26265}, "clat_ns": {"min": 19990, "max": 5081394, "mean": 61910.390558, "stddev": 97774.421263, "N": 26265, "percentile": {"1.000000": 23936, "5.000000": 24448, "10.000000": 24960, "20.000000": 25472, "30.000000": 25984, "40.000000": 26240, "50.000000": 27008, "60.000000": 27776, "70.000000": 34048, "80.000000": 40192, "90.000000": 177152, "95.000000": 250880, "99.000000": 391168, "99.500000": 464896, "99.900000": 692224, "99.950000": 823296, "99.990000": 3162112}}, "lat_ns": {"min": 194659, "max": 673020323, "mean": 477033.124158, "stddev": 4725918.337524, "N": 26265}, "bw_min": 135, "bw_max": 1173, "bw_agg": 99.88969, "bw_mean": 1009.307692, "bw_dev": 272.56326, "bw_samples": 13, "iops_min": 270, "iops_max": 2346, "iops_mean": 2019.0, "iops_stddev": 545.180093, "iops_samples": 13}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 13.438462, "sys_cpu": 51.346154, "ctx": 26498, "majf": 0, "minf": 38, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 82.554731, "100": 1.199315, "250": 11.17076, "500": 4.717304, "750": 0.289358, "1000": 0.034266}, "latency_ms": {"2": 0.015229, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 5, "write_ios": 59894, "read_sectors": 272, "write_sectors": 69854307, "read_merges": 29, "write_merges": 38234, "read_ticks": 12, "write_ticks": 20201, "in_queue": 20212, "util": 97.280756}]} 2026-04-19 19:59:14.407357 2026-04-19 19:16:23.943354 -149 2 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628782, "timestamp_ms": 1776628782077, "time": "Sun Apr 19 19:59:42 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "job_start": 1776628768796, "error": 0, "eta": 0, "elapsed": 14, "job options": {"name": "seq_write_256k", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "281MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles", "offset_increment": "3k", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8425308160, "io_kbytes": 8227840, "bw_bytes": 648050777, "bw": 632862, "iops": 2472.117529, "runtime": 13001, "total_ios": 32140, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 115149, "max": 3795069, "mean": 172325.399751, "stddev": 70091.593245, "N": 32140}, "clat_ns": {"min": 24060, "max": 119867748, "mean": 216358.676042, "stddev": 685064.111483, "N": 32140, "percentile": {"1.000000": 25984, "5.000000": 36096, "10.000000": 162816, "20.000000": 181248, "30.000000": 191488, "40.000000": 199680, "50.000000": 207872, "60.000000": 216064, "70.000000": 226304, "80.000000": 242688, "90.000000": 272384, "95.000000": 305152, "99.000000": 436224, "99.500000": 544768, "99.900000": 1073152, "99.950000": 1728512, "99.990000": 3489792}}, "lat_ns": {"min": 265669, "max": 120121237, "mean": 388684.075793, "stddev": 687696.038619, "N": 32140}, "bw_min": 527856, "bw_max": 674722, "bw_agg": 100.0, "bw_mean": 633116.615385, "bw_dev": 43283.984362, "bw_samples": 13, "iops_min": 2061, "iops_max": 2635, "iops_mean": 2472.846154, "iops_stddev": 169.159612, "iops_samples": 13}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 30.338462, "sys_cpu": 27.661538, "ctx": 32262, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 5.332918, "100": 0.024891, "250": 78.186061, "500": 15.846297, "750": 0.373367, "1000": 0.11201}, "latency_ms": {"2": 0.074673, "4": 0.043559, "10": 0.0, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 4, "write_ios": 94194, "read_sectors": 32, "write_sectors": 33044432, "read_merges": 0, "write_merges": 140, "read_ticks": 1, "write_ticks": 31549, "in_queue": 37028, "util": 100.0}]} 2026-04-19 19:59:28.411519 2026-04-19 19:16:23.943354 -150 2 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-195914Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628782, "timestamp_ms": 1776628782076, "time": "Sun Apr 19 19:59:42 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "job_start": 1776628768800, "error": 0, "eta": 0, "elapsed": 14, "job options": {"name": "seq_write_256k", "numjobs": "1", "filename": "large_testfile", "size": "281MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260419-195914Z/testfiles", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8699248640, "io_kbytes": 8495360, "bw_bytes": 669121501, "bw": 653438, "iops": 2552.495962, "runtime": 13001, "total_ios": 33185, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 106650, "max": 6518863, "mean": 159568.34383, "stddev": 71045.803643, "N": 33185}, "clat_ns": {"min": 23060, "max": 119823899, "mean": 216628.966159, "stddev": 671518.675078, "N": 33185, "percentile": {"1.000000": 25984, "5.000000": 126464, "10.000000": 166912, "20.000000": 183296, "30.000000": 191488, "40.000000": 197632, "50.000000": 205824, "60.000000": 214016, "70.000000": 224256, "80.000000": 240640, "90.000000": 268288, "95.000000": 309248, "99.000000": 440320, "99.500000": 544768, "99.900000": 1056768, "99.950000": 1925120, "99.990000": 3883008}}, "lat_ns": {"min": 255069, "max": 119966028, "mean": 376197.309989, "stddev": 673697.217257, "N": 33185}, "bw_min": 526321, "bw_max": 692736, "bw_agg": 100.0, "bw_mean": 653709.307692, "bw_dev": 49527.744683, "bw_samples": 13, "iops_min": 2055, "iops_max": 2706, "iops_mean": 2553.230769, "iops_stddev": 193.532579, "iops_samples": 13}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 30.623077, "sys_cpu": 25.969231, "ctx": 33327, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 4.722013, "100": 0.042188, "250": 79.511828, "500": 15.097182, "750": 0.391743, "1000": 0.117523}, "latency_ms": {"2": 0.072322, "4": 0.036161, "10": 0.01, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 4, "write_ios": 94200, "read_sectors": 32, "write_sectors": 33047000, "read_merges": 0, "write_merges": 140, "read_ticks": 1, "write_ticks": 31550, "in_queue": 37029, "util": 100.0}]} 2026-04-19 19:59:28.413886 2026-04-19 19:16:23.943354 -151 2 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 281MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-195914Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628782, "timestamp_ms": 1776628782955, "time": "Sun Apr 19 19:59:42 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "job_start": 1776628769167, "error": 0, "eta": 0, "elapsed": 15, "job options": {"name": "rand_write_4k", "numjobs": "1", "filename": "small_testfile", "size": "281MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260419-195914Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 129585152, "io_kbytes": 126548, "bw_bytes": 9967321, "bw": 9733, "iops": 2433.428198, "runtime": 13001, "total_ios": 31637, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 105219, "max": 3356211, "mean": 176536.701805, "stddev": 77191.170773, "N": 31637}, "clat_ns": {"min": 23740, "max": 119904448, "mean": 216134.040206, "stddev": 679243.524469, "N": 31637, "percentile": {"1.000000": 26240, "5.000000": 28032, "10.000000": 162816, "20.000000": 177152, "30.000000": 191488, "40.000000": 201728, "50.000000": 209920, "60.000000": 220160, "70.000000": 234496, "80.000000": 254976, "90.000000": 280576, "95.000000": 309248, "99.000000": 407552, "99.500000": 481280, "99.900000": 905216, "99.950000": 1630208, "99.990000": 3260416}}, "lat_ns": {"min": 260449, "max": 120098837, "mean": 392670.742011, "stddev": 679745.927404, "N": 31637}, "bw_min": 8432, "bw_max": 10436, "bw_agg": 100.0, "bw_mean": 9736.692308, "bw_dev": 487.515365, "bw_samples": 13, "iops_min": 2108, "iops_max": 2609, "iops_mean": 2434.153846, "iops_stddev": 121.901494, "iops_samples": 13}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 22.569231, "sys_cpu": 38.315385, "ctx": 31691, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 7.023422, "100": 0.025287, "250": 70.90116, "500": 21.613933, "750": 0.300281, "1000": 0.044252}, "latency_ms": {"2": 0.053735, "4": 0.034769, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 1, "write_ios": 95463, "read_sectors": 8, "write_sectors": 33197720, "read_merges": 0, "write_merges": 140, "read_ticks": 1, "write_ticks": 31660, "in_queue": 37139, "util": 100.0}]} 2026-04-19 19:59:28.69776 2026-04-19 19:16:23.943354 -152 2 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-195914Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628807, "timestamp_ms": 1776628807066, "time": "Sun Apr 19 20:00:07 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "job_start": 1776628794825, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_1M", "numjobs": "1", "filename": "large_testfile", "size": "281MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260419-195914Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 26048724992, "io_kbytes": 25438208, "bw_bytes": 2170546203, "bw": 2119674, "iops": 2069.994167, "runtime": 12001, "total_ios": 24842, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 149039, "max": 6644193, "mean": 195535.869254, "stddev": 71674.591172, "N": 24842}, "clat_ns": {"min": 21850, "max": 3098643, "mean": 272650.234442, "stddev": 75337.580022, "N": 24842, "percentile": {"1.000000": 112128, "5.000000": 193536, "10.000000": 214016, "20.000000": 234496, "30.000000": 248832, "40.000000": 261120, "50.000000": 272384, "60.000000": 280576, "70.000000": 292864, "80.000000": 305152, "90.000000": 325632, "95.000000": 354304, "99.000000": 440320, "99.500000": 509952, "99.900000": 847872, "99.950000": 1351680, "99.990000": 2736128}}, "lat_ns": {"min": 318968, "max": 6670212, "mean": 468186.103695, "stddev": 98581.978015, "N": 24842}, "bw_min": 2059275, "bw_max": 2159616, "bw_agg": 100.0, "bw_mean": 2120910.833333, "bw_dev": 32199.57033, "bw_samples": 12, "iops_min": 2011, "iops_max": 2109, "iops_mean": 2071.0, "iops_stddev": 31.446925, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 25.958333, "sys_cpu": 41.016667, "ctx": 24526, "majf": 0, "minf": 302, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.54746, "100": 0.177119, "250": 29.466227, "500": 69.277836, "750": 0.402544, "1000": 0.048305}, "latency_ms": {"2": 0.048305, "4": 0.032204, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 82512, "write_ios": 213, "read_sectors": 101888032, "write_sectors": 477992, "read_merges": 0, "write_merges": 6, "read_ticks": 18084, "write_ticks": 16408, "in_queue": 35815, "util": 91.421467}]} 2026-04-19 19:59:42.15208 2026-04-19 19:16:23.943354 -153 2 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628807, "timestamp_ms": 1776628807076, "time": "Sun Apr 19 20:00:07 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "job_start": 1776628794827, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_1M", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "281MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles", "offset_increment": "3k", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 26161971200, "io_kbytes": 25548800, "bw_bytes": 2179982601, "bw": 2128889, "iops": 2078.993417, "runtime": 12001, "total_ios": 24950, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 147559, "max": 4664244, "mean": 197946.790341, "stddev": 67073.121847, "N": 24950}, "clat_ns": {"min": 18250, "max": 1626341, "mean": 268290.552265, "stddev": 61651.500058, "N": 24950, "percentile": {"1.000000": 98816, "5.000000": 189440, "10.000000": 209920, "20.000000": 230400, "30.000000": 244736, "40.000000": 257024, "50.000000": 268288, "60.000000": 276480, "70.000000": 288768, "80.000000": 301056, "90.000000": 325632, "95.000000": 350208, "99.000000": 436224, "99.500000": 501760, "99.900000": 700416, "99.950000": 872448, "99.990000": 1482752}}, "lat_ns": {"min": 310758, "max": 4994922, "mean": 466237.342605, "stddev": 82700.904102, "N": 24950}, "bw_min": 2051072, "bw_max": 2214912, "bw_agg": 100.0, "bw_mean": 2129870.5, "bw_dev": 49911.379836, "bw_samples": 12, "iops_min": 2003, "iops_max": 2163, "iops_mean": 2080.0, "iops_stddev": 48.619113, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 26.233333, "sys_cpu": 41.558333, "ctx": 24733, "majf": 0, "minf": 300, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 0.789579, "100": 0.232465, "250": 32.901804, "500": 65.559118, "750": 0.432866, "1000": 0.044088}, "latency_ms": {"2": 0.032064, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 82610, "write_ios": 213, "read_sectors": 101984339, "write_sectors": 477992, "read_merges": 0, "write_merges": 6, "read_ticks": 18103, "write_ticks": 16408, "in_queue": 35834, "util": 91.406573}]} 2026-04-19 19:59:42.146331 2026-04-19 19:16:23.943354 -154 2 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 281MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-195914Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628812, "timestamp_ms": 1776628812083, "time": "Sun Apr 19 20:00:12 2026", "jobs": [{"jobname": "rand_read_512b", "groupid": 0, "job_start": 1776628799828, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "rand_read_512b", "numjobs": "1", "filename": "small_testfile", "size": "281MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260419-195914Z/testfiles", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 29873664, "io_kbytes": 29173, "bw_bytes": 2489264, "bw": 2430, "iops": 4861.844846, "runtime": 12001, "total_ios": 58347, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 51520, "max": 2071928, "mean": 87215.420433, "stddev": 42432.123943, "N": 58347}, "clat_ns": {"min": 19379, "max": 4809483, "mean": 105290.159083, "stddev": 74300.09638, "N": 58347, "percentile": {"1.000000": 20864, "5.000000": 22656, "10.000000": 25216, "20.000000": 78336, "30.000000": 97792, "40.000000": 103936, "50.000000": 108032, "60.000000": 113152, "70.000000": 118272, "80.000000": 126464, "90.000000": 142336, "95.000000": 162816, "99.000000": 207872, "99.500000": 240640, "99.900000": 505856, "99.950000": 1449984, "99.990000": 3260416}}, "lat_ns": {"min": 104030, "max": 4940552, "mean": 192505.579516, "stddev": 73364.610437, "N": 58347}, "bw_min": 2259, "bw_max": 2724, "bw_agg": 100.0, "bw_mean": 2431.916667, "bw_dev": 154.926058, "bw_samples": 12, "iops_min": 4518, "iops_max": 5448, "iops_mean": 4864.333333, "iops_stddev": 309.694082, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 60.325, "sys_cpu": 18.925, "ctx": 42258, "majf": 0, "minf": 39, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 11.582429, "100": 22.299347, "250": 65.684611, "500": 0.32221, "750": 0.032564, "1000": 0.011997}, "latency_ms": {"2": 0.013711, "4": 0.042847, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 87791, "write_ios": 501, "read_sectors": 60349459, "write_sectors": 1151200, "read_merges": 0, "write_merges": 23, "read_ticks": 15085, "write_ticks": 21756, "in_queue": 36901, "util": 95.792961}]} 2026-04-19 19:59:43.103361 2026-04-19 19:16:23.943354 -155 2 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628824, "timestamp_ms": 1776628824659, "time": "Sun Apr 19 20:00:24 2026", "jobs": [{"jobname": "seq_read_256k", "groupid": 0, "job_start": 1776628812616, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_256k", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "281MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles", "offset_increment": "3k", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 10292297728, "io_kbytes": 10051072, "bw_bytes": 857620008, "bw": 837519, "iops": 3271.560703, "runtime": 12001, "total_ios": 39262, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 88419, "max": 1622002, "mean": 129996.327365, "stddev": 49902.249647, "N": 39262}, "clat_ns": {"min": 22980, "max": 2352577, "mean": 161431.287403, "stddev": 68779.532505, "N": 39262, "percentile": {"1.000000": 24448, "5.000000": 27264, "10.000000": 122368, "20.000000": 136192, "30.000000": 148480, "40.000000": 156672, "50.000000": 162816, "60.000000": 171008, "70.000000": 177152, "80.000000": 187392, "90.000000": 205824, "95.000000": 226304, "99.000000": 296960, "99.500000": 378880, "99.900000": 856064, "99.950000": 1433600, "99.990000": 2113536}}, "lat_ns": {"min": 162999, "max": 2490417, "mean": 291427.614767, "stddev": 70773.115431, "N": 39262}, "bw_min": 749037, "bw_max": 888440, "bw_agg": 100.0, "bw_mean": 838007.25, "bw_dev": 36147.226737, "bw_samples": 12, "iops_min": 2925, "iops_max": 3470, "iops_mean": 3273.166667, "iops_stddev": 141.284905, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 31.425, "sys_cpu": 42.416667, "ctx": 35851, "majf": 0, "minf": 106, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 6.930365, "100": 0.458459, "250": 90.130406, "500": 2.195507, "750": 0.155367, "1000": 0.048393}, "latency_ms": {"2": 0.068769, "4": 0.012735, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 110269, "write_ios": 266, "read_sectors": 41778296, "write_sectors": 575800, "read_merges": 0, "write_merges": 25, "read_ticks": 17015, "write_ticks": 16606, "in_queue": 35090, "util": 93.963918}]} 2026-04-19 20:00:07.211846 2026-04-19 19:16:23.943354 -242 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:39:47' --until '2026-04-19 20:40:31' 0 OOM records. 2026-04-19 20:39:47.098596 2026-04-19 20:40:31.999596 -5345 172 loader systemd-analyze critical-chain [{"service_name": "postfix.service", "slow_time_s": 6.202}] 2026-06-15 20:13:52.863648 2026-06-15 20:13:52.863653 -156 2 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-195914Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628824, "timestamp_ms": 1776628824843, "time": "Sun Apr 19 20:00:24 2026", "jobs": [{"jobname": "seq_read_256k", "groupid": 0, "job_start": 1776628812601, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_256k", "numjobs": "1", "filename": "large_testfile", "size": "281MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260419-195914Z/testfiles", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 11350573056, "io_kbytes": 11084544, "bw_bytes": 945802271, "bw": 923635, "iops": 3607.949338, "runtime": 12001, "total_ios": 43299, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77080, "max": 2825394, "mean": 115168.966235, "stddev": 51027.879415, "N": 43299}, "clat_ns": {"min": 22190, "max": 2989973, "mean": 148879.463198, "stddev": 69260.188041, "N": 43299, "percentile": {"1.000000": 23680, "5.000000": 25216, "10.000000": 112128, "20.000000": 123392, "30.000000": 134144, "40.000000": 144384, "50.000000": 150528, "60.000000": 158720, "70.000000": 166912, "80.000000": 177152, "90.000000": 193536, "95.000000": 211968, "99.000000": 288768, "99.500000": 342016, "99.900000": 757760, "99.950000": 1089536, "99.990000": 2768896}}, "lat_ns": {"min": 154969, "max": 3133132, "mean": 264048.429433, "stddev": 71690.16035, "N": 43299}, "bw_min": 822784, "bw_max": 966342, "bw_agg": 100.0, "bw_mean": 924241.166667, "bw_dev": 37973.934158, "bw_samples": 12, "iops_min": 3214, "iops_max": 3774, "iops_mean": 3610.0, "iops_stddev": 148.127095, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 38.733333, "sys_cpu": 34.983333, "ctx": 39182, "majf": 0, "minf": 106, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 7.967851, "100": 0.570452, "250": 89.667198, "500": 1.579713, "750": 0.110857, "1000": 0.039262}, "latency_ms": {"2": 0.043881, "4": 0.020786, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 112417, "write_ios": 266, "read_sectors": 42444640, "write_sectors": 575800, "read_merges": 0, "write_merges": 25, "read_ticks": 17326, "write_ticks": 16606, "in_queue": 35401, "util": 93.842201}]} 2026-04-19 20:00:07.141473 2026-04-19 19:16:23.943354 -157 2 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 281MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-195914Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628830, "timestamp_ms": 1776628830137, "time": "Sun Apr 19 20:00:30 2026", "jobs": [{"jobname": "rand_read_4k", "groupid": 0, "job_start": 1776628818003, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "rand_read_4k", "numjobs": "1", "filename": "small_testfile", "size": "281MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260419-195914Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 237895680, "io_kbytes": 232320, "bw_bytes": 19822988, "bw": 19358, "iops": 4839.5967, "runtime": 12001, "total_ios": 58080, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 52540, "max": 581947, "mean": 88134.070816, "stddev": 40245.235899, "N": 58080}, "clat_ns": {"min": 20089, "max": 19595681, "mean": 104839.919146, "stddev": 93760.213475, "N": 58080, "percentile": {"1.000000": 20864, "5.000000": 22400, "10.000000": 25728, "20.000000": 74240, "30.000000": 94720, "40.000000": 99840, "50.000000": 105984, "60.000000": 112128, "70.000000": 120320, "80.000000": 130560, "90.000000": 148480, "95.000000": 168960, "99.000000": 222208, "99.500000": 257024, "99.900000": 444416, "99.950000": 634880, "99.990000": 1204224}}, "lat_ns": {"min": 106729, "max": 19704930, "mean": 192973.989962, "stddev": 93109.08675, "N": 58080}, "bw_min": 17028, "bw_max": 21033, "bw_agg": 100.0, "bw_mean": 19369.25, "bw_dev": 1422.58287, "bw_samples": 12, "iops_min": 4257, "iops_max": 5258, "iops_mean": 4842.25, "iops_stddev": 355.66356, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 58.825, "sys_cpu": 21.633333, "ctx": 39747, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 11.46522, "100": 28.870523, "250": 59.108127, "500": 0.476928, "750": 0.044766, "1000": 0.018939}, "latency_ms": {"2": 0.013774, "4": 0.0, "10": 0.0, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 102923, "write_ios": 2, "read_sectors": 23733840, "write_sectors": 24, "read_merges": 0, "write_merges": 1, "read_ticks": 14397, "write_ticks": 25, "in_queue": 14445, "util": 97.047261}]} 2026-04-19 20:00:12.185564 2026-04-19 19:16:23.943354 -158 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:00:30.941414 2026-04-19 20:00:30.941417 -159 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:59:13' --until '2026-04-19 20:00:30' 0 OOM records. 2026-04-19 19:59:13.993364 2026-04-19 20:00:30.676407 -160 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:59:13' --until '2026-04-19 20:00:30' 0 Systemd errors records 2026-04-19 19:59:13.993364 2026-04-19 20:00:30.676407 -161 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628838, "timestamp_ms": 1776628838346, "time": "Sun Apr 19 20:00:38 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776628833202, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2447376384, "io_kbytes": 2390016, "bw_bytes": 489279564, "bw": 477812, "iops": 466.613355, "runtime": 5002, "total_ios": 2334, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1928089, "max": 81086009, "mean": 2103226.722793, "stddev": 1790441.056273, "N": 2334}, "clat_ns": {"min": 20280, "max": 1200213, "mean": 25595.752785, "stddev": 35787.622684, "N": 2334, "percentile": {"1.000000": 20608, "5.000000": 21120, "10.000000": 21120, "20.000000": 21632, "30.000000": 21888, "40.000000": 22144, "50.000000": 22400, "60.000000": 22656, "70.000000": 23168, "80.000000": 23936, "90.000000": 25728, "95.000000": 28032, "99.000000": 105984, "99.500000": 166912, "99.900000": 268288, "99.950000": 1056768, "99.990000": 1204224}}, "lat_ns": {"min": 1949759, "max": 82286222, "mean": 2128822.475578, "stddev": 1813553.559836, "N": 2334}, "bw_min": 396915, "bw_max": 500736, "bw_agg": 100.0, "bw_mean": 477918.6, "bw_dev": 45370.451847, "bw_samples": 5, "iops_min": 388, "iops_max": 489, "iops_mean": 466.6, "iops_stddev": 43.992045, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 2.219556, "sys_cpu": 97.70046, "ctx": 14, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 98.329049, "100": 0.599829, "250": 0.942588, "500": 0.042845, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.08569, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:00:32.596035 2026-04-19 19:16:23.943354 -162 2 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628844, "timestamp_ms": 1776628844159, "time": "Sun Apr 19 20:00:44 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "job_start": 1776628838988, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2284060672, "io_kbytes": 2230528, "bw_bytes": 456720790, "bw": 446016, "iops": 1742.25155, "runtime": 5001, "total_ios": 8713, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 480297, "max": 5512649, "mean": 543290.53885, "stddev": 87356.472714, "N": 8713}, "clat_ns": {"min": 16110, "max": 712536, "mean": 20960.002525, "stddev": 15663.218156, "N": 8713, "percentile": {"1.000000": 16320, "5.000000": 16512, "10.000000": 16512, "20.000000": 16768, "30.000000": 17280, "40.000000": 18304, "50.000000": 18816, "60.000000": 19072, "70.000000": 19584, "80.000000": 20352, "90.000000": 22144, "95.000000": 26752, "99.000000": 98816, "99.500000": 127488, "99.900000": 187392, "99.950000": 216064, "99.990000": 708608}}, "lat_ns": {"min": 496577, "max": 5535529, "mean": 564250.541375, "stddev": 89064.293548, "N": 8713}, "bw_min": 422489, "bw_max": 453061, "bw_agg": 100.0, "bw_mean": 446201.8, "bw_dev": 13275.71093, "bw_samples": 5, "iops_min": 1650, "iops_max": 1768, "iops_mean": 1742.4, "iops_stddev": 51.713635, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.46, "sys_cpu": 93.5, "ctx": 20, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 75.921038, "50": 21.99013, "100": 1.124756, "250": 0.9526, "500": 0.0, "750": 0.011477, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:00:38.455294 2026-04-19 19:16:23.943354 -163 2 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628849, "timestamp_ms": 1776628849961, "time": "Sun Apr 19 20:00:49 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "job_start": 1776628844734, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_64k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1810497536, "io_kbytes": 1768064, "bw_bytes": 362027101, "bw": 353542, "iops": 5524.095181, "runtime": 5001, "total_ios": 27626, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 131599, "max": 1636561, "mean": 155140.314233, "stddev": 34933.248784, "N": 27626}, "clat_ns": {"min": 14640, "max": 722666, "mean": 18330.300948, "stddev": 13316.099488, "N": 27626, "percentile": {"1.000000": 14784, "5.000000": 14912, "10.000000": 14912, "20.000000": 15040, "30.000000": 15040, "40.000000": 15168, "50.000000": 15552, "60.000000": 16064, "70.000000": 17024, "80.000000": 18304, "90.000000": 20864, "95.000000": 25984, "99.000000": 85504, "99.500000": 107008, "99.900000": 175104, "99.950000": 214016, "99.990000": 337920}}, "lat_ns": {"min": 146619, "max": 1677641, "mean": 173470.615181, "stddev": 39335.333586, "N": 27626}, "bw_min": 339731, "bw_max": 365248, "bw_agg": 100.0, "bw_mean": 353714.0, "bw_dev": 9829.22853, "bw_samples": 5, "iops_min": 5308, "iops_max": 5707, "iops_mean": 5526.6, "iops_stddev": 153.090823, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 13.18, "sys_cpu": 86.74, "ctx": 22, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 87.609498, "50": 10.805039, "100": 0.944762, "250": 0.622602, "500": 0.014479, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:00:44.256237 2026-04-19 19:16:23.943354 -207 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 834 --vm-method all --vm-bytes 70% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 1561821, "real_time_secs": 23.76, "usr_time_secs": 72.41, "sys_time_secs": 33.96, "bogo_ops_s_real_time": 65745.84, "bogo_ops_s_usr_sys_time": 14682.0, "cpu_used_per_instance": 0.55, "rss_max_kb": 7196, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 834, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:19:04.038366 2026-04-19 19:16:23.943354 -208 3 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:21:03.02138 2026-04-19 20:21:03.021382 -209 3 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:09:15' --until '2026-04-19 20:21:01' 135 OOM records. 2026-04-19 20:09:15.044228 2026-04-19 20:21:01.109019 -164 2 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628856, "timestamp_ms": 1776628856019, "time": "Sun Apr 19 20:00:56 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "job_start": 1776628850793, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_read_1M", "numjobs": "1", "size": "100MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 2671771648, "io_kbytes": 2609152, "bw_bytes": 534033909, "bw": 521517, "iops": 509.294423, "runtime": 5003, "total_ios": 2548, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1793820, "max": 5094142, "mean": 1923885.14325, "stddev": 114807.990313, "N": 2548}, "clat_ns": {"min": 19460, "max": 818125, "mean": 26344.594192, "stddev": 23786.157557, "N": 2548, "percentile": {"1.000000": 19840, "5.000000": 20352, "10.000000": 20608, "20.000000": 20864, "30.000000": 21120, "40.000000": 21632, "50.000000": 22144, "60.000000": 22912, "70.000000": 23680, "80.000000": 24960, "90.000000": 27520, "95.000000": 33536, "99.000000": 142336, "99.500000": 164864, "99.900000": 199680, "99.950000": 211968, "99.990000": 815104}}, "lat_ns": {"min": 1813600, "max": 5143252, "mean": 1950229.737441, "stddev": 117333.231106, "N": 2548}, "bw_min": 505350, "bw_max": 530432, "bw_agg": 100.0, "bw_mean": 521938.8, "bw_dev": 10269.898719, "bw_samples": 5, "iops_min": 493, "iops_max": 518, "iops_mean": 509.4, "iops_stddev": 10.163661, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 2.538984, "sys_cpu": 97.361056, "ctx": 24, "majf": 0, "minf": 300, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 1.138148, "50": 95.44741, "100": 1.648352, "250": 1.726845, "500": 0.0, "750": 0.0, "1000": 0.039246}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:00:50.064887 2026-04-19 19:16:23.943354 -165 2 loader /usr/bin/fio --name seq_read_64k --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628862, "timestamp_ms": 1776628862085, "time": "Sun Apr 19 20:01:02 2026", "jobs": [{"jobname": "seq_read_64k", "groupid": 0, "job_start": 1776628856892, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_read_64k", "numjobs": "1", "size": "100MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 1938292736, "io_kbytes": 1892864, "bw_bytes": 387581030, "bw": 378497, "iops": 5914.017197, "runtime": 5001, "total_ios": 29576, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 123810, "max": 980464, "mean": 143828.274682, "stddev": 32260.29952, "N": 29576}, "clat_ns": {"min": 14870, "max": 682896, "mean": 18114.385279, "stddev": 12778.51444, "N": 29576, "percentile": {"1.000000": 15040, "5.000000": 15040, "10.000000": 15040, "20.000000": 15168, "30.000000": 15168, "40.000000": 15296, "50.000000": 15424, "60.000000": 15680, "70.000000": 16320, "80.000000": 18048, "90.000000": 20352, "95.000000": 24448, "99.000000": 83456, "99.500000": 110080, "99.900000": 156672, "99.950000": 191488, "99.990000": 272384}}, "lat_ns": {"min": 138899, "max": 1010554, "mean": 161942.659961, "stddev": 36211.438211, "N": 29576}, "bw_min": 366033, "bw_max": 395008, "bw_agg": 100.0, "bw_mean": 378699.8, "bw_dev": 10847.491724, "bw_samples": 5, "iops_min": 5721, "iops_max": 6172, "iops_mean": 5916.2, "iops_stddev": 169.601592, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.42, "sys_cpu": 85.52, "ctx": 12, "majf": 0, "minf": 56, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 88.794969, "50": 9.460373, "100": 1.098864, "250": 0.635651, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:00:56.12625 2026-04-19 19:16:23.943354 -166 2 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628867, "timestamp_ms": 1776628867889, "time": "Sun Apr 19 20:01:07 2026", "jobs": [{"jobname": "rand_write_64k", "groupid": 0, "job_start": 1776628862664, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_64k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1829634048, "io_kbytes": 1786752, "bw_bytes": 365853638, "bw": 357278, "iops": 5582.483503, "runtime": 5001, "total_ios": 27918, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 131879, "max": 783686, "mean": 153151.506483, "stddev": 29992.50466, "N": 27918}, "clat_ns": {"min": 14810, "max": 671186, "mean": 17891.318898, "stddev": 11909.280099, "N": 27918, "percentile": {"1.000000": 14912, "5.000000": 15040, "10.000000": 15040, "20.000000": 15168, "30.000000": 15168, "40.000000": 15296, "50.000000": 15552, "60.000000": 15680, "70.000000": 16512, "80.000000": 18048, "90.000000": 19840, "95.000000": 22912, "99.000000": 83456, "99.500000": 98816, "99.900000": 132096, "99.950000": 154624, "99.990000": 432128}}, "lat_ns": {"min": 147229, "max": 811805, "mean": 171042.825381, "stddev": 33556.72772, "N": 27918}, "bw_min": 347748, "bw_max": 364608, "bw_agg": 100.0, "bw_mean": 357339.2, "bw_dev": 6561.461666, "bw_samples": 5, "iops_min": 5434, "iops_max": 5694, "iops_mean": 5582.8, "iops_stddev": 101.561312, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.78, "sys_cpu": 85.16, "ctx": 20, "majf": 0, "minf": 41, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 90.210617, "50": 8.134537, "100": 1.174869, "250": 0.462067, "500": 0.014328, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:02.187071 2026-04-19 19:16:23.943354 -167 2 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628873, "timestamp_ms": 1776628873688, "time": "Sun Apr 19 20:01:13 2026", "jobs": [{"jobname": "rand_write_16k", "groupid": 0, "job_start": 1776628868474, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_16k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "16k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 964608000, "io_kbytes": 942000, "bw_bytes": 192883023, "bw": 188362, "iops": 11772.645471, "runtime": 5001, "total_ios": 58875, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 48750, "max": 1348832, "mean": 60075.109639, "stddev": 33220.485067, "N": 58875}, "clat_ns": {"min": 14670, "max": 565547, "mean": 17030.639915, "stddev": 9768.984981, "N": 58875, "percentile": {"1.000000": 14784, "5.000000": 14784, "10.000000": 14912, "20.000000": 14912, "30.000000": 15040, "40.000000": 15040, "50.000000": 15168, "60.000000": 15168, "70.000000": 15424, "80.000000": 16064, "90.000000": 18304, "95.000000": 21376, "99.000000": 76288, "99.500000": 88576, "99.900000": 119296, "99.950000": 134144, "99.990000": 205824}}, "lat_ns": {"min": 63649, "max": 1384962, "mean": 77105.749554, "stddev": 35493.006372, "N": 58875}, "bw_min": 179260, "bw_max": 192448, "bw_agg": 100.0, "bw_mean": 188440.6, "bw_dev": 5568.682411, "bw_samples": 5, "iops_min": 11204, "iops_max": 12028, "iops_mean": 11776.2, "iops_stddev": 348.199225, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 29.72, "sys_cpu": 70.16, "ctx": 32, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 93.154989, "50": 5.226327, "100": 1.367304, "250": 0.244586, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:07.985645 2026-04-19 19:16:23.943354 -210 3 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:09:15' --until '2026-04-19 20:21:01' 1 Systemd errors records 2026-04-19 20:09:15.044228 2026-04-19 20:21:01.109019 -243 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:39:47' --until '2026-04-19 20:40:31' 0 Systemd errors records 2026-04-19 20:39:47.098596 2026-04-19 20:40:31.999596 -5346 172 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-06-15 21:13:56.700848 2026-06-15 21:13:56.70085 -168 2 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628879, "timestamp_ms": 1776628879492, "time": "Sun Apr 19 20:01:19 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "job_start": 1776628874279, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_4k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 352731136, "io_kbytes": 344464, "bw_bytes": 70532120, "bw": 68879, "iops": 17219.756049, "runtime": 5001, "total_ios": 86116, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 27520, "max": 586807, "mean": 33836.487366, "stddev": 16742.11744, "N": 86116}, "clat_ns": {"min": 14570, "max": 716836, "mean": 17036.194284, "stddev": 10984.613562, "N": 86116, "percentile": {"1.000000": 14656, "5.000000": 14784, "10.000000": 14784, "20.000000": 14784, "30.000000": 14912, "40.000000": 14912, "50.000000": 14912, "60.000000": 15040, "70.000000": 15168, "80.000000": 15808, "90.000000": 18304, "95.000000": 21888, "99.000000": 81408, "99.500000": 98816, "99.900000": 128512, "99.950000": 144384, "99.990000": 252928}}, "lat_ns": {"min": 42280, "max": 745336, "mean": 50872.68165, "stddev": 21158.33811, "N": 86116}, "bw_min": 67060, "bw_max": 69976, "bw_agg": 100.0, "bw_mean": 68904.6, "bw_dev": 1208.307411, "bw_samples": 5, "iops_min": 16757, "iops_max": 17494, "iops_mean": 17224.8, "iops_stddev": 305.225654, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 42.34, "sys_cpu": 57.54, "ctx": 34, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 92.68777, "50": 5.59594, "100": 1.24251, "250": 0.462167, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:13.788925 2026-04-19 19:16:23.943354 -169 2 loader /usr/bin/fio --name rand_read_16k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628885, "timestamp_ms": 1776628885812, "time": "Sun Apr 19 20:01:25 2026", "jobs": [{"jobname": "rand_read_16k", "groupid": 0, "job_start": 1776628880538, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_read_16k", "numjobs": "1", "size": "100MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "16k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 1081245696, "io_kbytes": 1055904, "bw_bytes": 216205898, "bw": 211138, "iops": 13196.160768, "runtime": 5001, "total_ios": 65994, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 45200, "max": 479118, "mean": 52565.721353, "stddev": 17415.383298, "N": 65994}, "clat_ns": {"min": 14560, "max": 661126, "mean": 16655.010304, "stddev": 9632.587457, "N": 65994, "percentile": {"1.000000": 14656, "5.000000": 14784, "10.000000": 14784, "20.000000": 14784, "30.000000": 14784, "40.000000": 14784, "50.000000": 14912, "60.000000": 14912, "70.000000": 15040, "80.000000": 15424, "90.000000": 17792, "95.000000": 20608, "99.000000": 74240, "99.500000": 87552, "99.900000": 116224, "99.950000": 132096, "99.990000": 248832}}, "lat_ns": {"min": 60040, "max": 708416, "mean": 69220.731657, "stddev": 20817.251229, "N": 65994}, "bw_min": 204147, "bw_max": 213925, "bw_agg": 100.0, "bw_mean": 211215.2, "bw_dev": 3992.529486, "bw_samples": 5, "iops_min": 12762, "iops_max": 13364, "iops_mean": 13200.2, "iops_stddev": 247.204773, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 30.24, "sys_cpu": 69.68, "ctx": 22, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 94.225233, "50": 4.1625, "100": 1.365276, "250": 0.239416, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:19.591034 2026-04-19 19:16:23.943354 -170 2 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628892, "timestamp_ms": 1776628892367, "time": "Sun Apr 19 20:01:32 2026", "jobs": [{"jobname": "rand_read_4k", "groupid": 0, "job_start": 1776628887053, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_read_4k", "numjobs": "1", "size": "100MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 379736064, "io_kbytes": 370836, "bw_bytes": 75932026, "bw": 74152, "iops": 18538.092382, "runtime": 5001, "total_ios": 92709, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 25040, "max": 508008, "mean": 30540.354701, "stddev": 14894.443406, "N": 92709}, "clat_ns": {"min": 14510, "max": 555497, "mean": 16717.415386, "stddev": 9866.524999, "N": 92709, "percentile": {"1.000000": 14656, "5.000000": 14656, "10.000000": 14656, "20.000000": 14784, "30.000000": 14784, "40.000000": 14784, "50.000000": 14784, "60.000000": 14912, "70.000000": 14912, "80.000000": 15552, "90.000000": 17536, "95.000000": 21120, "99.000000": 77312, "99.500000": 90624, "99.900000": 122368, "99.950000": 134144, "99.990000": 187392}}, "lat_ns": {"min": 39670, "max": 583267, "mean": 47257.770087, "stddev": 18890.461697, "N": 92709}, "bw_min": 69894, "bw_max": 77292, "bw_agg": 100.0, "bw_mean": 74175.4, "bw_dev": 3047.886284, "bw_samples": 5, "iops_min": 17482, "iops_max": 19323, "iops_mean": 18544.0, "iops_stddev": 760.377867, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 43.28, "sys_cpu": 56.68, "ctx": 11, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 93.662967, "50": 4.636012, "100": 1.394687, "250": 0.304178, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:25.909026 2026-04-19 19:16:23.943354 -171 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:01:32.991915 2026-04-19 20:01:32.991919 -172 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:00:32' --until '2026-04-19 20:01:32' 0 OOM records. 2026-04-19 20:00:32.18055 2026-04-19 20:01:32.71586 -173 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:00:32' --until '2026-04-19 20:01:32' 0 Systemd errors records 2026-04-19 20:00:32.18055 2026-04-19 20:01:32.71586 -174 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628904, "timestamp_ms": 1776628904369, "time": "Sun Apr 19 20:01:44 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776628895164, "error": 0, "eta": 0, "elapsed": 10, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4482662400, "io_kbytes": 4377600, "bw_bytes": 497907630, "bw": 486237, "iops": 474.841719, "runtime": 9003, "total_ios": 4275, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1916010, "max": 46282434, "mean": 2068500.060585, "stddev": 957094.51087, "N": 4275}, "clat_ns": {"min": 19700, "max": 1159083, "mean": 24474.277427, "stddev": 25939.767682, "N": 4275, "percentile": {"1.000000": 20096, "5.000000": 20352, "10.000000": 20608, "20.000000": 20864, "30.000000": 21120, "40.000000": 21376, "50.000000": 21888, "60.000000": 22144, "70.000000": 22912, "80.000000": 24192, "90.000000": 26240, "95.000000": 29568, "99.000000": 73216, "99.500000": 156672, "99.900000": 254976, "99.950000": 261120, "99.990000": 1155072}}, "lat_ns": {"min": 1935940, "max": 46311594, "mean": 2092974.338012, "stddev": 962592.974691, "N": 4275}, "bw_min": 395892, "bw_max": 503287, "bw_agg": 100.0, "bw_mean": 486404.555556, "bw_dev": 34405.583261, "bw_samples": 9, "iops_min": 387, "iops_max": 491, "iops_mean": 474.777778, "iops_stddev": 33.375806, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 9002, "usr_cpu": 1.944012, "sys_cpu": 97.978227, "ctx": 54, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.608187, "50": 98.245614, "100": 0.350877, "250": 0.678363, "500": 0.070175, "750": 0.0, "1000": 0.023392}, "latency_ms": {"2": 0.023392, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:34.639396 2026-04-19 19:16:23.943354 -175 2 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628914, "timestamp_ms": 1776628914214, "time": "Sun Apr 19 20:01:54 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "job_start": 1776628904994, "error": 0, "eta": 0, "elapsed": 10, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4186963968, "io_kbytes": 4088832, "bw_bytes": 465166533, "bw": 454264, "iops": 1774.469503, "runtime": 9001, "total_ios": 15972, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 473038, "max": 7455328, "mean": 533920.226208, "stddev": 74317.725559, "N": 15972}, "clat_ns": {"min": 15880, "max": 819605, "mean": 20432.451352, "stddev": 15654.398037, "N": 15972, "percentile": {"1.000000": 16064, "5.000000": 16192, "10.000000": 16320, "20.000000": 16512, "30.000000": 17024, "40.000000": 17792, "50.000000": 18048, "60.000000": 18560, "70.000000": 19072, "80.000000": 19840, "90.000000": 21888, "95.000000": 25472, "99.000000": 97792, "99.500000": 125440, "99.900000": 177152, "99.950000": 201728, "99.990000": 602112}}, "lat_ns": {"min": 489117, "max": 7477488, "mean": 554352.677561, "stddev": 76318.451121, "N": 15972}, "bw_min": 440903, "bw_max": 461312, "bw_agg": 100.0, "bw_mean": 454467.222222, "bw_dev": 5998.267516, "bw_samples": 9, "iops_min": 1722, "iops_max": 1802, "iops_mean": 1774.777778, "iops_stddev": 23.557259, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 9000, "usr_cpu": 6.622222, "sys_cpu": 93.3, "ctx": 51, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 82.206361, "50": 15.777611, "100": 1.089406, "250": 0.907839, "500": 0.01, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:44.515257 2026-04-19 19:16:23.943354 -176 2 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628923, "timestamp_ms": 1776628923016, "time": "Sun Apr 19 20:02:03 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "job_start": 1776628914796, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "seq_write_64k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2974023680, "io_kbytes": 2904320, "bw_bytes": 371706496, "bw": 362994, "iops": 5671.791026, "runtime": 8001, "total_ios": 45380, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 131240, "max": 3717399, "mean": 151977.062208, "stddev": 34901.72011, "N": 45380}, "clat_ns": {"min": 14610, "max": 713356, "mean": 17357.728405, "stddev": 11569.448516, "N": 45380, "percentile": {"1.000000": 14784, "5.000000": 14784, "10.000000": 14912, "20.000000": 14912, "30.000000": 15040, "40.000000": 15168, "50.000000": 15168, "60.000000": 15424, "70.000000": 16064, "80.000000": 17536, "90.000000": 18816, "95.000000": 21632, "99.000000": 76288, "99.500000": 99840, "99.900000": 154624, "99.950000": 181248, "99.990000": 284672}}, "lat_ns": {"min": 146129, "max": 3739429, "mean": 169334.790613, "stddev": 37846.643577, "N": 45380}, "bw_min": 351391, "bw_max": 371136, "bw_agg": 100.0, "bw_mean": 363106.0, "bw_dev": 5820.321812, "bw_samples": 8, "iops_min": 5487, "iops_max": 5799, "iops_mean": 5673.25, "iops_stddev": 91.654242, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 12.2625, "sys_cpu": 87.625, "ctx": 50, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 92.904363, "50": 5.740414, "100": 0.872631, "250": 0.467166, "500": 0.011018, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:54.312959 2026-04-19 19:16:23.943354 -177 2 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628931, "timestamp_ms": 1776628931819, "time": "Sun Apr 19 20:02:11 2026", "jobs": [{"jobname": "rand_write_64k", "groupid": 0, "job_start": 1776628923593, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_64k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2937782272, "io_kbytes": 2868928, "bw_bytes": 367176886, "bw": 358571, "iops": 5602.674666, "runtime": 8001, "total_ios": 44827, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 132259, "max": 992124, "mean": 152751.688982, "stddev": 30525.488478, "N": 44827}, "clat_ns": {"min": 14960, "max": 661697, "mean": 17890.15455, "stddev": 10929.223749, "N": 44827, "percentile": {"1.000000": 15168, "5.000000": 15168, "10.000000": 15168, "20.000000": 15296, "30.000000": 15296, "40.000000": 15424, "50.000000": 15552, "60.000000": 15808, "70.000000": 16512, "80.000000": 17792, "90.000000": 19584, "95.000000": 22656, "99.000000": 81408, "99.500000": 94720, "99.900000": 130560, "99.950000": 154624, "99.990000": 257024}}, "lat_ns": {"min": 147599, "max": 1021424, "mean": 170641.843532, "stddev": 33942.82441, "N": 44827}, "bw_min": 339756, "bw_max": 365504, "bw_agg": 100.0, "bw_mean": 358684.25, "bw_dev": 8285.623155, "bw_samples": 8, "iops_min": 5311, "iops_max": 5711, "iops_mean": 5604.125, "iops_stddev": 128.446139, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 15.1, "sys_cpu": 84.8625, "ctx": 13, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 90.900573, "50": 7.390635, "100": 1.305017, "250": 0.392621, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:02:03.117323 2026-04-19 19:16:23.943354 -178 2 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628940, "timestamp_ms": 1776628940640, "time": "Sun Apr 19 20:02:20 2026", "jobs": [{"jobname": "rand_write_16k", "groupid": 0, "job_start": 1776628932426, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_16k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "16k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1543716864, "io_kbytes": 1507536, "bw_bytes": 192940490, "bw": 188418, "iops": 11776.152981, "runtime": 8001, "total_ios": 94221, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 49009, "max": 779316, "mean": 60423.609015, "stddev": 35313.58039, "N": 94221}, "clat_ns": {"min": 14720, "max": 762115, "mean": 17194.096019, "stddev": 11295.777618, "N": 94221, "percentile": {"1.000000": 14912, "5.000000": 14912, "10.000000": 14912, "20.000000": 14912, "30.000000": 15040, "40.000000": 15040, "50.000000": 15040, "60.000000": 15040, "70.000000": 15296, "80.000000": 15936, "90.000000": 18304, "95.000000": 22400, "99.000000": 78336, "99.500000": 93696, "99.900000": 142336, "99.950000": 171008, "99.990000": 301056}}, "lat_ns": {"min": 63930, "max": 818025, "mean": 77617.705034, "stddev": 38232.975371, "N": 94221}, "bw_min": 177904, "bw_max": 193792, "bw_agg": 100.0, "bw_mean": 188510.0, "bw_dev": 5528.477316, "bw_samples": 8, "iops_min": 11119, "iops_max": 12112, "iops_mean": 11781.0, "iops_stddev": 345.035402, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 30.5375, "sys_cpu": 69.3625, "ctx": 47, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 93.039768, "50": 5.353371, "100": 1.219473, "250": 0.367222, "500": 0.018043, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:02:11.927484 2026-04-19 19:16:23.943354 -211 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 95% --syscall-method all --verify --metrics {"pgscan_time_sec": 2.0, "stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 94687, "real_time_secs": 33.25, "usr_time_secs": 14.04, "sys_time_secs": 15.8, "bogo_ops_s_real_time": 2847.75, "bogo_ops_s_usr_sys_time": 3173.21, "cpu_used_per_instance": 22.44, "rss_max_kb": 665252, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:21:09.656872 2026-04-19 19:16:23.943354 -179 2 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628949, "timestamp_ms": 1776628949451, "time": "Sun Apr 19 20:02:29 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "job_start": 1776628941244, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_4k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 585805824, "io_kbytes": 572076, "bw_bytes": 73216575, "bw": 71500, "iops": 17875.140607, "runtime": 8001, "total_ios": 143019, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 27129, "max": 545997, "mean": 32633.653249, "stddev": 15883.829727, "N": 143019}, "clat_ns": {"min": 14420, "max": 545357, "mean": 16489.234969, "stddev": 10221.146067, "N": 143019, "percentile": {"1.000000": 14528, "5.000000": 14656, "10.000000": 14656, "20.000000": 14656, "30.000000": 14656, "40.000000": 14656, "50.000000": 14784, "60.000000": 14784, "70.000000": 14784, "80.000000": 15040, "90.000000": 16512, "95.000000": 19328, "99.000000": 80384, "99.500000": 93696, "99.900000": 123392, "99.950000": 144384, "99.990000": 228352}}, "lat_ns": {"min": 41870, "max": 573617, "mean": 49122.888218, "stddev": 19920.897763, "N": 143019}, "bw_min": 64811, "bw_max": 73696, "bw_agg": 99.962851, "bw_mean": 71474.0, "bw_dev": 2948.467835, "bw_samples": 8, "iops_min": 16202, "iops_max": 18424, "iops_mean": 17867.5, "iops_stddev": 737.992063, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 41.75, "sys_cpu": 58.1625, "ctx": 39, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 95.439068, "50": 2.942266, "100": 1.277453, "250": 0.334221, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:02:20.744496 2026-04-19 19:16:23.943354 -180 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:02:30.075102 2026-04-19 20:02:30.075105 -181 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:01:34' --until '2026-04-19 20:02:29' 0 OOM records. 2026-04-19 20:01:34.235493 2026-04-19 20:02:29.7984 -182 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:01:34' --until '2026-04-19 20:02:29' 0 Systemd errors records 2026-04-19 20:01:34.235493 2026-04-19 20:02:29.7984 -183 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename /dev/mapper/dust1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-dust-20260419-200238Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 50 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629009, "timestamp_ms": 1776629009073, "time": "Sun Apr 19 20:03:29 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776628958842, "error": 0, "eta": 0, "elapsed": 51, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "/dev/mapper/dust1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-dust-20260419-200238Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "50", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4363124736, "io_kbytes": 4260864, "bw_bytes": 87246790, "bw": 85201, "iops": 83.205023, "runtime": 50009, "total_ios": 4161, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 9690717, "max": 29024240, "mean": 11523988.769767, "stddev": 1004039.604159, "N": 4161}, "clat_ns": {"min": 29430, "max": 1708511, "mean": 472427.97092, "stddev": 215939.669626, "N": 4161, "percentile": {"1.000000": 148480, "5.000000": 201728, "10.000000": 242688, "20.000000": 296960, "30.000000": 337920, "40.000000": 382976, "50.000000": 432128, "60.000000": 485376, "70.000000": 536576, "80.000000": 610304, "90.000000": 774144, "95.000000": 905216, "99.000000": 1155072, "99.500000": 1236992, "99.900000": 1449984, "99.950000": 1548288, "99.990000": 1712128}}, "lat_ns": {"min": 10116664, "max": 30219944, "mean": 11996416.740687, "stddev": 1031128.844691, "N": 4161}, "bw_min": 78769, "bw_max": 88152, "bw_agg": 100.0, "bw_mean": 85243.06, "bw_dev": 1630.507614, "bw_samples": 50, "iops_min": 76, "iops_max": 86, "iops_mean": 83.18, "iops_stddev": 1.662184, "iops_samples": 50}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 50008, "usr_cpu": 0.315949, "sys_cpu": 74.50208, "ctx": 72662, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.048065, "100": 0.144196, "250": 10.74261, "500": 52.006729, "750": 26.195626, "1000": 8.050949}, "latency_ms": {"2": 2.811824, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:02:38.34987 2026-04-19 19:16:23.943354 -184 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:03:29.840078 2026-04-19 20:03:29.840081 -185 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:02:31' --until '2026-04-19 20:03:29' 0 OOM records. 2026-04-19 20:02:31.275954 2026-04-19 20:03:29.552531 -186 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:02:31' --until '2026-04-19 20:03:29' 0 Systemd errors records 2026-04-19 20:02:31.275954 2026-04-19 20:03:29.552531 -187 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629095, "timestamp_ms": 1776629095166, "time": "Sun Apr 19 20:04:55 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776629084984, "error": 0, "eta": 0, "elapsed": 11, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5242880, "io_kbytes": 5120, "bw_bytes": 522147, "bw": 509, "iops": 0.497958, "runtime": 10041, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 312898, "max": 1074844, "mean": 527266.8, "stddev": 309770.5879, "N": 5}, "clat_ns": {"min": 2004011250, "max": 2007651264, "mean": 2006246573.8, "stddev": 1612889.393975, "N": 5, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2004877312, "40.000000": 2004877312, "50.000000": 2004877312, "60.000000": 2004877312, "70.000000": 2004877312, "80.000000": 2004877312, "90.000000": 2004877312, "95.000000": 2004877312, "99.000000": 2004877312, "99.500000": 2004877312, "99.900000": 2004877312, "99.950000": 2004877312, "99.990000": 2004877312}}, "lat_ns": {"min": 2004411737, "max": 2008057192, "mean": 2006773840.6, "stddev": 1516420.646859, "N": 5}, "bw_min": 1024, "bw_max": 1025, "bw_agg": 100.0, "bw_mean": 1024.5, "bw_dev": 0.57735, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 10040, "usr_cpu": 0.079681, "sys_cpu": 0.039841, "ctx": 6, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:04:44.419637 2026-04-19 19:16:23.943354 -212 3 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:21:45.889529 2026-04-19 20:21:45.889533 -213 3 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:21:08' --until '2026-04-19 20:21:44' 0 OOM records. 2026-04-19 20:21:08.331368 2026-04-19 20:21:44.304327 -214 3 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:21:08' --until '2026-04-19 20:21:44' 0 Systemd errors records 2026-04-19 20:21:08.331368 2026-04-19 20:21:44.304327 -216 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --memrate 0 --memrate-rd-mbs 500 --memrate-wr-mbs 1000 --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "memrate", "bogo_ops": 12, "real_time_secs": 33.09, "usr_time_secs": 41.56, "sys_time_secs": 3.01, "bogo_ops_s_real_time": 0.36, "bogo_ops_s_usr_sys_time": 0.27, "cpu_used_per_instance": 33.68, "rss_max_kb": 264264, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:24:09.210566 2026-04-19 19:16:23.943354 -5354 173 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-06-15 21:14:12.174944 2026-06-15 21:14:12.174946 -188 2 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629106, "timestamp_ms": 1776629106256, "time": "Sun Apr 19 20:05:06 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "job_start": 1776629095762, "error": 0, "eta": 0, "elapsed": 11, "job options": {"name": "seq_write_256k", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1310720, "io_kbytes": 1280, "bw_bytes": 128527, "bw": 125, "iops": 0.490292, "runtime": 10198, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 202789, "max": 512978, "mean": 304216.8, "stddev": 123997.912036, "N": 5}, "clat_ns": {"min": 2004103343, "max": 2047405721, "mean": 2038588148.6, "stddev": 19278370.919645, "N": 5, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2055208960, "40.000000": 2055208960, "50.000000": 2055208960, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2004382672, "max": 2047855722, "mean": 2038892365.4, "stddev": 19292947.279459, "N": 5}, "bw_min": 256, "bw_max": 256, "bw_agg": 100.0, "bw_mean": 256.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 10197, "usr_cpu": 0.0, "sys_cpu": 0.049034, "ctx": 6, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:04:55.283081 2026-04-19 19:16:23.943354 -189 2 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629115, "timestamp_ms": 1776629115083, "time": "Sun Apr 19 20:05:15 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "job_start": 1776629106837, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "seq_write_64k", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 262144, "io_kbytes": 256, "bw_bytes": 32180, "bw": 31, "iops": 0.491039, "runtime": 8146, "total_ios": 4, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 175829, "max": 461058, "mean": 307068.5, "stddev": 131971.667516, "N": 4}, "clat_ns": {"min": 2000608064, "max": 2048026014, "mean": 2035549017.25, "stddev": 23307228.798391, "N": 4, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2038431744, "40.000000": 2038431744, "50.000000": 2038431744, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2001069122, "max": 2048201843, "mean": 2035856085.75, "stddev": 23204714.824754, "N": 4}, "bw_min": 64, "bw_max": 64, "bw_agg": 100.0, "bw_mean": 64.0, "bw_dev": 0.0, "bw_samples": 3, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8146, "usr_cpu": 0.024552, "sys_cpu": 0.036828, "ctx": 5, "majf": 0, "minf": 38, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:05:06.365398 2026-04-19 19:16:23.943354 -190 2 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629123, "timestamp_ms": 1776629123910, "time": "Sun Apr 19 20:05:23 2026", "jobs": [{"jobname": "rand_write_64k", "groupid": 0, "job_start": 1776629115661, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_64k", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 262144, "io_kbytes": 256, "bw_bytes": 32625, "bw": 31, "iops": 0.497822, "runtime": 8035, "total_ios": 4, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 177029, "max": 368708, "mean": 255901.25, "stddev": 86290.63499, "N": 4}, "clat_ns": {"min": 2006370515, "max": 2008442055, "mean": 2007429640.5, "stddev": 846929.395674, "N": 4, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2004877312, "40.000000": 2004877312, "50.000000": 2004877312, "60.000000": 2004877312, "70.000000": 2004877312, "80.000000": 2004877312, "90.000000": 2004877312, "95.000000": 2004877312, "99.000000": 2004877312, "99.500000": 2004877312, "99.900000": 2004877312, "99.950000": 2004877312, "99.990000": 2004877312}}, "lat_ns": {"min": 2006547544, "max": 2008718514, "mean": 2007685541.75, "stddev": 894553.779878, "N": 4}, "bw_min": 64, "bw_max": 64, "bw_agg": 100.0, "bw_mean": 64.0, "bw_dev": 0.0, "bw_samples": 3, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8034, "usr_cpu": 0.024894, "sys_cpu": 0.037341, "ctx": 6, "majf": 0, "minf": 38, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:05:15.192064 2026-04-19 19:16:23.943354 -191 2 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629132, "timestamp_ms": 1776629132738, "time": "Sun Apr 19 20:05:32 2026", "jobs": [{"jobname": "rand_write_16k", "groupid": 0, "job_start": 1776629124491, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_16k", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "16k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 65536, "io_kbytes": 64, "bw_bytes": 8035, "bw": 7, "iops": 0.490436, "runtime": 8156, "total_ios": 4, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 170579, "max": 303148, "mean": 239311.25, "stddev": 68574.774275, "N": 4}, "clat_ns": {"min": 2010145199, "max": 2048027196, "mean": 2037996016.5, "stddev": 18582082.075845, "N": 4, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2038431744, "40.000000": 2038431744, "50.000000": 2038431744, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2010438418, "max": 2048217495, "mean": 2038235327.75, "stddev": 18547163.379098, "N": 4}, "bw_min": 16, "bw_max": 16, "bw_agg": 100.0, "bw_mean": 16.0, "bw_dev": 0.0, "bw_samples": 3, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8155, "usr_cpu": 0.024525, "sys_cpu": 0.036787, "ctx": 5, "majf": 0, "minf": 39, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:05:24.018443 2026-04-19 19:16:23.943354 -215 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics --vm-populate {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 307372, "real_time_secs": 34.19, "usr_time_secs": 29.91, "sys_time_secs": 37.75, "bogo_ops_s_real_time": 8989.41, "bogo_ops_s_usr_sys_time": 4542.39, "cpu_used_per_instance": 49.48, "rss_max_kb": 238792, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 14, "real_time_secs": 34.05, "usr_time_secs": 8.84, "sys_time_secs": 59.19, "bogo_ops_s_real_time": 0.41, "bogo_ops_s_usr_sys_time": 0.21, "cpu_used_per_instance": 49.95, "rss_max_kb": 241352, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:23:33.474217 2026-04-19 19:16:23.943354 -237 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:39:42.25235 2026-04-19 20:39:42.252354 -192 2 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629141, "timestamp_ms": 1776629141561, "time": "Sun Apr 19 20:05:41 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "job_start": 1776629133306, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_4k", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 16384, "io_kbytes": 16, "bw_bytes": 2004, "bw": 1, "iops": 0.489416, "runtime": 8173, "total_ios": 4, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 160179, "max": 334668, "mean": 222661.5, "stddev": 78492.055133, "N": 4}, "clat_ns": {"min": 2027583055, "max": 2047909740, "mean": 2042277504.25, "stddev": 9840851.63181, "N": 4, "percentile": {"1.000000": 2021654528, "5.000000": 2021654528, "10.000000": 2021654528, "20.000000": 2021654528, "30.000000": 2038431744, "40.000000": 2038431744, "50.000000": 2038431744, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2027917723, "max": 2048127729, "mean": 2042500165.75, "stddev": 9768352.038816, "N": 4}, "bw_min": 4, "bw_max": 4, "bw_agg": 100.0, "bw_mean": 4.0, "bw_dev": 0.0, "bw_samples": 3, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8172, "usr_cpu": 0.024474, "sys_cpu": 0.024474, "ctx": 6, "majf": 0, "minf": 41, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:05:32.845948 2026-04-19 19:16:23.943354 -193 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:05:42.513132 2026-04-19 20:05:42.513135 -194 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:03:31' --until '2026-04-19 20:05:42' 0 OOM records. 2026-04-19 20:03:31.642574 2026-04-19 20:05:42.187131 -195 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:03:31' --until '2026-04-19 20:05:42' 0 Systemd errors records 2026-04-19 20:03:31.642574 2026-04-19 20:05:42.187131 -196 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics --vm-populate {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 114280, "real_time_secs": 33.28, "usr_time_secs": 9.23, "sys_time_secs": 5.78, "bogo_ops_s_real_time": 3433.5, "bogo_ops_s_usr_sys_time": 7613.66, "cpu_used_per_instance": 11.27, "rss_max_kb": 236316, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 4, "real_time_secs": 35.38, "usr_time_secs": 1.29, "sys_time_secs": 15.39, "bogo_ops_s_real_time": 0.11, "bogo_ops_s_usr_sys_time": 0.24, "cpu_used_per_instance": 11.78, "rss_max_kb": 239272, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:07:58.310051 2026-04-19 19:16:23.943354 -197 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --memrate 0 --memrate-rd-mbs 500 --memrate-wr-mbs 1000 --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "memrate", "bogo_ops": 3, "real_time_secs": 33.01, "usr_time_secs": 8.68, "sys_time_secs": 0.1, "bogo_ops_s_real_time": 0.09, "bogo_ops_s_usr_sys_time": 0.34, "cpu_used_per_instance": 26.6, "rss_max_kb": 265616, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:08:34.566304 2026-04-19 19:16:23.943354 -198 3 loader null 2026-04-19 19:16:23.943343 2026-04-19 19:16:23.943354 -199 3 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:09:10.301925 2026-04-19 20:09:10.301928 -200 3 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:07:57' --until '2026-04-19 20:09:08' 0 OOM records. 2026-04-19 20:07:57.671641 2026-04-19 20:09:08.656701 -201 3 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:07:57' --until '2026-04-19 20:09:08' 0 Systemd errors records 2026-04-19 20:07:57.671641 2026-04-19 20:09:08.656701 -202 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 25% --mmap 4 --mmap-bytes 25% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 156087, "real_time_secs": 33.32, "usr_time_secs": 9.73, "sys_time_secs": 5.22, "bogo_ops_s_real_time": 4684.7, "bogo_ops_s_usr_sys_time": 10443.94, "cpu_used_per_instance": 11.21, "rss_max_kb": 181136, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 8, "real_time_secs": 35.51, "usr_time_secs": 1.38, "sys_time_secs": 15.36, "bogo_ops_s_real_time": 0.23, "bogo_ops_s_usr_sys_time": 0.48, "cpu_used_per_instance": 11.79, "rss_max_kb": 183988, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:09:16.847365 2026-04-19 19:16:23.943354 -203 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 107487, "real_time_secs": 33.5, "usr_time_secs": 9.19, "sys_time_secs": 6.46, "bogo_ops_s_real_time": 3208.98, "bogo_ops_s_usr_sys_time": 6869.74, "cpu_used_per_instance": 11.68, "rss_max_kb": 250488, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 4, "real_time_secs": 36.6, "usr_time_secs": 1.17, "sys_time_secs": 15.66, "bogo_ops_s_real_time": 0.11, "bogo_ops_s_usr_sys_time": 0.24, "cpu_used_per_instance": 11.5, "rss_max_kb": 253572, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:09:53.005483 2026-04-19 19:16:23.943354 -204 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 4M --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 1196882, "real_time_secs": 27.09, "usr_time_secs": 95.1, "sys_time_secs": 7.68, "bogo_ops_s_real_time": 44179.84, "bogo_ops_s_usr_sys_time": 11645.78, "cpu_used_per_instance": 0.39, "rss_max_kb": 5816, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:10:30.399958 2026-04-19 19:16:23.943354 -205 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 1G --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 2130646, "real_time_secs": 33.75, "usr_time_secs": 118.32, "sys_time_secs": 46.01, "bogo_ops_s_real_time": 63125.39, "bogo_ops_s_usr_sys_time": 12965.62, "cpu_used_per_instance": 0.48, "rss_max_kb": 2960, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:12:32.813557 2026-04-19 19:16:23.943354 -206 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "mmaphuge", "bogo_ops": 1998, "real_time_secs": 29.38, "usr_time_secs": 3.51, "sys_time_secs": 118.36, "bogo_ops_s_real_time": 68.01, "bogo_ops_s_usr_sys_time": 16.39, "cpu_used_per_instance": 0.57, "rss_max_kb": 300796, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:15:25.961677 2026-04-19 19:16:23.943354 -238 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:39:06' --until '2026-04-19 20:39:40' 0 OOM records. 2026-04-19 20:39:06.022792 2026-04-19 20:39:40.59023 -217 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaptorture 0 --mmaptorture-bytes 70% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "mmaptorture", "bogo_ops": 321, "real_time_secs": 34.03, "usr_time_secs": 7.63, "sys_time_secs": 43.46, "bogo_ops_s_real_time": 9.43, "bogo_ops_s_usr_sys_time": 6.28, "cpu_used_per_instance": 37.53, "rss_max_kb": 14168, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:24:42.476005 2026-04-19 19:16:23.943354 -218 4 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:25:17.399776 2026-04-19 20:25:17.39978 -219 4 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:23:33' --until '2026-04-19 20:25:17' 0 OOM records. 2026-04-19 20:23:33.357956 2026-04-19 20:25:17.155484 -220 4 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:23:33' --until '2026-04-19 20:25:17' 0 Systemd errors records 2026-04-19 20:23:33.357956 2026-04-19 20:25:17.155484 -221 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 25% --mmap 4 --mmap-bytes 25% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 331544, "real_time_secs": 33.06, "usr_time_secs": 26.17, "sys_time_secs": 37.96, "bogo_ops_s_real_time": 10027.11, "bogo_ops_s_usr_sys_time": 5169.47, "cpu_used_per_instance": 48.49, "rss_max_kb": 176032, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 18, "real_time_secs": 33.47, "usr_time_secs": 8.53, "sys_time_secs": 58.72, "bogo_ops_s_real_time": 0.54, "bogo_ops_s_usr_sys_time": 0.27, "cpu_used_per_instance": 50.23, "rss_max_kb": 178388, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:25:18.876074 2026-04-19 19:16:23.943354 -222 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 290781, "real_time_secs": 33.62, "usr_time_secs": 28.62, "sys_time_secs": 36.5, "bogo_ops_s_real_time": 8649.02, "bogo_ops_s_usr_sys_time": 4464.84, "cpu_used_per_instance": 48.43, "rss_max_kb": 225320, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 14, "real_time_secs": 33.81, "usr_time_secs": 8.97, "sys_time_secs": 58.92, "bogo_ops_s_real_time": 0.41, "bogo_ops_s_usr_sys_time": 0.21, "cpu_used_per_instance": 50.2, "rss_max_kb": 227848, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:25:53.329065 2026-04-19 19:16:23.943354 -223 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 4M --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 3711005, "real_time_secs": 33.98, "usr_time_secs": 364.46, "sys_time_secs": 123.24, "bogo_ops_s_real_time": 109225.4, "bogo_ops_s_usr_sys_time": 7609.15, "cpu_used_per_instance": 1.4, "rss_max_kb": 2600, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:26:27.459519 2026-04-19 19:16:23.943354 -224 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 1G --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 5909102, "real_time_secs": 33.54, "usr_time_secs": 281.36, "sys_time_secs": 224.28, "bogo_ops_s_real_time": 176168.35, "bogo_ops_s_usr_sys_time": 11686.29, "cpu_used_per_instance": 1.47, "rss_max_kb": 3624, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:28:32.470249 2026-04-19 19:16:23.943354 -225 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"stress_ng_metrics": [], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:30:41.352193 2026-04-19 19:16:23.943354 -226 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 834 --vm-method all --vm-bytes 70% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 3192552, "real_time_secs": 33.57, "usr_time_secs": 197.35, "sys_time_secs": 219.43, "bogo_ops_s_real_time": 95115.46, "bogo_ops_s_usr_sys_time": 7660.04, "cpu_used_per_instance": 1.49, "rss_max_kb": 4920, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 834, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:31:57.560973 2026-04-19 19:16:23.943354 -227 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"stress_ng_metrics": [], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:33:44.089804 2026-04-19 19:16:23.943354 -228 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 630 --vm-method all --vm-bytes 70% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 2354123, "real_time_secs": 30.95, "usr_time_secs": 143.02, "sys_time_secs": 170.36, "bogo_ops_s_real_time": 76067.09, "bogo_ops_s_usr_sys_time": 7511.94, "cpu_used_per_instance": 1.61, "rss_max_kb": 5788, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 630, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:34:56.256883 2026-04-19 19:16:23.943354 -229 4 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:36:16.645046 2026-04-19 20:36:16.645049 -230 4 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:25:18' --until '2026-04-19 20:36:16' 76 OOM records. 2026-04-19 20:25:18.600188 2026-04-19 20:36:16.284552 -231 4 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:25:18' --until '2026-04-19 20:36:16' 0 Systemd errors records 2026-04-19 20:25:18.600188 2026-04-19 20:36:16.284552 -232 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 95% --syscall-method all --verify --metrics {"pgscan_time_sec": 1.0, "stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 751525, "real_time_secs": 33.18, "usr_time_secs": 57.96, "sys_time_secs": 73.16, "bogo_ops_s_real_time": 22646.84, "bogo_ops_s_usr_sys_time": 5731.66, "cpu_used_per_instance": 98.78, "rss_max_kb": 678928, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:36:18.347472 2026-04-19 19:16:23.943354 -233 4 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:36:52.127888 2026-04-19 20:36:52.127891 -234 4 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:36:18' --until '2026-04-19 20:36:51' 0 OOM records. 2026-04-19 20:36:18.103718 2026-04-19 20:36:51.863923 -235 4 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:36:18' --until '2026-04-19 20:36:51' 0 Systemd errors records 2026-04-19 20:36:18.103718 2026-04-19 20:36:51.863923 -236 5 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 17346, "real_time_secs": 33.34, "usr_time_secs": 2.88, "sys_time_secs": 3.84, "bogo_ops_s_real_time": 520.29, "bogo_ops_s_usr_sys_time": 2579.53, "cpu_used_per_instance": 20.17, "rss_max_kb": 3712, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:39:06.699127 2026-04-19 19:16:23.943354 -244 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 50 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:40:50.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 528, "real_time_secs": 33.22, "usr_time_secs": 14.65, "sys_time_secs": 0.05, "bogo_ops_s_real_time": 15.9, "bogo_ops_s_usr_sys_time": 35.92, "cpu_used_per_instance": 44.26, "rss_max_kb": 4116, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 588, "real_time_secs": 33.91, "usr_time_secs": 0.13, "sys_time_secs": 0.15, "bogo_ops_s_real_time": 17.34, "bogo_ops_s_usr_sys_time": 2107.2, "cpu_used_per_instance": 0.82, "rss_max_kb": 3584, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abozzRhuF as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.33945655822753906, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.9904880523681641, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc3usp1j as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 40215\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3770751953125, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.2871878147125244, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 45397\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 43291\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 35385\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3323814868927002, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09198760986328125, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09442758560180664, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10085773468017578, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.16647076606750488, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.2604184150695801, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.25769829750061035, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.17670059204101562, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.29181861877441406, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09711551666259766, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2999100685119629, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.15369057655334473, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09472393989562988, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.1671910285949707, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3026909828186035, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.28894543647766113, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4168663024902344, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.2994577884674072, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:33: TPASS: alarm(0) passed\\nalarm06.c:38: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.2341830730438232, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:34: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:30: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.328073501586914, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.7167150974273682, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "conf", "test": {"command": "bind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 15.166532039642334, "passed": 46, "failed": 0, "broken": 1, "skipped": 1484, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:40:49.077926 2026-04-19 20:41:39.090611 -245 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 60 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:41:40.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 270, "real_time_secs": 33.58, "usr_time_secs": 7.63, "sys_time_secs": 0.05, "bogo_ops_s_real_time": 8.04, "bogo_ops_s_usr_sys_time": 35.17, "cpu_used_per_instance": 22.86, "rss_max_kb": 2784, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 16758, "real_time_secs": 33.18, "usr_time_secs": 3.04, "sys_time_secs": 3.34, "bogo_ops_s_real_time": 505.12, "bogo_ops_s_usr_sys_time": 2625.75, "cpu_used_per_instance": 19.24, "rss_max_kb": 5780, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abooYT6nU as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.7990641593933105, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5660922527313232, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accdphppm as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 34129\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.615257740020752, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.7248566150665283, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 44493\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46281\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42809\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6242289543151855, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.16867685317993164, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09119892120361328, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.0909881591796875, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.12180542945861816, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.7762024402618408, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.2628507614135742, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.1340639591217041, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4871666431427002, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.17911028861999512, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5711729526519775, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13968658447265625, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.1379075050354004, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13399147987365723, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5765445232391357, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6920943260192871, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.31184816360473633, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.299072027206421, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "conf", "test": {"command": "alarm06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "alarm07", "status": "conf", "test": {"command": "alarm07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "arch_prctl01", "status": "conf", "test": {"command": "arch_prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind01", "status": "conf", "test": {"command": "bind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 10.503880739212036, "passed": 38, "failed": 0, "broken": 1, "skipped": 1487, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:41:39.103042 2026-04-19 20:42:39.118563 -246 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 70 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:42:40.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 292, "real_time_secs": 33.35, "usr_time_secs": 8.24, "sys_time_secs": 0.02, "bogo_ops_s_real_time": 8.75, "bogo_ops_s_usr_sys_time": 35.37, "cpu_used_per_instance": 24.75, "rss_max_kb": 4656, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 11172, "real_time_secs": 33.24, "usr_time_secs": 1.96, "sys_time_secs": 2.46, "bogo_ops_s_real_time": 336.14, "bogo_ops_s_usr_sys_time": 2528.13, "cpu_used_per_instance": 13.3, "rss_max_kb": 4272, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboPN98CA as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.48690223693847656, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.43616557121276855, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accW7mfn5 as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 37443\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.48399782180786133, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.6206459999084473, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 44291\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 44131\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 41001\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.46086764335632324, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13055849075317383, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.2523467540740967, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.14464259147644043, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13882660865783691, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.5290014743804932, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.4581148624420166, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.16460657119750977, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4362032413482666, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10234332084655762, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.46937108039855957, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09119796752929688, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10152173042297363, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.0966651439666748, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2919294834136963, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2884800434112549, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3343195915222168, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.4502453804016113, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:33: TPASS: alarm(0) passed\\nalarm06.c:38: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.3782670497894287, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "conf", "test": {"command": "alarm07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "arch_prctl01", "status": "conf", "test": {"command": "arch_prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind01", "status": "conf", "test": {"command": "bind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 12.347220659255981, "passed": 40, "failed": 0, "broken": 1, "skipped": 1486, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:42:39.129606 2026-04-19 20:43:44.145384 -247 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 80 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:43:45.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 270, "real_time_secs": 33.43, "usr_time_secs": 7.67, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 8.08, "bogo_ops_s_usr_sys_time": 35.18, "cpu_used_per_instance": 22.96, "rss_max_kb": 4252, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 16758, "real_time_secs": 33.38, "usr_time_secs": 3.13, "sys_time_secs": 3.48, "bogo_ops_s_real_time": 502.0, "bogo_ops_s_usr_sys_time": 2535.06, "cpu_used_per_instance": 19.8, "rss_max_kb": 3712, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboOLNJ9m as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.8203921318054199, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5674910545349121, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accnTzR2E as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 37351\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6144359111785889, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.6288518905639648, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 45565\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42077\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 35235\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.44545555114746094, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.17003226280212402, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10242533683776855, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.12328171730041504, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13011646270751953, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.41965556144714355, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.25578832626342773, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.08969736099243164, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.30313634872436523, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09198856353759766, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2946019172668457, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09651827812194824, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.14462900161743164, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09428739547729492, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3008275032043457, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2985706329345703, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3016395568847656, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.354055881500244, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:33: TPASS: alarm(0) passed\\nalarm06.c:38: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.2927041053771973, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "conf", "test": {"command": "alarm07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "arch_prctl01", "status": "conf", "test": {"command": "arch_prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind01", "status": "conf", "test": {"command": "bind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 11.940582752227783, "passed": 40, "failed": 0, "broken": 1, "skipped": 1486, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:43:44.158565 2026-04-19 20:44:49.170479 -248 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 90 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:44:50.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 264, "real_time_secs": 33.4, "usr_time_secs": 7.55, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 7.9, "bogo_ops_s_usr_sys_time": 34.83, "cpu_used_per_instance": 22.69, "rss_max_kb": 2608, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 16464, "real_time_secs": 33.28, "usr_time_secs": 3.13, "sys_time_secs": 3.49, "bogo_ops_s_real_time": 494.78, "bogo_ops_s_usr_sys_time": 2489.83, "cpu_used_per_instance": 19.87, "rss_max_kb": 4276, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboSTauaA as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6392436027526855, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5488507747650146, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accIjJkOW as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 35491\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.7234387397766113, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.5727059841156006, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 46797\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42283\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 43305\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4723379611968994, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04628801345825195, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04621720314025879, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.045244693756103516, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.0461885929107666, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.1274857521057129, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.1335752010345459, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.045244693756103516, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1542975902557373, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.05233645439147949, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.31844258308410645, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04894304275512695, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04612874984741211, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10501313209533691, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4237220287322998, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.395550012588501, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6573138236999512, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.296178102493286, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:33: TPASS: alarm(0) passed\\nalarm06.c:38: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.2878053188323975, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:34: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:30: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.288118362426758, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.34189391136169434, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binraHUnY as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3440854549407959, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 15.206649780273438, "passed": 53, "failed": 0, "broken": 1, "skipped": 1483, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:44:49.181959 2026-04-19 20:45:54.193748 -249 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 100 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:45:55.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 264, "real_time_secs": 33.51, "usr_time_secs": 7.53, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 7.88, "bogo_ops_s_usr_sys_time": 35.0, "cpu_used_per_instance": 22.52, "rss_max_kb": 6296, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 16464, "real_time_secs": 33.54, "usr_time_secs": 3.01, "sys_time_secs": 3.59, "bogo_ops_s_real_time": 490.92, "bogo_ops_s_usr_sys_time": 2496.21, "cpu_used_per_instance": 19.67, "rss_max_kb": 5524, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abonzhgnX as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.9206819534301758, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6032876968383789, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc806PjE as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 50543\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.7067348957061768, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.7469472885131836, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 36653\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 44099\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 36735\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.8372886180877686, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.17836689949035645, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13280129432678223, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13299059867858887, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.2625701427459717, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.32536911964416504, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.36791205406188965, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.12794733047485352, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4968574047088623, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10864567756652832, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5286397933959961, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.14856863021850586, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.12342262268066406, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.11580753326416016, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.43511509895324707, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6878771781921387, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.44016027450561523, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "conf", "test": {"command": "alarm05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "alarm06", "status": "conf", "test": {"command": "alarm06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "alarm07", "status": "conf", "test": {"command": "alarm07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "arch_prctl01", "status": "conf", "test": {"command": "arch_prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind01", "status": "conf", "test": {"command": "bind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 8.427992105484009, "passed": 35, "failed": 0, "broken": 1, "skipped": 1488, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:45:54.207685 2026-04-19 20:46:59.218684 -250 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:47:03.880231 2026-04-19 20:47:03.880235 -251 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:40:46' --until '2026-04-19 20:46:59' 0 OOM records. 2026-04-19 20:40:46.194039 2026-04-19 20:46:59.230564 -252 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:40:46' --until '2026-04-19 20:46:59' 0 Systemd errors records 2026-04-19 20:40:46.194039 2026-04-19 20:46:59.230564 -253 5 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 0 --vm-method all --vm-bytes 95% --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 66444, "real_time_secs": 35.5, "usr_time_secs": 10.31, "sys_time_secs": 14.37, "bogo_ops_s_real_time": 1871.43, "bogo_ops_s_usr_sys_time": 2691.56, "cpu_used_per_instance": 69.53, "rss_max_kb": 2648724, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 1470, "real_time_secs": 33.1, "usr_time_secs": 0.27, "sys_time_secs": 1.05, "bogo_ops_s_real_time": 44.41, "bogo_ops_s_usr_sys_time": 1118.39, "cpu_used_per_instance": 3.97, "rss_max_kb": 3584, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:47:17.164165 2026-04-19 19:16:23.943354 -254 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:47:56.681097 2026-04-19 20:47:56.681101 -255 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:47:15' --until '2026-04-19 20:47:54' 0 OOM records. 2026-04-19 20:47:15.366042 2026-04-19 20:47:54.497515 -256 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:47:15' --until '2026-04-19 20:47:54' 0 Systemd errors records 2026-04-19 20:47:15.366042 2026-04-19 20:47:54.497515 -257 5 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/perf bench --format default --repeat 1 syscall all {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 588, "real_time_secs": 33.92, "usr_time_secs": 0.11, "sys_time_secs": 0.17, "bogo_ops_s_real_time": 17.33, "bogo_ops_s_usr_sys_time": 2100.35, "cpu_used_per_instance": 0.83, "rss_max_kb": 4368, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}, "perf_metrics": [{"benchmark": "syscall/basic", "total_time": 3.542, "usecs_per_op": 0.354287, "ops_per_sec": 2822571}, {"benchmark": "syscall/getpgid", "total_time": 3.652, "usecs_per_op": 0.365204, "ops_per_sec": 2738191}, {"benchmark": "syscall/fork", "total_time": 56.702, "usecs_per_op": 5670.2938, "ops_per_sec": 176}, {"benchmark": "syscall/execve", "total_time": 149.192, "usecs_per_op": 14919.2022, "ops_per_sec": 67}]} 2026-04-19 20:48:02.947311 2026-04-19 20:51:37.980421 -258 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:51:39.68509 2026-04-19 20:51:39.685094 -259 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:48:01' --until '2026-04-19 20:51:37' 0 OOM records. 2026-04-19 20:48:01.786305 2026-04-19 20:51:37.98392 -260 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:48:01' --until '2026-04-19 20:51:37' 0 Systemd errors records 2026-04-19 20:48:01.786305 2026-04-19 20:51:37.98392 -261 5 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --msg 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"stress_ng_metrics": [{"stressor": "sock", "bogo_ops": 71, "real_time_secs": 33.31, "usr_time_secs": 0.03, "sys_time_secs": 0.59, "bogo_ops_s_real_time": 2.13, "bogo_ops_s_usr_sys_time": 114.39, "cpu_used_per_instance": 1.86, "rss_max_kb": 2148, "top10_slowest": null}, {"stressor": "mq", "bogo_ops": 19799, "real_time_secs": 33.04, "usr_time_secs": 0.11, "sys_time_secs": 0.49, "bogo_ops_s_real_time": 599.25, "bogo_ops_s_usr_sys_time": 32775.03, "cpu_used_per_instance": 1.83, "rss_max_kb": 3996, "top10_slowest": null}, {"stressor": "pipe", "bogo_ops": 57054, "real_time_secs": 33.04, "usr_time_secs": 0.03, "sys_time_secs": 0.57, "bogo_ops_s_real_time": 1726.89, "bogo_ops_s_usr_sys_time": 95148.68, "cpu_used_per_instance": 1.81, "rss_max_kb": 2148, "top10_slowest": null}, {"stressor": "sem", "bogo_ops": 110148, "real_time_secs": 33.03, "usr_time_secs": 0.15, "sys_time_secs": 0.45, "bogo_ops_s_real_time": 3334.9, "bogo_ops_s_usr_sys_time": 183947.59, "cpu_used_per_instance": 1.81, "rss_max_kb": 6544, "top10_slowest": null}, {"stressor": "sem-sysv", "bogo_ops": 115405, "real_time_secs": 33.02, "usr_time_secs": 0.08, "sys_time_secs": 0.52, "bogo_ops_s_real_time": 3494.53, "bogo_ops_s_usr_sys_time": 191571.23, "cpu_used_per_instance": 1.82, "rss_max_kb": 2148, "top10_slowest": null}, {"stressor": "shm", "bogo_ops": 9, "real_time_secs": 33.62, "usr_time_secs": 0.01, "sys_time_secs": 0.33, "bogo_ops_s_real_time": 0.27, "bogo_ops_s_usr_sys_time": 26.16, "cpu_used_per_instance": 1.02, "rss_max_kb": 37892, "top10_slowest": null}, {"stressor": "shm-sysv", "bogo_ops": 6, "real_time_secs": 33.91, "usr_time_secs": 0.0, "sys_time_secs": 0.14, "bogo_ops_s_real_time": 0.18, "bogo_ops_s_usr_sys_time": 42.54, "cpu_used_per_instance": 0.42, "rss_max_kb": 59364, "top10_slowest": null}, {"stressor": "dekker", "bogo_ops": 947276, "real_time_secs": 33.16, "usr_time_secs": 0.6, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 28565.94, "bogo_ops_s_usr_sys_time": 1566791.71, "cpu_used_per_instance": 1.82, "rss_max_kb": 2020, "top10_slowest": null}, {"stressor": "fifo", "bogo_ops": 11431, "real_time_secs": 33.03, "usr_time_secs": 0.07, "sys_time_secs": 0.82, "bogo_ops_s_real_time": 346.12, "bogo_ops_s_usr_sys_time": 12877.19, "cpu_used_per_instance": 2.69, "rss_max_kb": 2020, "top10_slowest": null}, {"stressor": "futex", "bogo_ops": 348, "real_time_secs": 66.01, "usr_time_secs": 0.06, "sys_time_secs": 0.84, "bogo_ops_s_real_time": 5.27, "bogo_ops_s_usr_sys_time": 389.02, "cpu_used_per_instance": 1.36, "rss_max_kb": 2020, "top10_slowest": null}, {"stressor": "msg", "bogo_ops": 196609, "real_time_secs": 33.17, "usr_time_secs": 0.05, "sys_time_secs": 0.55, "bogo_ops_s_real_time": 5926.95, "bogo_ops_s_usr_sys_time": 323837.18, "cpu_used_per_instance": 1.83, "rss_max_kb": 2020, "top10_slowest": null}, {"stressor": "peterson", "bogo_ops": 1139621, "real_time_secs": 33.11, "usr_time_secs": 0.59, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 34423.15, "bogo_ops_s_usr_sys_time": 1891374.13, "cpu_used_per_instance": 1.82, "rss_max_kb": 4112, "top10_slowest": null}, {"stressor": "pipeherd", "bogo_ops": 7280400, "real_time_secs": 33.62, "usr_time_secs": 3.11, "sys_time_secs": 21.73, "bogo_ops_s_real_time": 216551.36, "bogo_ops_s_usr_sys_time": 293125.01, "cpu_used_per_instance": 73.88, "rss_max_kb": 2020, "top10_slowest": null}, {"stressor": "sigq", "bogo_ops": 11816, "real_time_secs": 33.04, "usr_time_secs": 0.09, "sys_time_secs": 0.5, "bogo_ops_s_real_time": 357.62, "bogo_ops_s_usr_sys_time": 20293.24, "cpu_used_per_instance": 1.76, "rss_max_kb": 2020, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 14, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:51:46.248256 2026-04-19 19:16:23.943354 -262 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:52:22.426069 2026-04-19 20:52:22.426072 -263 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:51:44' --until '2026-04-19 20:52:20' 0 OOM records. 2026-04-19 20:51:44.383234 2026-04-19 20:52:20.81683 -264 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:51:44' --until '2026-04-19 20:52:20' 0 Systemd errors records 2026-04-19 20:51:44.383234 2026-04-19 20:52:20.81683 -297 7 loader /usr/local/bin/kirk --suite-timeout 50 --run-suite syscalls-ipc --json-report /var/tmp/ltp-results/syscalls-ipc_2026-04-19_21:10:27.json {"results": [{"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msg4zYeJg as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl01.c:37: TPASS: msgctl(IPC_STAT)\\nmsgctl01.c:40: TPASS: msg_stime = 0\\nmsgctl01.c:45: TPASS: msg_rtime = 0\\nmsgctl01.c:50: TPASS: msg_ctime = 1776633029, expected 1776633029\\nmsgctl01.c:58: TPASS: msg_qnum = 0\\nmsgctl01.c:63: TPASS: msg_qbytes = 65536\\nmsgctl01.c:68: TPASS: msg_lspid = 0\\nmsgctl01.c:73: TPASS: msg_lrpid = 0\\nmsgctl01.c:78: TPASS: msg_perm.__key == 1627588566\\nmsgctl01.c:85: TPASS: msg_perm.uid = 1000\\nmsgctl01.c:92: TPASS: msg_perm.gid = 1002\\nmsgctl01.c:99: TPASS: msg_perm.cuid = 1000\\nmsgctl01.c:106: TPASS: msg_perm.cgid = 1002\\nmsgctl01.c:113: TPASS: msg_perm.mode = 0660\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16091060638427734, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgs2nQ5m as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl02.c:34: TPASS: msgctl(IPC_SET) msg_qbytes - 1\\nmsgctl02.c:40: TPASS: msg_qbytes = 65535\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15774989128112793, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msga5XcQn as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl03.c:30: TPASS: msgctl(IPC_RMID)\\nmsgctl03.c:34: TPASS: msgctl(IPC_STAT): EINVAL (22)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3145129680633545, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04729652404785156, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "tst_test.c:1414: TCONF: test requires struct msqid64_ds to have the time_high fields\\n", "retval": ["32"], "duration": 0.04849576950073242, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04761838912963867, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl12.c:44: TPASS: msgctl() test IPC_INFO succeeded\\nmsgctl12.c:44: TPASS: msgctl() test MSG_INFO succeeded\\nmsgctl12.c:44: TPASS: msgctl() test MSG_STAT succeeded\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15239310264587402, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 0.9289772510528564, "passed": 21, "failed": 0, "broken": 0, "skipped": 53, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 21:10:26.857381 2026-04-19 19:16:23.943354 -265 6 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 35.03, "usr_time_secs": 0.27, "sys_time_secs": 1.29, "bogo_ops_s_real_time": 64.86, "bogo_ops_s_usr_sys_time": 1456.92, "cpu_used_per_instance": 1.11, "rss_max_kb": 4896, "top10_slowest": [["syslog", 16807531131.5, 824268076, 32790794187], ["execve", 16980678.5, 16408838, 17552519], ["execveat", 14839820.5, 13270603, 16409038], ["sync", 5218970.0, 3876046, 6561894], ["fdatasync", 4685550.5, 3247646, 6123455], ["pwritev2", 3139268.5, 3016933, 3261604], ["wait4", 2483859.0, 806977, 4160741], ["fsync", 2250087.0, 2199867, 2300307], ["pause", 1968952.5, 199845, 3738060], ["msync", 1964563.5, 64502, 3864625]]}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:54:10.396202 2026-04-19 19:16:23.943354 -266 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:54:46.91658 2026-04-19 20:54:46.916584 -267 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:54:10' --until '2026-04-19 20:54:46' 0 OOM records. 2026-04-19 20:54:10.282248 2026-04-19 20:54:46.639038 -268 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:54:10' --until '2026-04-19 20:54:46' 0 Systemd errors records 2026-04-19 20:54:10.282248 2026-04-19 20:54:46.639038 -269 6 loader /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:54:48.json {"results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abozJN4cX as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0929727554321289, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0631566047668457, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accT55Oxg as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 42575\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07256054878234863, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0730135440826416, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 43051\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 41117\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 40359\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08479094505310059, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accG22yeS as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.36512160301208496, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accg4BU84 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2060098648071289, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08181953430175781, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accTOGpYI as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accTOGpYI/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11010885238647461, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accOSpgcA as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accOSpgcA/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14106082916259766, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc6j3NCa as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('kworker/2:1')\\nacct02.c:127: TINFO: elap_time/clock_ticks >= 2 (66771/100: 667.00)\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 13574 (2)\\nacct02.c:193: TINFO: == entry 2 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('sh')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 13574 (13331)\\nacct02.c:193: TINFO: == entry 3 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 3\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1414391994476318, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06608414649963379, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06513738632202148, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08660268783569336, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06885242462158203, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.8987884521484375, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06427836418151855, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10251641273498535, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09801244735717773, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1488339900970459, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09337568283081055, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0741958618164062, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.119168519973755, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0930609703063965, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07694125175476074, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin84cHTz as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08237576484680176, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15042567253112793, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binih0K8T as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08222627639770508, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binioXBRi as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2000594139099121, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binlayvOB as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09131383895874023, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 119ns, avg_dev = 48ns, dev_ratio = 0.40 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 250491ns, avg_dev = 21716ns, dev_ratio = 0.09 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 308693ns, avg_dev = 27697ns, dev_ratio = 0.09 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -58082ns, avg_dev = 14612ns, dev_ratio = 0.25 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 17175 , avg_dev = 3734 , dev_ratio = 0.22 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 9.987767219543457, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0701897144317627, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10341787338256836, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08282256126403809, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06967401504516602, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07278299331665039, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 23.480958223342896, "passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:54:48.443709 2026-04-19 19:16:23.943354 -270 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:56:32.429452 2026-04-19 20:56:32.429456 -271 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:54:48' --until '2026-04-19 20:56:32' 0 OOM records. 2026-04-19 20:54:48.183595 2026-04-19 20:56:32.150004 -272 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:54:48' --until '2026-04-19 20:56:32' 0 Systemd errors records 2026-04-19 20:54:48.183595 2026-04-19 20:56:32.150004 -273 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 50 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:56:33.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 38.27, "usr_time_secs": 0.25, "sys_time_secs": 1.19, "bogo_ops_s_real_time": 59.37, "bogo_ops_s_usr_sys_time": 1584.74, "cpu_used_per_instance": 0.94, "rss_max_kb": 4896, "top10_slowest": [["syslog", 829632775.0, 812376998, 846888552], ["execve", 19017298.5, 18398359, 19636238], ["execveat", 16942692.5, 14803435, 19081950], ["accept", 5960454.0, 5960454, 5960454], ["fdatasync", 5616196.5, 3509495, 7722898], ["pwritev2", 3880064.0, 2780869, 4979259], ["clone", 3722170.5, 1251424, 6192917], ["sync", 3715856.0, 3628891, 3802821], ["wait4", 3330830.5, 1770642, 4891019], ["fsync", 2665834.0, 2386981, 2944687]]}, {"stressor": "cpu", "bogo_ops": 2880, "real_time_secs": 33.0, "usr_time_secs": 72.31, "sys_time_secs": 0.76, "bogo_ops_s_real_time": 87.28, "bogo_ops_s_usr_sys_time": 39.42, "cpu_used_per_instance": 55.36, "rss_max_kb": 2780, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboaDI5hG as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13732361793518066, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13536858558654785, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accOjUYEq as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 39191\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12018013000488281, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13937163352966309, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 41235\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 37469\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42309\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1677265167236328, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acclvrm5U as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5843908786773682, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accg5fFIZ as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3916313648223877, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14728546142578125, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accJ3SmIc as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accJ3SmIc/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1483299732208252, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accgXt95P as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accgXt95P/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12286663055419922, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accaZJ6bp as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1388423442840576, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06800699234008789, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06135845184326172, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08419346809387207, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0681602954864502, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.928072452545166, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07103967666625977, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07494187355041504, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06789565086364746, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06487345695495605, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06334805488586426, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0703253746032715, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.107156276702881, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1477041244506836, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15395236015319824, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binm6jIrc as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15441489219665527, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1766364574432373, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binLCVMgD as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12134742736816406, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binGoaDUD as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2427670955657959, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binLQwNkT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1918344497680664, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 302ns, avg_dev = 183ns, dev_ratio = 0.60 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 242487ns, avg_dev = 19447ns, dev_ratio = 0.08 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 267599ns, avg_dev = 15267ns, dev_ratio = 0.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -24810ns, avg_dev = 18986ns, dev_ratio = 0.77 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 8721 , avg_dev = 5097 , dev_ratio = 0.58 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 10.79623031616211, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07199335098266602, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07879829406738281, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06597113609313965, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06935763359069824, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07532453536987305, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 25.30902123451233, "passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:56:33.901791 2026-04-19 20:57:18.912988 -274 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 60 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:57:18.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 37.58, "usr_time_secs": 0.19, "sys_time_secs": 1.12, "bogo_ops_s_real_time": 60.46, "bogo_ops_s_usr_sys_time": 1724.93, "cpu_used_per_instance": 0.88, "rss_max_kb": 5080, "top10_slowest": [["syslog", 579155740.5, 171203243, 987108238], ["execve", 27344329.0, 15909534, 38779124], ["execveat", 22992609.5, 15649187, 30336032], ["pwritev2", 5037074.0, 5001512, 5072636], ["clock_settime", 4983080.0, 4983080, 4983080], ["sync", 4658514.5, 3654761, 5662268], ["fsync", 4307131.5, 2892982, 5721281], ["fdatasync", 4080613.5, 3730851, 4430376], ["accept4", 3488547.0, 3488547, 3488547], ["syncfs", 3350163.0, 2428963, 4271363]]}, {"stressor": "cpu", "bogo_ops": 3188, "real_time_secs": 33.52, "usr_time_secs": 80.17, "sys_time_secs": 0.25, "bogo_ops_s_real_time": 95.12, "bogo_ops_s_usr_sys_time": 39.64, "cpu_used_per_instance": 59.98, "rss_max_kb": 2880, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboFlJSXI as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13012075424194336, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10404253005981445, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accJ0SzZW as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 37963\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1268630027770996, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1317598819732666, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 35443\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 39887\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46541\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1603395938873291, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accnA968c as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6256973743438721, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accM3Vnii as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.31560611724853516, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08730125427246094, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc0aFkui as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc0aFkui/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11178898811340332, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accmZDFlJ as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accmZDFlJ/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11716246604919434, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acceT7WsY as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.141127347946167, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06547904014587402, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05711030960083008, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07123351097106934, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.061620473861694336, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.8283507823944092, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05762124061584473, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08434772491455078, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07818174362182617, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12298011779785156, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08107542991638184, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.073298931121826, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.124249219894409, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.127434730529785, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05709362030029297, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin7KYKbT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06116294860839844, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06340551376342773, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binKDXb6K as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.057341814041137695, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binTLEScg as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09922099113464355, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binQyA8EA as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07707071304321289, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 565ns, avg_dev = 70ns, dev_ratio = 0.12 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 277878ns, avg_dev = 18907ns, dev_ratio = 0.07 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 292815ns, avg_dev = 25346ns, dev_ratio = 0.09 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -14372ns, avg_dev = 16389ns, dev_ratio = 1.14 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 6456 , avg_dev = 3286 , dev_ratio = 0.51 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 12.382848262786865, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06263327598571777, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06049537658691406, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06207108497619629, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06123161315917969, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06435155868530273, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 25.993719339370728, "passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:57:18.926551 2026-04-19 20:58:03.937642 -275 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 70 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:58:03.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 36.78, "usr_time_secs": 0.2, "sys_time_secs": 1.12, "bogo_ops_s_real_time": 61.77, "bogo_ops_s_usr_sys_time": 1721.52, "cpu_used_per_instance": 0.9, "rss_max_kb": 4960, "top10_slowest": [["syslog", 966340054.0, 950007848, 982672260], ["execveat", 24190458.5, 15376738, 33004179], ["execve", 24044840.0, 14776377, 33313303], ["fdatasync", 6224024.5, 3592814, 8855235], ["sync", 4042551.0, 3767622, 4317480], ["pwritev2", 3647498.0, 3444312, 3850684], ["clock_settime", 3472326.0, 3472326, 3472326], ["msync", 3036069.5, 21345, 6050794], ["clone3", 3004496.0, 1073799, 4935193], ["fsync", 2927710.0, 2673155, 3182265]]}, {"stressor": "cpu", "bogo_ops": 3756, "real_time_secs": 33.89, "usr_time_secs": 94.74, "sys_time_secs": 0.42, "bogo_ops_s_real_time": 110.82, "bogo_ops_s_usr_sys_time": 39.47, "cpu_used_per_instance": 70.19, "rss_max_kb": 2892, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboJg5TAI as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14589524269104004, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12155723571777344, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc03RJRS as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 49023\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13294148445129395, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15320825576782227, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 46641\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 45343\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 37913\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17053747177124023, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accxeNiav as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.572246789932251, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accDpFOf9 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3696596622467041, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15596222877502441, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accrH8PLg as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accrH8PLg/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18550682067871094, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accuNVEPF as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accuNVEPF/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12496376037597656, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc4jbRyg as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.13307523727417, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0741434097290039, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12856364250183105, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15538239479064941, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13316774368286133, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.4293770790100098, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1072700023651123, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20788145065307617, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08007287979125977, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12386155128479004, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12182116508483887, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0823960304260254, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.131671190261841, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0689611434936523, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11274838447570801, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binpBCAss as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1419377326965332, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1312394142150879, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binozZYAE as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0715639591217041, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binhh4kuA as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17838788032531738, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binV6NbPr as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17086529731750488, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 14.916866540908813, "passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:58:03.952327 2026-04-19 20:58:48.964088 -276 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 80 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:58:49.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 36.79, "usr_time_secs": 0.2, "sys_time_secs": 1.1, "bogo_ops_s_real_time": 61.76, "bogo_ops_s_usr_sys_time": 1739.36, "cpu_used_per_instance": 0.89, "rss_max_kb": 4968, "top10_slowest": [["syslog", 4855174802.0, 975957390, 8734392214], ["execve", 32632209.5, 32501996, 32762423], ["execveat", 29261457.5, 29009776, 29513139], ["pwritev2", 7152314.5, 3453248, 10851381], ["fdatasync", 6475538.5, 5415856, 7535221], ["pause", 5364845.0, 5013903, 5715787], ["sync", 5063659.5, 3404012, 6723307], ["accept", 3808340.0, 1966785, 5649895], ["clock_settime", 3798415.0, 3798415, 3798415], ["fsync", 3581874.5, 3443460, 3720289]]}, {"stressor": "cpu", "bogo_ops": 4253, "real_time_secs": 33.58, "usr_time_secs": 106.71, "sys_time_secs": 0.33, "bogo_ops_s_real_time": 126.65, "bogo_ops_s_usr_sys_time": 39.73, "cpu_used_per_instance": 79.69, "rss_max_kb": 2740, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboJqPRQ2 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1080179214477539, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08469557762145996, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc0YBbVm as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 53149\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09387731552124023, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08721375465393066, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 32789\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 39695\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46829\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.109893798828125, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accn9tVkp as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6318190097808838, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc6HLhVR as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.30826807022094727, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14818263053894043, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accKPXaMJ as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accKPXaMJ/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16022086143493652, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accqZq0PK as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accqZq0PK/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14908599853515625, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accCEk0tZ as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.3068039417266846, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13001775741577148, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12482237815856934, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10552382469177246, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1289219856262207, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.4221165180206299, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12471938133239746, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15150976181030273, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12142777442932129, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0745232105255127, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07388877868652344, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.1362051963806152, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1230642795562744, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1179141998291016, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11884784698486328, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binbCuTrL as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12682175636291504, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12376141548156738, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binJDrTHG as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07161593437194824, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binxc0a8R as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18950438499450684, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binRuYB8C as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12578940391540527, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 14.779074668884277, "passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:58:48.97752 2026-04-19 20:59:38.989091 -277 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 90 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:59:39.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 35.04, "usr_time_secs": 0.24, "sys_time_secs": 0.94, "bogo_ops_s_real_time": 64.83, "bogo_ops_s_usr_sys_time": 1933.18, "cpu_used_per_instance": 0.84, "rss_max_kb": 5024, "top10_slowest": [["syslog", 9129883024.5, 978736006, 17281030043], ["execveat", 49337926.5, 43961959, 54713894], ["execve", 45615569.5, 27579067, 63652072], ["sync", 10313348.5, 7057504, 13569193], ["fdatasync", 5876574.5, 4650928, 7102221], ["accept4", 5495577.0, 5234047, 5757107], ["exit", 5464035.5, 3131958, 7796113], ["fsync", 5384525.5, 4120956, 6648095], ["accept", 4739750.0, 3965896, 5513604], ["wait3", 3683791.5, 3672127, 3695456]]}, {"stressor": "cpu", "bogo_ops": 2277, "real_time_secs": 33.09, "usr_time_secs": 57.49, "sys_time_secs": 0.21, "bogo_ops_s_real_time": 68.81, "bogo_ops_s_usr_sys_time": 39.46, "cpu_used_per_instance": 43.59, "rss_max_kb": 2916, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboQrd7YY as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15810370445251465, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14910435676574707, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accEfiXJT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 33629\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0916433334350586, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08895015716552734, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 39883\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 39937\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46363\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19066739082336426, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accYk9VFb as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1030523777008057, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accpdPwvT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4479191303253174, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16610956192016602, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc2Ng4XK as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc2Ng4XK/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2635233402252197, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accIeHNWT as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accIeHNWT/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.24548983573913574, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc7Gz6tN as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.2940328121185303, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15057945251464844, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19290876388549805, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19315791130065918, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17612504959106445, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.5834250450134277, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12607288360595703, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20743155479431152, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13468027114868164, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19821381568908691, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0750434398651123, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.076050281524658, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.148157835006714, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.10800838470459, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1515963077545166, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binUYoVAp as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07753491401672363, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08540105819702148, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binY5ButA as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12185955047607422, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binyiTWFT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18838787078857422, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binmBhX3a as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17572712898254395, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 16.36895751953125, "passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:59:39.001686 2026-04-19 21:00:59.021212 -278 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 100 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_21:00:59.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 34.63, "usr_time_secs": 0.2, "sys_time_secs": 1.02, "bogo_ops_s_real_time": 65.6, "bogo_ops_s_usr_sys_time": 1861.66, "cpu_used_per_instance": 0.88, "rss_max_kb": 4968, "top10_slowest": [["syslog", 6293848197.5, 404684372, 12183012023], ["execve", 39654373.0, 32776193, 46532553], ["execveat", 37286139.0, 29276644, 45295634], ["accept", 9561880.5, 6373373, 12750388], ["fdatasync", 9180035.5, 8423367, 9936704], ["pwritev2", 7268825.5, 5592085, 8945566], ["fsync", 5618340.5, 4590811, 6645870], ["sync", 5384850.5, 3885024, 6884677], ["pause", 4471312.0, 1767318, 7175306], ["clock_settime", 3635643.0, 3635643, 3635643]]}, {"stressor": "cpu", "bogo_ops": 3177, "real_time_secs": 33.09, "usr_time_secs": 79.95, "sys_time_secs": 0.25, "bogo_ops_s_real_time": 96.0, "bogo_ops_s_usr_sys_time": 39.62, "cpu_used_per_instance": 60.58, "rss_max_kb": 3004, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abolRryzT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18732070922851562, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07272887229919434, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accuO3Fy8 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 60901\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0834498405456543, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12639117240905762, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 33631\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 35807\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 36715\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1175687313079834, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accFC2mhu as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.724707841873169, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accDrNmWb as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5462863445281982, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17833256721496582, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accav8mCv as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accav8mCv/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2604804039001465, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accYE6kV4 as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accYE6kV4/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2979390621185303, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accXyJHa2 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1658108234405518, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18529057502746582, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1040811538696289, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1072244644165039, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12587237358093262, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.5329837799072266, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11798644065856934, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15890979766845703, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08528661727905273, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07705450057983398, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10616064071655273, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.1208503246307373, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0792572498321533, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0751540660858154, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05827021598815918, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binu1N5Rc as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05970597267150879, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06115865707397461, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binwHmPbr as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05811595916748047, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binrtFHcr as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1007683277130127, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binQYnjSM as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08443641662597656, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 15.059583902359009, "passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 21:00:59.037704 2026-04-19 21:02:04.053574 -279 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 21:02:04.498686 2026-04-19 21:02:04.498689 -280 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:56:33' --until '2026-04-19 21:02:04' 0 OOM records. 2026-04-19 20:56:33.711954 2026-04-19 21:02:04.065905 -281 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:56:33' --until '2026-04-19 21:02:04' 0 Systemd errors records 2026-04-19 20:56:33.711954 2026-04-19 21:02:04.065905 -282 6 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 0 --vm-method all --vm-bytes 95% --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 36.03, "usr_time_secs": 0.19, "sys_time_secs": 1.39, "bogo_ops_s_real_time": 63.06, "bogo_ops_s_usr_sys_time": 1442.87, "cpu_used_per_instance": 1.09, "rss_max_kb": 4812, "top10_slowest": [["syslog", 823573790.0, 796411174, 850736406], ["execve", 23001172.5, 13919392, 32082953], ["execveat", 22414313.0, 14862040, 29966586], ["fdatasync", 3507971.5, 2890444, 4125499], ["sync", 3272675.5, 3201210, 3344141], ["pwritev2", 3247299.5, 2710905, 3783694], ["accept", 3123427.0, 783819, 5463035], ["fsync", 2492662.0, 2481872, 2503452], ["clone", 2226458.5, 1017210, 3435707], ["msync", 1889816.5, 19749, 3759884]]}, {"stressor": "vm", "bogo_ops": 20992, "real_time_secs": 33.25, "usr_time_secs": 13.15, "sys_time_secs": 54.48, "bogo_ops_s_real_time": 631.35, "bogo_ops_s_usr_sys_time": 310.38, "cpu_used_per_instance": 50.85, "rss_max_kb": 673392, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 21:02:06.637855 2026-04-19 19:16:23.943354 -283 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 21:02:44.792471 2026-04-19 21:02:44.792475 -284 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 21:02:06' --until '2026-04-19 21:02:44' 0 OOM records. 2026-04-19 21:02:06.443322 2026-04-19 21:02:44.495399 -285 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 21:02:06' --until '2026-04-19 21:02:44' 0 Systemd errors records 2026-04-19 21:02:06.443322 2026-04-19 21:02:44.495399 -298 7 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 21:13:39.089532 2026-04-19 21:13:39.089535 -299 7 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 21:10:25' --until '2026-04-19 21:13:36' 0 OOM records. 2026-04-19 21:10:25.771542 2026-04-19 21:13:36.676678 -300 7 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 21:10:25' --until '2026-04-19 21:13:36' 0 Systemd errors records 2026-04-19 21:10:25.771542 2026-04-19 21:13:36.676678 -301 7 loader /usr/bin/perf bench --format default --repeat 3 sched messaging [{"benchmark": "sched/messaging", "total_time": 3.696}] 2026-04-19 21:17:18.199279 2026-04-19 21:17:23.53279 -302 7 loader /usr/bin/perf bench --format default --repeat 3 sched messaging --thread [{"benchmark": "sched/messaging", "total_time": 2.056}] 2026-04-19 21:17:23.536478 2026-04-19 21:17:26.359473 -286 6 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/perf bench --format default --repeat 1 syscall all {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 37.03, "usr_time_secs": 0.24, "sys_time_secs": 1.04, "bogo_ops_s_real_time": 61.36, "bogo_ops_s_usr_sys_time": 1774.06, "cpu_used_per_instance": 0.86, "rss_max_kb": 4940, "top10_slowest": [["syslog", 865636287.0, 861041987, 870230587], ["execve", 14040837.5, 13989343, 14092332], ["execveat", 12882183.5, 12698247, 13066120], ["sync", 3915307.0, 3713628, 4116986], ["fdatasync", 3744304.0, 3154144, 4334464], ["pwritev2", 2937992.0, 2646896, 3229088], ["fsync", 2554889.5, 2157722, 2952057], ["clock_settime", 1928703.0, 1928703, 1928703], ["msync", 1528392.5, 25315, 3031470], ["syncfs", 1320320.0, 1229734, 1410906]]}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}, "perf_metrics": [{"benchmark": "syscall/basic", "total_time": 80.93, "usecs_per_op": 8.093096, "ops_per_sec": 123562}, {"benchmark": "syscall/getpgid", "total_time": 78.882, "usecs_per_op": 7.888202, "ops_per_sec": 126771}, {"benchmark": "syscall/fork", "total_time": 59.216, "usecs_per_op": 5921.6455, "ops_per_sec": 168}, {"benchmark": "syscall/execve", "total_time": 70.548, "usecs_per_op": 7054.883, "ops_per_sec": 141}]} 2026-04-19 21:02:46.198633 2026-04-19 21:07:36.250325 -287 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 21:07:36.510762 2026-04-19 21:07:36.510765 -288 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 21:02:45' --until '2026-04-19 21:07:36' 0 OOM records. 2026-04-19 21:02:45.996363 2026-04-19 21:07:36.255238 -289 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 21:02:45' --until '2026-04-19 21:07:36' 0 Systemd errors records 2026-04-19 21:02:45.996363 2026-04-19 21:07:36.255238 -290 6 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --msg 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"stress_ng_metrics": [{"stressor": "sock", "bogo_ops": 35, "real_time_secs": 8.04, "usr_time_secs": 0.18, "sys_time_secs": 0.91, "bogo_ops_s_real_time": 4.35, "bogo_ops_s_usr_sys_time": 32.09, "cpu_used_per_instance": 13.56, "rss_max_kb": 2140, "top10_slowest": null}, {"stressor": "mq", "bogo_ops": 11041, "real_time_secs": 8.04, "usr_time_secs": 0.31, "sys_time_secs": 0.61, "bogo_ops_s_real_time": 1374.0, "bogo_ops_s_usr_sys_time": 11949.48, "cpu_used_per_instance": 11.5, "rss_max_kb": 2316, "top10_slowest": null}, {"stressor": "pipe", "bogo_ops": 14567, "real_time_secs": 8.03, "usr_time_secs": 0.17, "sys_time_secs": 0.77, "bogo_ops_s_real_time": 1813.44, "bogo_ops_s_usr_sys_time": 15441.58, "cpu_used_per_instance": 11.74, "rss_max_kb": 2576, "top10_slowest": null}, {"stressor": "sem", "bogo_ops": 70410, "real_time_secs": 8.02, "usr_time_secs": 0.43, "sys_time_secs": 1.16, "bogo_ops_s_real_time": 8774.5, "bogo_ops_s_usr_sys_time": 44196.63, "cpu_used_per_instance": 19.85, "rss_max_kb": 3188, "top10_slowest": null}, {"stressor": "sem-sysv", "bogo_ops": 33897, "real_time_secs": 8.03, "usr_time_secs": 0.35, "sys_time_secs": 0.98, "bogo_ops_s_real_time": 4221.68, "bogo_ops_s_usr_sys_time": 25468.52, "cpu_used_per_instance": 16.58, "rss_max_kb": 2320, "top10_slowest": null}, {"stressor": "shm", "bogo_ops": 7, "real_time_secs": 8.07, "usr_time_secs": 0.08, "sys_time_secs": 0.79, "bogo_ops_s_real_time": 0.87, "bogo_ops_s_usr_sys_time": 8.04, "cpu_used_per_instance": 10.79, "rss_max_kb": 50160, "top10_slowest": null}, {"stressor": "shm-sysv", "bogo_ops": 12, "real_time_secs": 8.03, "usr_time_secs": 0.05, "sys_time_secs": 0.32, "bogo_ops_s_real_time": 1.49, "bogo_ops_s_usr_sys_time": 32.39, "cpu_used_per_instance": 4.61, "rss_max_kb": 18540, "top10_slowest": null}, {"stressor": "dekker", "bogo_ops": 2497771, "real_time_secs": 8.03, "usr_time_secs": 1.47, "sys_time_secs": 0.04, "bogo_ops_s_real_time": 311065.12, "bogo_ops_s_usr_sys_time": 1659458.85, "cpu_used_per_instance": 18.74, "rss_max_kb": 2184, "top10_slowest": null}, {"stressor": "fifo", "bogo_ops": 34851, "real_time_secs": 8.03, "usr_time_secs": 0.58, "sys_time_secs": 1.39, "bogo_ops_s_real_time": 4340.84, "bogo_ops_s_usr_sys_time": 17636.28, "cpu_used_per_instance": 24.61, "rss_max_kb": 2176, "top10_slowest": null}, {"stressor": "futex", "bogo_ops": 705, "real_time_secs": 8.02, "usr_time_secs": 0.29, "sys_time_secs": 0.74, "bogo_ops_s_real_time": 87.86, "bogo_ops_s_usr_sys_time": 681.12, "cpu_used_per_instance": 12.9, "rss_max_kb": 2184, "top10_slowest": null}, {"stressor": "msg", "bogo_ops": 35810, "real_time_secs": 8.04, "usr_time_secs": 0.44, "sys_time_secs": 0.83, "bogo_ops_s_real_time": 4454.53, "bogo_ops_s_usr_sys_time": 28121.28, "cpu_used_per_instance": 15.84, "rss_max_kb": 2196, "top10_slowest": null}, {"stressor": "peterson", "bogo_ops": 949870, "real_time_secs": 8.01, "usr_time_secs": 1.41, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 118581.33, "bogo_ops_s_usr_sys_time": 658368.7, "cpu_used_per_instance": 18.01, "rss_max_kb": 2196, "top10_slowest": null}, {"stressor": "pipeherd", "bogo_ops": 181239, "real_time_secs": 8.08, "usr_time_secs": 2.15, "sys_time_secs": 14.51, "bogo_ops_s_real_time": 22422.82, "bogo_ops_s_usr_sys_time": 10877.97, "cpu_used_per_instance": 206.13, "rss_max_kb": 2196, "top10_slowest": null}, {"stressor": "sigq", "bogo_ops": 9543, "real_time_secs": 8.01, "usr_time_secs": 0.3, "sys_time_secs": 0.5, "bogo_ops_s_real_time": 1191.56, "bogo_ops_s_usr_sys_time": 11993.03, "cpu_used_per_instance": 9.94, "rss_max_kb": 2188, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 14, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 21:07:37.945092 2026-04-19 19:16:23.943354 -291 6 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 2 --syscall-method all --mq 2 --pipe 2 --sem 2 --sem-sysv 2 --shm 2 --shm-sysv 2 --verify --dekker 2 --fifo 2 --futex 2 --msg 2 --peterson 2 --pipeherd 2 --sigq 2 --metrics {"stress_ng_metrics": [{"stressor": "sock", "bogo_ops": 44, "real_time_secs": 8.18, "usr_time_secs": 0.23, "sys_time_secs": 1.14, "bogo_ops_s_real_time": 5.38, "bogo_ops_s_usr_sys_time": 32.08, "cpu_used_per_instance": 8.38, "rss_max_kb": 2164, "top10_slowest": null}, {"stressor": "mq", "bogo_ops": 12118, "real_time_secs": 8.06, "usr_time_secs": 0.34, "sys_time_secs": 0.69, "bogo_ops_s_real_time": 1503.39, "bogo_ops_s_usr_sys_time": 11772.81, "cpu_used_per_instance": 6.38, "rss_max_kb": 2344, "top10_slowest": null}, {"stressor": "pipe", "bogo_ops": 19381, "real_time_secs": 8.08, "usr_time_secs": 0.23, "sys_time_secs": 1.03, "bogo_ops_s_real_time": 2399.95, "bogo_ops_s_usr_sys_time": 15414.88, "cpu_used_per_instance": 7.78, "rss_max_kb": 2272, "top10_slowest": null}, {"stressor": "sem", "bogo_ops": 58578, "real_time_secs": 8.01, "usr_time_secs": 0.38, "sys_time_secs": 1.03, "bogo_ops_s_real_time": 7315.11, "bogo_ops_s_usr_sys_time": 41643.0, "cpu_used_per_instance": 8.78, "rss_max_kb": 3064, "top10_slowest": null}, {"stressor": "sem-sysv", "bogo_ops": 12445, "real_time_secs": 8.04, "usr_time_secs": 0.14, "sys_time_secs": 0.49, "bogo_ops_s_real_time": 1548.15, "bogo_ops_s_usr_sys_time": 19846.59, "cpu_used_per_instance": 3.9, "rss_max_kb": 2204, "top10_slowest": null}, {"stressor": "shm", "bogo_ops": 14, "real_time_secs": 8.17, "usr_time_secs": 0.06, "sys_time_secs": 0.73, "bogo_ops_s_real_time": 1.71, "bogo_ops_s_usr_sys_time": 17.68, "cpu_used_per_instance": 4.85, "rss_max_kb": 2204, "top10_slowest": null}, {"stressor": "shm-sysv", "bogo_ops": 12, "real_time_secs": 8.17, "usr_time_secs": 0.06, "sys_time_secs": 0.55, "bogo_ops_s_real_time": 1.47, "bogo_ops_s_usr_sys_time": 19.75, "cpu_used_per_instance": 3.72, "rss_max_kb": 26480, "top10_slowest": null}, {"stressor": "dekker", "bogo_ops": 2476423, "real_time_secs": 8.06, "usr_time_secs": 1.62, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 307432.03, "bogo_ops_s_usr_sys_time": 1498109.53, "cpu_used_per_instance": 10.26, "rss_max_kb": 2152, "top10_slowest": null}, {"stressor": "fifo", "bogo_ops": 40036, "real_time_secs": 8.07, "usr_time_secs": 0.77, "sys_time_secs": 1.48, "bogo_ops_s_real_time": 4958.13, "bogo_ops_s_usr_sys_time": 17795.43, "cpu_used_per_instance": 13.93, "rss_max_kb": 2016, "top10_slowest": null}, {"stressor": "futex", "bogo_ops": 700, "real_time_secs": 8.03, "usr_time_secs": 0.29, "sys_time_secs": 0.9, "bogo_ops_s_real_time": 87.2, "bogo_ops_s_usr_sys_time": 590.26, "cpu_used_per_instance": 7.39, "rss_max_kb": 2016, "top10_slowest": null}, {"stressor": "msg", "bogo_ops": 43909, "real_time_secs": 8.06, "usr_time_secs": 0.5, "sys_time_secs": 1.01, "bogo_ops_s_real_time": 5448.18, "bogo_ops_s_usr_sys_time": 29039.48, "cpu_used_per_instance": 9.38, "rss_max_kb": 2144, "top10_slowest": null}, {"stressor": "peterson", "bogo_ops": 1610643, "real_time_secs": 8.02, "usr_time_secs": 1.5, "sys_time_secs": 0.02, "bogo_ops_s_real_time": 200866.31, "bogo_ops_s_usr_sys_time": 1055434.04, "cpu_used_per_instance": 9.52, "rss_max_kb": 2016, "top10_slowest": null}, {"stressor": "pipeherd", "bogo_ops": 211137, "real_time_secs": 8.13, "usr_time_secs": 2.48, "sys_time_secs": 13.31, "bogo_ops_s_real_time": 25969.52, "bogo_ops_s_usr_sys_time": 13370.34, "cpu_used_per_instance": 97.12, "rss_max_kb": 2016, "top10_slowest": null}, {"stressor": "sigq", "bogo_ops": 10224, "real_time_secs": 8.0, "usr_time_secs": 0.32, "sys_time_secs": 0.54, "bogo_ops_s_real_time": 1277.38, "bogo_ops_s_usr_sys_time": 11850.44, "cpu_used_per_instance": 5.39, "rss_max_kb": 2016, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 28, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 21:07:46.386597 2026-04-19 19:16:23.943354 -292 6 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 3 --syscall-method all --mq 3 --pipe 3 --sem 3 --sem-sysv 3 --shm 3 --shm-sysv 3 --verify --dekker 3 --fifo 3 --futex 3 --msg 3 --peterson 3 --pipeherd 3 --sigq 3 --metrics {"stress_ng_metrics": [{"stressor": "sock", "bogo_ops": 50, "real_time_secs": 8.21, "usr_time_secs": 0.26, "sys_time_secs": 1.3, "bogo_ops_s_real_time": 6.09, "bogo_ops_s_usr_sys_time": 32.17, "cpu_used_per_instance": 6.31, "rss_max_kb": 2120, "top10_slowest": null}, {"stressor": "mq", "bogo_ops": 12961, "real_time_secs": 8.03, "usr_time_secs": 0.44, "sys_time_secs": 0.65, "bogo_ops_s_real_time": 1614.7, "bogo_ops_s_usr_sys_time": 11863.35, "cpu_used_per_instance": 4.54, "rss_max_kb": 2260, "top10_slowest": null}, {"stressor": "pipe", "bogo_ops": 18900, "real_time_secs": 8.04, "usr_time_secs": 0.24, "sys_time_secs": 1.02, "bogo_ops_s_real_time": 2350.8, "bogo_ops_s_usr_sys_time": 14977.26, "cpu_used_per_instance": 5.23, "rss_max_kb": 2508, "top10_slowest": null}, {"stressor": "sem", "bogo_ops": 46248, "real_time_secs": 8.08, "usr_time_secs": 0.33, "sys_time_secs": 1.15, "bogo_ops_s_real_time": 5724.38, "bogo_ops_s_usr_sys_time": 31216.97, "cpu_used_per_instance": 6.11, "rss_max_kb": 3000, "top10_slowest": null}, {"stressor": "sem-sysv", "bogo_ops": 5597, "real_time_secs": 8.07, "usr_time_secs": 0.09, "sys_time_secs": 0.32, "bogo_ops_s_real_time": 693.88, "bogo_ops_s_usr_sys_time": 13596.17, "cpu_used_per_instance": 1.7, "rss_max_kb": 2316, "top10_slowest": null}, {"stressor": "shm", "bogo_ops": 24, "real_time_secs": 8.19, "usr_time_secs": 0.19, "sys_time_secs": 0.8, "bogo_ops_s_real_time": 2.93, "bogo_ops_s_usr_sys_time": 24.32, "cpu_used_per_instance": 4.02, "rss_max_kb": 5156, "top10_slowest": null}, {"stressor": "shm-sysv", "bogo_ops": 10, "real_time_secs": 8.23, "usr_time_secs": 0.06, "sys_time_secs": 0.39, "bogo_ops_s_real_time": 1.22, "bogo_ops_s_usr_sys_time": 22.16, "cpu_used_per_instance": 1.83, "rss_max_kb": 18124, "top10_slowest": null}, {"stressor": "dekker", "bogo_ops": 2927867, "real_time_secs": 8.06, "usr_time_secs": 1.74, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 363221.38, "bogo_ops_s_usr_sys_time": 1655254.43, "cpu_used_per_instance": 7.31, "rss_max_kb": 2132, "top10_slowest": null}, {"stressor": "fifo", "bogo_ops": 43150, "real_time_secs": 8.09, "usr_time_secs": 0.82, "sys_time_secs": 1.63, "bogo_ops_s_real_time": 5334.47, "bogo_ops_s_usr_sys_time": 17626.62, "cpu_used_per_instance": 10.09, "rss_max_kb": 2144, "top10_slowest": null}, {"stressor": "futex", "bogo_ops": 909, "real_time_secs": 8.07, "usr_time_secs": 0.41, "sys_time_secs": 1.05, "bogo_ops_s_real_time": 112.57, "bogo_ops_s_usr_sys_time": 626.48, "cpu_used_per_instance": 5.99, "rss_max_kb": 2100, "top10_slowest": null}, {"stressor": "msg", "bogo_ops": 49073, "real_time_secs": 8.11, "usr_time_secs": 0.58, "sys_time_secs": 1.13, "bogo_ops_s_real_time": 6049.35, "bogo_ops_s_usr_sys_time": 28627.95, "cpu_used_per_instance": 7.04, "rss_max_kb": 2132, "top10_slowest": null}, {"stressor": "peterson", "bogo_ops": 2648957, "real_time_secs": 8.05, "usr_time_secs": 1.89, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 328912.95, "bogo_ops_s_usr_sys_time": 1381744.2, "cpu_used_per_instance": 7.93, "rss_max_kb": 2268, "top10_slowest": null}, {"stressor": "pipeherd", "bogo_ops": 211497, "real_time_secs": 8.16, "usr_time_secs": 2.66, "sys_time_secs": 12.27, "bogo_ops_s_real_time": 25923.48, "bogo_ops_s_usr_sys_time": 14166.07, "cpu_used_per_instance": 61.0, "rss_max_kb": 2120, "top10_slowest": null}, {"stressor": "sigq", "bogo_ops": 11863, "real_time_secs": 8.01, "usr_time_secs": 0.37, "sys_time_secs": 0.61, "bogo_ops_s_real_time": 1481.24, "bogo_ops_s_usr_sys_time": 12080.99, "cpu_used_per_instance": 4.09, "rss_max_kb": 2128, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 42, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 21:07:54.813344 2026-04-19 19:16:23.943354 -293 6 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 4 --syscall-method all --mq 4 --pipe 4 --sem 4 --sem-sysv 4 --shm 4 --shm-sysv 4 --verify --dekker 4 --fifo 4 --futex 4 --msg 4 --peterson 4 --pipeherd 4 --sigq 4 --metrics {"stress_ng_metrics": [{"stressor": "sock", "bogo_ops": 54, "real_time_secs": 8.28, "usr_time_secs": 0.28, "sys_time_secs": 1.41, "bogo_ops_s_real_time": 6.52, "bogo_ops_s_usr_sys_time": 31.79, "cpu_used_per_instance": 5.13, "rss_max_kb": 2084, "top10_slowest": null}, {"stressor": "mq", "bogo_ops": 15250, "real_time_secs": 8.06, "usr_time_secs": 0.47, "sys_time_secs": 0.85, "bogo_ops_s_real_time": 1891.86, "bogo_ops_s_usr_sys_time": 11529.2, "cpu_used_per_instance": 4.1, "rss_max_kb": 2392, "top10_slowest": null}, {"stressor": "pipe", "bogo_ops": 21746, "real_time_secs": 8.08, "usr_time_secs": 0.28, "sys_time_secs": 1.17, "bogo_ops_s_real_time": 2692.32, "bogo_ops_s_usr_sys_time": 15005.52, "cpu_used_per_instance": 4.49, "rss_max_kb": 2368, "top10_slowest": null}, {"stressor": "sem", "bogo_ops": 47635, "real_time_secs": 8.02, "usr_time_secs": 0.35, "sys_time_secs": 1.25, "bogo_ops_s_real_time": 5938.85, "bogo_ops_s_usr_sys_time": 29723.83, "cpu_used_per_instance": 5.0, "rss_max_kb": 3048, "top10_slowest": null}, {"stressor": "sem-sysv", "bogo_ops": 6808, "real_time_secs": 8.04, "usr_time_secs": 0.09, "sys_time_secs": 0.38, "bogo_ops_s_real_time": 846.32, "bogo_ops_s_usr_sys_time": 14507.89, "cpu_used_per_instance": 1.46, "rss_max_kb": 2136, "top10_slowest": null}, {"stressor": "shm", "bogo_ops": 28, "real_time_secs": 8.25, "usr_time_secs": 0.16, "sys_time_secs": 0.75, "bogo_ops_s_real_time": 3.39, "bogo_ops_s_usr_sys_time": 30.63, "cpu_used_per_instance": 2.77, "rss_max_kb": 3008, "top10_slowest": null}, {"stressor": "shm-sysv", "bogo_ops": 9, "real_time_secs": 8.42, "usr_time_secs": 0.06, "sys_time_secs": 0.5, "bogo_ops_s_real_time": 1.07, "bogo_ops_s_usr_sys_time": 16.12, "cpu_used_per_instance": 1.66, "rss_max_kb": 18152, "top10_slowest": null}, {"stressor": "dekker", "bogo_ops": 3575500, "real_time_secs": 8.14, "usr_time_secs": 2.0, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 439026.29, "bogo_ops_s_usr_sys_time": 1757801.46, "cpu_used_per_instance": 6.24, "rss_max_kb": 2004, "top10_slowest": null}, {"stressor": "fifo", "bogo_ops": 42935, "real_time_secs": 8.11, "usr_time_secs": 0.8, "sys_time_secs": 1.65, "bogo_ops_s_real_time": 5293.77, "bogo_ops_s_usr_sys_time": 17459.75, "cpu_used_per_instance": 7.58, "rss_max_kb": 2144, "top10_slowest": null}, {"stressor": "futex", "bogo_ops": 673, "real_time_secs": 8.04, "usr_time_secs": 0.48, "sys_time_secs": 1.16, "bogo_ops_s_real_time": 83.68, "bogo_ops_s_usr_sys_time": 410.35, "cpu_used_per_instance": 5.1, "rss_max_kb": 1992, "top10_slowest": null}, {"stressor": "msg", "bogo_ops": 55024, "real_time_secs": 8.17, "usr_time_secs": 0.59, "sys_time_secs": 1.31, "bogo_ops_s_real_time": 6738.36, "bogo_ops_s_usr_sys_time": 28956.62, "cpu_used_per_instance": 5.82, "rss_max_kb": 2136, "top10_slowest": null}, {"stressor": "peterson", "bogo_ops": 1260279, "real_time_secs": 8.05, "usr_time_secs": 1.92, "sys_time_secs": 0.04, "bogo_ops_s_real_time": 156574.52, "bogo_ops_s_usr_sys_time": 643863.45, "cpu_used_per_instance": 6.08, "rss_max_kb": 2008, "top10_slowest": null}, {"stressor": "pipeherd", "bogo_ops": 206694, "real_time_secs": 8.21, "usr_time_secs": 2.58, "sys_time_secs": 11.93, "bogo_ops_s_real_time": 25166.79, "bogo_ops_s_usr_sys_time": 14241.38, "cpu_used_per_instance": 44.18, "rss_max_kb": 2008, "top10_slowest": null}, {"stressor": "sigq", "bogo_ops": 14092, "real_time_secs": 8.0, "usr_time_secs": 0.43, "sys_time_secs": 0.74, "bogo_ops_s_real_time": 1760.62, "bogo_ops_s_usr_sys_time": 11953.34, "cpu_used_per_instance": 3.68, "rss_max_kb": 2004, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 56, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 21:08:03.32458 2026-04-19 19:16:23.943354 -294 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 21:08:12.341241 2026-04-19 21:08:12.341245 -295 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 21:07:37' --until '2026-04-19 21:08:12' 1 OOM records. 2026-04-19 21:07:37.677343 2026-04-19 21:08:12.080866 -296 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 21:07:37' --until '2026-04-19 21:08:12' 0 Systemd errors records 2026-04-19 21:07:37.677343 2026-04-19 21:08:12.080866 -352 8 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 14:51:55' --until '2026-04-20 15:04:25' 0 OOM records. 2026-04-20 14:51:55.855184 2026-04-20 15:04:25.925435 -316 8 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776696937, "timestamp_ms": 1776696937294, "time": "Mon Apr 20 14:55:37 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15644753920, "io_kbytes": 15278080, "bw_bytes": 3128325118, "bw": 3055004, "iops": 745.85083, "runtime": 5001, "total_ios": 3730, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 622876, "max": 8586194, "mean": 1156071.92681, "stddev": 516992.678033, "N": 3730}, "clat_ns": {"min": 9420, "max": 3855948, "mean": 167285.653351, "stddev": 165020.731613, "N": 3730, "percentile": {"1.000000": 100864, "5.000000": 118272, "10.000000": 123392, "20.000000": 127488, "30.000000": 132096, "40.000000": 138240, "50.000000": 144384, "60.000000": 150528, "70.000000": 166912, "80.000000": 181248, "90.000000": 207872, "95.000000": 238592, "99.000000": 354304, "99.500000": 929792, "99.900000": 3358720, "99.950000": 3555328, "99.990000": 3850240}}, "lat_ns": {"min": 827318, "max": 10214070, "mean": 1327986.169705, "stddev": 582808.636787, "N": 3730}, "bw_min": 2142208, "bw_max": 3538944, "bw_agg": 95.6804, "bw_mean": 2923041.0, "bw_dev": 653963.130446, "bw_samples": 4, "iops_min": 523, "iops_max": 864, "iops_mean": 713.5, "iops_stddev": 159.671538, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.06, "sys_cpu": 28.7, "ctx": 14855, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.214477, "20": 0.509383, "50": 0.02681, "100": 0.080429, "250": 95.201072, "500": 3.243968, "750": 0.134048, "1000": 0.107239}, "latency_ms": {"2": 0.294906, "4": 0.187668, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14844, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3598, "write_ticks": 0, "in_queue": 3598, "util": 82.350621}]} 2026-04-20 14:55:23.995036 2026-04-20 14:46:24.505276 -317 8 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776696952, "timestamp_ms": 1776696952066, "time": "Mon Apr 20 14:55:52 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 16588472320, "io_kbytes": 16199680, "bw_bytes": 3317031057, "bw": 3239288, "iops": 790.841832, "runtime": 5001, "total_ios": 3955, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 547805, "max": 8425432, "mean": 1020819.872819, "stddev": 425434.031644, "N": 3955}, "clat_ns": {"min": 5890, "max": 4168921, "mean": 226086.545638, "stddev": 265572.149192, "N": 3955, "percentile": {"1.000000": 110080, "5.000000": 119296, "10.000000": 121344, "20.000000": 126464, "30.000000": 132096, "40.000000": 138240, "50.000000": 144384, "60.000000": 156672, "70.000000": 191488, "80.000000": 325632, "90.000000": 407552, "95.000000": 481280, "99.000000": 1269760, "99.500000": 2211840, "99.900000": 3883008, "99.950000": 4079616, "99.990000": 4177920}}, "lat_ns": {"min": 790758, "max": 9486573, "mean": 1251557.773957, "stddev": 528116.274501, "N": 3955}, "bw_min": 3208055, "bw_max": 3616768, "bw_agg": 100.0, "bw_mean": 3436059.5, "bw_dev": 189327.935767, "bw_samples": 4, "iops_min": 783, "iops_max": 883, "iops_mean": 838.75, "iops_stddev": 46.306047, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.86, "sys_cpu": 35.08, "ctx": 14827, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.303413, "20": 0.22756, "50": 0.0, "100": 0.025284, "250": 74.437421, "500": 21.213654, "750": 2.604298, "1000": 0.126422}, "latency_ms": {"2": 0.45512, "4": 0.556258, "10": 0.050569, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 15378, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4255, "write_ticks": 0, "in_queue": 4255, "util": 84.976621}]} 2026-04-20 14:55:38.820131 2026-04-20 14:46:24.505276 -318 8 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776696961, "timestamp_ms": 1776696961444, "time": "Mon Apr 20 14:56:01 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9462349824, "io_kbytes": 9240576, "bw_bytes": 1890201722, "bw": 1845900, "iops": 450.659209, "runtime": 5006, "total_ios": 2256, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1233112, "max": 9760735, "mean": 1924317.83023, "stddev": 853964.29745, "N": 2256}, "clat_ns": {"min": 10120, "max": 5194861, "mean": 270958.373227, "stddev": 326911.066825, "N": 2256, "percentile": {"1.000000": 154624, "5.000000": 166912, "10.000000": 171008, "20.000000": 179200, "30.000000": 187392, "40.000000": 197632, "50.000000": 211968, "60.000000": 224256, "70.000000": 248832, "80.000000": 288768, "90.000000": 342016, "95.000000": 428032, "99.000000": 1499136, "99.500000": 3096576, "99.900000": 4423680, "99.950000": 4816896, "99.990000": 5210112}}, "lat_ns": {"min": 1390333, "max": 11590293, "mean": 2200929.635638, "stddev": 977075.882193, "N": 2256}, "bw_min": 1579476, "bw_max": 2013218, "bw_agg": 99.995985, "bw_mean": 1845826.4, "bw_dev": 172643.193397, "bw_samples": 5, "iops_min": 385, "iops_max": 491, "iops_mean": 450.2, "iops_stddev": 42.222032, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5005, "usr_cpu": 5.354645, "sys_cpu": 18.661339, "ctx": 9029, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.177305, "50": 0.0, "100": 0.044326, "250": 70.390071, "500": 26.196809, "750": 1.152482, "1000": 0.487589}, "latency_ms": {"2": 0.70922, "4": 0.664894, "10": 0.177305, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8795, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3713, "in_queue": 3713, "util": 89.138727}]} 2026-04-20 14:55:53.601344 2026-04-20 14:46:24.505276 -319 8 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776696976, "timestamp_ms": 1776696976320, "time": "Mon Apr 20 14:56:16 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9949696, "io_kbytes": 9716, "bw_bytes": 1989541, "bw": 1942, "iops": 3885.822835, "runtime": 5001, "total_ios": 19433, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84721, "max": 10223780, "mean": 150129.132815, "stddev": 301255.883939, "N": 19433}, "clat_ns": {"min": 4510, "max": 8961027, "mean": 95163.143828, "stddev": 144505.592199, "N": 19433, "percentile": {"1.000000": 4704, "5.000000": 4896, "10.000000": 6624, "20.000000": 67072, "30.000000": 77312, "40.000000": 83456, "50.000000": 89600, "60.000000": 93696, "70.000000": 99840, "80.000000": 111104, "90.000000": 140288, "95.000000": 173056, "99.000000": 272384, "99.500000": 370688, "99.900000": 1925120, "99.950000": 3620864, "99.990000": 5210112}}, "lat_ns": {"min": 144332, "max": 10267590, "mean": 247561.232131, "stddev": 324346.44206, "N": 19433}, "bw_min": 1782, "bw_max": 2453, "bw_agg": 100.0, "bw_mean": 2144.25, "bw_dev": 278.558641, "bw_samples": 4, "iops_min": 3565, "iops_max": 4906, "iops_mean": 4288.75, "iops_stddev": 556.683857, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 0.0, "sys_cpu": 56.58, "ctx": 19449, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.118561, "20": 0.509443, "50": 0.036021, "100": 57.772861, "250": 28.178871, "500": 1.044615, "750": 0.144085, "1000": 0.036021}, "latency_ms": {"2": 0.066897, "4": 0.046313, "10": 0.046313, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 18899, "read_merges": 0, "write_merges": 2365, "read_ticks": 0, "write_ticks": 2522, "in_queue": 2522, "util": 78.103656}]} 2026-04-20 14:56:07.907763 2026-04-20 14:46:24.505276 -320 8 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697001, "timestamp_ms": 1776697001429, "time": "Mon Apr 20 14:56:41 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13402112, "io_kbytes": 13088, "bw_bytes": 2679886, "bw": 2617, "iops": 5234.153169, "runtime": 5001, "total_ios": 26176, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76271, "max": 10144349, "mean": 91759.480669, "stddev": 67299.563324, "N": 26176}, "clat_ns": {"min": 4580, "max": 6547324, "mean": 89500.444186, "stddev": 219173.206928, "N": 26176, "percentile": {"1.000000": 45824, "5.000000": 47872, "10.000000": 48896, "20.000000": 50432, "30.000000": 52480, "40.000000": 59136, "50.000000": 66048, "60.000000": 73216, "70.000000": 78336, "80.000000": 82432, "90.000000": 99840, "95.000000": 128512, "99.000000": 544768, "99.500000": 1564672, "99.900000": 3784704, "99.950000": 4620288, "99.990000": 5799936}}, "lat_ns": {"min": 116951, "max": 10174760, "mean": 183177.224977, "stddev": 232898.957156, "N": 26176}, "bw_min": 1357, "bw_max": 3044, "bw_agg": 95.258977, "bw_mean": 2493.5, "bw_dev": 777.76196, "bw_samples": 4, "iops_min": 2714, "iops_max": 6088, "iops_mean": 4987.5, "iops_stddev": 1555.775155, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.4, "sys_cpu": 54.04, "ctx": 26059, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.179554, "20": 0.019101, "50": 17.603912, "100": 72.39074, "250": 8.622402, "500": 0.145171, "750": 0.110789, "1000": 0.049664}, "latency_ms": {"2": 0.630348, "4": 0.164273, "10": 0.084046, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24785, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2909, "write_ticks": 0, "in_queue": 2909, "util": 77.517468}]} 2026-04-20 14:56:17.810083 2026-04-20 14:46:24.505276 -321 8 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697026, "timestamp_ms": 1776697026323, "time": "Mon Apr 20 14:57:06 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12814848, "io_kbytes": 12514, "bw_bytes": 2562457, "bw": 2502, "iops": 5004.79904, "runtime": 5001, "total_ios": 25029, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79301, "max": 3972839, "mean": 92482.477206, "stddev": 40495.977369, "N": 25029}, "clat_ns": {"min": 4240, "max": 8648745, "mean": 95889.192856, "stddev": 234328.51042, "N": 25029, "percentile": {"1.000000": 47360, "5.000000": 48896, "10.000000": 50432, "20.000000": 54016, "30.000000": 60160, "40.000000": 67072, "50.000000": 70144, "60.000000": 78336, "70.000000": 79360, "80.000000": 84480, "90.000000": 107008, "95.000000": 140288, "99.000000": 651264, "99.500000": 1564672, "99.900000": 3719168, "99.950000": 4882432, "99.990000": 6651904}}, "lat_ns": {"min": 122441, "max": 8766856, "mean": 190475.606776, "stddev": 241671.673302, "N": 25029}, "bw_min": 1571, "bw_max": 2994, "bw_agg": 95.468373, "bw_mean": 2389.0, "bw_dev": 602.5872, "bw_samples": 4, "iops_min": 3143, "iops_max": 5989, "iops_mean": 4779.0, "iops_stddev": 1205.1744, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.2, "sys_cpu": 57.36, "ctx": 24908, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.175796, "20": 0.043949, "50": 7.834912, "100": 80.083104, "250": 10.359982, "500": 0.375564, "750": 0.167805, "1000": 0.087898}, "latency_ms": {"2": 0.535379, "4": 0.27568, "10": 0.05993, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24833, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2993, "write_ticks": 0, "in_queue": 2992, "util": 70.816044}]} 2026-04-20 14:56:43.166787 2026-04-20 14:46:24.505276 -322 8 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697036, "timestamp_ms": 1776697036164, "time": "Mon Apr 20 14:57:16 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5984256, "io_kbytes": 5844, "bw_bytes": 1196611, "bw": 1168, "iops": 2337.132573, "runtime": 5001, "total_ios": 11688, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 95031, "max": 8615245, "mean": 406518.594798, "stddev": 348522.790361, "N": 11688}, "clat_ns": {"min": 4510, "max": 270633, "mean": 7391.346595, "stddev": 14867.744469, "N": 11688, "percentile": {"1.000000": 4768, "5.000000": 4832, "10.000000": 4896, "20.000000": 4960, "30.000000": 4960, "40.000000": 5024, "50.000000": 5088, "60.000000": 5152, "70.000000": 5216, "80.000000": 5408, "90.000000": 8160, "95.000000": 8768, "99.000000": 104960, "99.500000": 125440, "99.900000": 173056, "99.950000": 211968, "99.990000": 259072}}, "lat_ns": {"min": 178692, "max": 8630375, "mean": 417095.53371, "stddev": 348868.014051, "N": 11688}, "bw_min": 903, "bw_max": 1353, "bw_agg": 96.443038, "bw_mean": 1127.25, "bw_dev": 231.491361, "bw_samples": 4, "iops_min": 1807, "iops_max": 2707, "iops_mean": 2255.25, "iops_stddev": 462.735616, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.76, "sys_cpu": 70.42, "ctx": 11707, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.894251, "20": 1.428816, "50": 0.102669, "100": 0.419233, "250": 1.129363, "500": 0.025667, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 11364, "read_merges": 0, "write_merges": 19522, "read_ticks": 0, "write_ticks": 1685, "in_queue": 1685, "util": 68.849166}]} 2026-04-20 14:57:07.77893 2026-04-20 14:46:24.505276 -323 8 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697047, "timestamp_ms": 1776697047278, "time": "Mon Apr 20 14:57:27 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 53944320, "io_kbytes": 52680, "bw_bytes": 10786706, "bw": 10533, "iops": 2633.473305, "runtime": 5001, "total_ios": 13170, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 245112, "max": 400646376, "mean": 361598.52126, "stddev": 3502336.037089, "N": 13170}, "clat_ns": {"min": 4630, "max": 2954119, "mean": 5911.325437, "stddev": 25935.643099, "N": 13170, "percentile": {"1.000000": 4768, "5.000000": 4832, "10.000000": 4896, "20.000000": 4960, "30.000000": 5024, "40.000000": 5024, "50.000000": 5088, "60.000000": 5152, "70.000000": 5216, "80.000000": 5472, "90.000000": 7840, "95.000000": 8384, "99.000000": 11840, "99.500000": 16064, "99.900000": 19840, "99.950000": 21376, "99.990000": 264192}}, "lat_ns": {"min": 252662, "max": 400858448, "mean": 370710.731891, "stddev": 3504344.929964, "N": 13170}, "bw_min": 6833, "bw_max": 13474, "bw_agg": 100.0, "bw_mean": 11382.25, "bw_dev": 3082.861698, "bw_samples": 4, "iops_min": 1708, "iops_max": 3368, "iops_mean": 2845.25, "iops_stddev": 770.6341, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.68, "sys_cpu": 63.36, "ctx": 13212, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 98.344723, "20": 1.556568, "50": 0.060744, "100": 0.0, "250": 0.022779, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 12897, "read_merges": 0, "write_merges": 25795, "read_ticks": 0, "write_ticks": 1834, "in_queue": 1834, "util": 66.639871}]} 2026-04-20 14:57:18.503793 2026-04-20 14:46:24.505276 -324 8 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697063, "timestamp_ms": 1776697063477, "time": "Mon Apr 20 14:57:43 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 107331584, "io_kbytes": 104816, "bw_bytes": 21457733, "bw": 20954, "iops": 5238.704518, "runtime": 5002, "total_ios": 26204, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76901, "max": 3177031, "mean": 90438.349908, "stddev": 25131.138695, "N": 26204}, "clat_ns": {"min": 3830, "max": 5596945, "mean": 89988.306633, "stddev": 205047.918316, "N": 26204, "percentile": {"1.000000": 46848, "5.000000": 49408, "10.000000": 50944, "20.000000": 55552, "30.000000": 61184, "40.000000": 67072, "50.000000": 70144, "60.000000": 77312, "70.000000": 78336, "80.000000": 82432, "90.000000": 95744, "95.000000": 123392, "99.000000": 232448, "99.500000": 1515520, "99.900000": 3850240, "99.950000": 4177920, "99.990000": 5341184}}, "lat_ns": {"min": 122561, "max": 5724526, "mean": 182559.846321, "stddev": 209897.407563, "N": 26204}, "bw_min": 22040, "bw_max": 24000, "bw_agg": 100.0, "bw_mean": 23340.0, "bw_dev": 883.321006, "bw_samples": 4, "iops_min": 5510, "iops_max": 6000, "iops_mean": 5835.0, "iops_stddev": 220.830252, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 10.077984, "sys_cpu": 58.608278, "ctx": 26037, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.064876, "10": 0.244238, "20": 0.01, "50": 6.189895, "100": 84.582506, "250": 7.945352, "500": 0.114486, "750": 0.064876, "1000": 0.049611}, "latency_ms": {"2": 0.484659, "4": 0.183178, "10": 0.072508, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 26164, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3107, "write_ticks": 0, "in_queue": 3107, "util": 77.714286}]} 2026-04-20 14:57:28.796417 2026-04-20 14:46:24.505276 -325 8 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697079, "timestamp_ms": 1776697079192, "time": "Mon Apr 20 14:57:59 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 94806016, "io_kbytes": 92584, "bw_bytes": 18957411, "bw": 18513, "iops": 4628.274345, "runtime": 5001, "total_ios": 23146, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77280, "max": 11967977, "mean": 94123.656658, "stddev": 112373.661389, "N": 23146}, "clat_ns": {"min": 4030, "max": 156660381, "mean": 109348.970621, "stddev": 1065597.898061, "N": 23146, "percentile": {"1.000000": 47872, "5.000000": 49920, "10.000000": 51456, "20.000000": 54528, "30.000000": 60672, "40.000000": 66048, "50.000000": 72192, "60.000000": 78336, "70.000000": 80384, "80.000000": 85504, "90.000000": 104960, "95.000000": 138240, "99.000000": 1302528, "99.500000": 1908736, "99.900000": 4292608, "99.950000": 5341184, "99.990000": 8355840}}, "lat_ns": {"min": 122232, "max": 156822313, "mean": 205582.446989, "stddev": 1072895.225866, "N": 23146}, "bw_min": 13058, "bw_max": 22957, "bw_agg": 100.0, "bw_mean": 18763.75, "bw_dev": 4153.674869, "bw_samples": 4, "iops_min": 3264, "iops_max": 5739, "iops_mean": 4690.75, "iops_stddev": 1038.563551, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.86, "sys_cpu": 56.68, "ctx": 23049, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.349952, "20": 0.012961, "50": 4.039575, "100": 83.902186, "250": 10.040612, "500": 0.203059, "750": 0.155534, "1000": 0.10369}, "latency_ms": {"2": 0.725827, "4": 0.32835, "10": 0.133932, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22881, "write_ios": 20, "read_merges": 0, "write_merges": 11, "read_ticks": 2777, "write_ticks": 12, "in_queue": 2791, "util": 68.779715}]} 2026-04-20 14:57:44.927666 2026-04-20 14:46:24.505276 -353 8 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 14:51:55' --until '2026-04-20 15:04:25' 0 Systemd errors records 2026-04-20 14:51:55.855184 2026-04-20 15:04:25.925435 -326 8 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697088, "timestamp_ms": 1776697088967, "time": "Mon Apr 20 14:58:08 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 48099328, "io_kbytes": 46972, "bw_bytes": 9617942, "bw": 9392, "iops": 2348.130374, "runtime": 5001, "total_ios": 11743, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 96741, "max": 7883457, "mean": 406114.000766, "stddev": 347685.719268, "N": 11743}, "clat_ns": {"min": 4420, "max": 241732, "mean": 5854.379716, "stddev": 4064.131367, "N": 11743, "percentile": {"1.000000": 4640, "5.000000": 4832, "10.000000": 4832, "20.000000": 4896, "30.000000": 5024, "40.000000": 5088, "50.000000": 5280, "60.000000": 5408, "70.000000": 5536, "80.000000": 5728, "90.000000": 8032, "95.000000": 8640, "99.000000": 14272, "99.500000": 16768, "99.900000": 23424, "99.950000": 123392, "99.990000": 160768}}, "lat_ns": {"min": 218232, "max": 7898067, "mean": 415684.428766, "stddev": 348880.632434, "N": 11743}, "bw_min": 5170, "bw_max": 11068, "bw_agg": 99.078826, "bw_mean": 9306.0, "bw_dev": 2784.173725, "bw_samples": 4, "iops_min": 1292, "iops_max": 2767, "iops_mean": 2326.25, "iops_stddev": 696.219972, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.02, "sys_cpu": 68.16, "ctx": 11783, "majf": 0, "minf": 16, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 98.211701, "20": 1.575407, "50": 0.153283, "100": 0.0, "250": 0.05961, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 11415, "read_merges": 0, "write_merges": 22824, "read_ticks": 0, "write_ticks": 1702, "in_queue": 1702, "util": 74.949739}]} 2026-04-20 14:58:01.099542 2026-04-20 14:46:24.505276 -327 8 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697102, "timestamp_ms": 1776697102107, "time": "Mon Apr 20 14:58:22 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 8, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7520387072, "io_kbytes": 7344128, "bw_bytes": 1073574171, "bw": 1048412, "iops": 511.920057, "runtime": 7005, "total_ios": 3586, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 533325, "max": 2704252625, "mean": 1652916.51952, "stddev": 45146040.004458, "N": 3586}, "clat_ns": {"min": 4860, "max": 5600325, "mean": 281971.060792, "stddev": 320990.255542, "N": 3586, "percentile": {"1.000000": 5088, "5.000000": 5280, "10.000000": 5536, "20.000000": 224256, "30.000000": 248832, "40.000000": 264192, "50.000000": 280576, "60.000000": 292864, "70.000000": 313344, "80.000000": 337920, "90.000000": 382976, "95.000000": 436224, "99.000000": 1597440, "99.500000": 3031040, "99.900000": 3948544, "99.950000": 4145152, "99.990000": 5603328}}, "lat_ns": {"min": 765517, "max": 2704650108, "mean": 1939628.334914, "stddev": 45149250.077052, "N": 3586}, "bw_min": 428032, "bw_max": 1966080, "bw_agg": 100.0, "bw_mean": 1467427.0, "bw_dev": 616931.239534, "bw_samples": 5, "iops_min": 209, "iops_max": 960, "iops_mean": 716.4, "iops_stddev": 301.212218, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 7005, "usr_cpu": 0.942184, "sys_cpu": 18.044254, "ctx": 7849, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 17.233687, "20": 1.589515, "50": 0.055772, "100": 0.0, "250": 12.353597, "500": 65.755717, "750": 1.25488, "1000": 0.250976}, "latency_ms": {"2": 0.725042, "4": 0.697156, "10": 0.083659, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7841, "read_merges": 0, "write_merges": 673, "read_ticks": 0, "write_ticks": 3121, "in_queue": 3120, "util": 56.135321}]} 2026-04-20 14:58:11.578522 2026-04-20 14:46:24.505276 -328 8 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697118, "timestamp_ms": 1776697118650, "time": "Mon Apr 20 14:58:38 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14849933312, "io_kbytes": 14501888, "bw_bytes": 2969392783, "bw": 2899797, "iops": 1415.916817, "runtime": 5001, "total_ios": 7081, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 187482, "max": 6816057, "mean": 509219.009462, "stddev": 289152.121013, "N": 7081}, "clat_ns": {"min": 6900, "max": 6654366, "mean": 183190.449936, "stddev": 215792.909001, "N": 7081, "percentile": {"1.000000": 99840, "5.000000": 109056, "10.000000": 117248, "20.000000": 136192, "30.000000": 146432, "40.000000": 152576, "50.000000": 160768, "60.000000": 171008, "70.000000": 181248, "80.000000": 195584, "90.000000": 222208, "95.000000": 248832, "99.000000": 452608, "99.500000": 1335296, "99.900000": 3457024, "99.950000": 4358144, "99.990000": 6651904}}, "lat_ns": {"min": 473515, "max": 7499613, "mean": 695981.876147, "stddev": 385790.10862, "N": 7081}, "bw_min": 2131968, "bw_max": 3241984, "bw_agg": 98.029599, "bw_mean": 2842660.5, "bw_dev": 517829.123906, "bw_samples": 4, "iops_min": 1041, "iops_max": 1583, "iops_mean": 1387.75, "iops_stddev": 252.767845, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.22, "sys_cpu": 38.74, "ctx": 14118, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.141223, "20": 0.014122, "50": 0.0, "100": 0.847338, "250": 94.082757, "500": 4.010733, "750": 0.18359, "1000": 0.056489}, "latency_ms": {"2": 0.296568, "4": 0.282446, "10": 0.084734, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14152, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3341, "write_ticks": 0, "in_queue": 3341, "util": 81.037532}]} 2026-04-20 14:58:23.682066 2026-04-20 14:46:24.505276 -329 8 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697134, "timestamp_ms": 1776697134770, "time": "Mon Apr 20 14:58:54 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14294188032, "io_kbytes": 13959168, "bw_bytes": 2855981624, "bw": 2789044, "iops": 1361.838162, "runtime": 5005, "total_ios": 6816, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 201902, "max": 5954588, "mean": 529858.203932, "stddev": 293988.559106, "N": 6816}, "clat_ns": {"min": 4790, "max": 5076639, "mean": 188490.423122, "stddev": 238186.303083, "N": 6816, "percentile": {"1.000000": 97792, "5.000000": 111104, "10.000000": 120320, "20.000000": 138240, "30.000000": 146432, "40.000000": 154624, "50.000000": 160768, "60.000000": 171008, "70.000000": 181248, "80.000000": 193536, "90.000000": 218112, "95.000000": 257024, "99.000000": 593920, "99.500000": 2244608, "99.900000": 3719168, "99.950000": 3948544, "99.990000": 5079040}}, "lat_ns": {"min": 486855, "max": 6871048, "mean": 722191.021714, "stddev": 407824.385764, "N": 6816}, "bw_min": 2836480, "bw_max": 3146677, "bw_agg": 100.0, "bw_mean": 3054049.5, "bw_dev": 145746.547222, "bw_samples": 4, "iops_min": 1385, "iops_max": 1536, "iops_mean": 1491.0, "iops_stddev": 70.997653, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5004, "usr_cpu": 2.857714, "sys_cpu": 41.666667, "ctx": 13580, "majf": 0, "minf": 529, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.425469, "20": 0.146714, "50": 0.0, "100": 0.630869, "250": 93.236502, "500": 4.430751, "750": 0.205399, "1000": 0.088028}, "latency_ms": {"2": 0.234742, "4": 0.557512, "10": 0.044014, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13441, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3257, "write_ticks": 0, "in_queue": 3257, "util": 58.426966}]} 2026-04-20 14:58:40.087739 2026-04-20 14:46:24.505276 -330 8 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697144, "timestamp_ms": 1776697144078, "time": "Mon Apr 20 14:59:04 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8487174144, "io_kbytes": 8288256, "bw_bytes": 1697095409, "bw": 1657319, "iops": 809.238152, "runtime": 5001, "total_ios": 4047, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 492655, "max": 15425510, "mean": 935928.731159, "stddev": 674683.533063, "N": 4047}, "clat_ns": {"min": 4860, "max": 4480264, "mean": 279256.676798, "stddev": 298043.258932, "N": 4047, "percentile": {"1.000000": 5536, "5.000000": 5920, "10.000000": 7520, "20.000000": 226304, "30.000000": 242688, "40.000000": 254976, "50.000000": 268288, "60.000000": 284672, "70.000000": 301056, "80.000000": 325632, "90.000000": 370688, "95.000000": 423936, "99.000000": 1581056, "99.500000": 2408448, "99.900000": 3915776, "99.950000": 4112384, "99.990000": 4489216}}, "lat_ns": {"min": 700577, "max": 15997316, "mean": 1219870.83148, "stddev": 736613.073535, "N": 4047}, "bw_min": 1333962, "bw_max": 1863864, "bw_agg": 98.350002, "bw_mean": 1629974.0, "bw_dev": 260461.691571, "bw_samples": 4, "iops_min": 651, "iops_max": 910, "iops_mean": 795.75, "iops_stddev": 127.25663, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.5, "sys_cpu": 23.14, "ctx": 8782, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 13.689152, "20": 2.89103, "50": 0.172968, "100": 0.02471, "250": 18.532246, "500": 61.527057, "750": 1.062515, "1000": 0.296516}, "latency_ms": {"2": 1.087225, "4": 0.617742, "10": 0.098839, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8545, "read_merges": 0, "write_merges": 674, "read_ticks": 0, "write_ticks": 3516, "in_queue": 3519, "util": 75.376279}]} 2026-04-20 14:58:56.232327 2026-04-20 14:46:24.505276 -331 8 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697155, "timestamp_ms": 1776697155913, "time": "Mon Apr 20 14:59:15 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9181331456, "io_kbytes": 8966144, "bw_bytes": 1835532078, "bw": 1792511, "iops": 437.62495, "runtime": 5002, "total_ios": 2189, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1306933, "max": 25253377, "mean": 2054120.190955, "stddev": 1005369.257744, "N": 2189}, "clat_ns": {"min": 5500, "max": 3831328, "mean": 207692.885336, "stddev": 193870.838048, "N": 2189, "percentile": {"1.000000": 5728, "5.000000": 6112, "10.000000": 7584, "20.000000": 171008, "30.000000": 183296, "40.000000": 191488, "50.000000": 201728, "60.000000": 214016, "70.000000": 228352, "80.000000": 246784, "90.000000": 288768, "95.000000": 346112, "99.000000": 856064, "99.500000": 1335296, "99.900000": 2768896, "99.950000": 2899968, "99.990000": 3817472}}, "lat_ns": {"min": 1475374, "max": 25507389, "mean": 2267446.108725, "stddev": 1051208.412837, "N": 2189}, "bw_min": 1642496, "bw_max": 1919104, "bw_agg": 97.463905, "bw_mean": 1747052.0, "bw_dev": 121920.068154, "bw_samples": 4, "iops_min": 401, "iops_max": 468, "iops_mean": 426.25, "iops_stddev": 29.52259, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 9.556178, "sys_cpu": 15.733707, "ctx": 9104, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 11.466423, "20": 3.70032, "50": 0.137049, "100": 0.274098, "250": 65.555048, "500": 17.039744, "750": 0.77661, "1000": 0.182732}, "latency_ms": {"2": 0.548196, "4": 0.319781, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8886, "read_merges": 0, "write_merges": 334, "read_ticks": 0, "write_ticks": 3762, "in_queue": 3761, "util": 81.647341}]} 2026-04-20 14:59:07.344355 2026-04-20 14:46:24.505276 -332 8 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697172, "timestamp_ms": 1776697172918, "time": "Mon Apr 20 14:59:32 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15598616576, "io_kbytes": 15233024, "bw_bytes": 3119099495, "bw": 3045995, "iops": 743.65127, "runtime": 5001, "total_ios": 3719, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 591186, "max": 24047775, "mean": 1161208.442861, "stddev": 644597.990595, "N": 3719}, "clat_ns": {"min": 6130, "max": 3777167, "mean": 164159.814466, "stddev": 148494.050225, "N": 3719, "percentile": {"1.000000": 101888, "5.000000": 119296, "10.000000": 124416, "20.000000": 128512, "30.000000": 134144, "40.000000": 140288, "50.000000": 144384, "60.000000": 154624, "70.000000": 168960, "80.000000": 179200, "90.000000": 199680, "95.000000": 230400, "99.000000": 309248, "99.500000": 440320, "99.900000": 2932736, "99.950000": 3457024, "99.990000": 3784704}}, "lat_ns": {"min": 826138, "max": 24397949, "mean": 1331278.606884, "stddev": 685519.951992, "N": 3719}, "bw_min": 2277376, "bw_max": 3444736, "bw_agg": 97.432183, "bw_mean": 2967780.0, "bw_dev": 500228.858792, "bw_samples": 4, "iops_min": 556, "iops_max": 841, "iops_mean": 724.5, "iops_stddev": 122.094226, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 3.879224, "sys_cpu": 31.313737, "ctx": 14788, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.134445, "20": 0.403334, "50": 0.026889, "100": 0.215112, "250": 96.101102, "500": 2.662006, "750": 0.053778, "1000": 0.026889}, "latency_ms": {"2": 0.161334, "4": 0.215112, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14830, "write_ios": 29, "read_merges": 0, "write_merges": 18, "read_ticks": 3616, "write_ticks": 12, "in_queue": 3629, "util": 84.107002}]} 2026-04-20 14:59:19.362084 2026-04-20 14:46:24.505276 -333 8 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697189, "timestamp_ms": 1776697189116, "time": "Mon Apr 20 14:59:49 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 16659775488, "io_kbytes": 16269312, "bw_bytes": 3331288839, "bw": 3253211, "iops": 794.241152, "runtime": 5001, "total_ios": 3972, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 666267, "max": 9004398, "mean": 1085757.97709, "stddev": 367879.955303, "N": 3972}, "clat_ns": {"min": 9280, "max": 4582255, "mean": 155360.784995, "stddev": 114538.429118, "N": 3972, "percentile": {"1.000000": 110080, "5.000000": 121344, "10.000000": 124416, "20.000000": 128512, "30.000000": 132096, "40.000000": 136192, "50.000000": 140288, "60.000000": 146432, "70.000000": 152576, "80.000000": 164864, "90.000000": 189440, "95.000000": 218112, "99.000000": 292864, "99.500000": 440320, "99.900000": 1761280, "99.950000": 3555328, "99.990000": 4554752}}, "lat_ns": {"min": 862829, "max": 9232081, "mean": 1245685.988419, "stddev": 412837.788276, "N": 3972}, "bw_min": 3403776, "bw_max": 3518464, "bw_agg": 100.0, "bw_mean": 3467425.5, "bw_dev": 51355.369765, "bw_samples": 4, "iops_min": 831, "iops_max": 859, "iops_mean": 846.5, "iops_stddev": 12.556539, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 0.78, "sys_cpu": 34.78, "ctx": 15817, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.100705, "20": 0.226586, "50": 0.0, "100": 0.226586, "250": 97.004028, "500": 1.988922, "750": 0.125881, "1000": 0.075529}, "latency_ms": {"2": 0.20141, "4": 0.025176, "10": 0.025176, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 15685, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3694, "write_ticks": 0, "in_queue": 3693, "util": 83.605903}]} 2026-04-20 14:59:34.435681 2026-04-20 14:46:24.505276 -334 8 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697198, "timestamp_ms": 1776697198707, "time": "Mon Apr 20 14:59:58 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8845787136, "io_kbytes": 8638464, "bw_bytes": 1768450047, "bw": 1727001, "iops": 421.631347, "runtime": 5002, "total_ios": 2109, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1226952, "max": 47767346, "mean": 2123643.471788, "stddev": 1415837.82289, "N": 2109}, "clat_ns": {"min": 5750, "max": 16353789, "mean": 221497.393077, "stddev": 442348.450282, "N": 2109, "percentile": {"1.000000": 6112, "5.000000": 6560, "10.000000": 9536, "20.000000": 166912, "30.000000": 177152, "40.000000": 187392, "50.000000": 197632, "60.000000": 214016, "70.000000": 228352, "80.000000": 248832, "90.000000": 292864, "95.000000": 342016, "99.000000": 1073152, "99.500000": 2375680, "99.900000": 4489216, "99.950000": 5013504, "99.990000": 16318464}}, "lat_ns": {"min": 1385114, "max": 48175970, "mean": 2351592.821242, "stddev": 1534113.15266, "N": 2109}, "bw_min": 1420978, "bw_max": 1970176, "bw_agg": 98.755184, "bw_mean": 1705504.5, "bw_dev": 248984.384798, "bw_samples": 4, "iops_min": 346, "iops_max": 481, "iops_mean": 416.0, "iops_stddev": 61.237244, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 1.559688, "sys_cpu": 24.095181, "ctx": 8773, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 11.095306, "20": 4.55192, "50": 0.284495, "100": 0.047416, "250": 64.201043, "500": 17.733523, "750": 0.853485, "1000": 0.189663}, "latency_ms": {"2": 0.284495, "4": 0.56899, "10": 0.142248, "20": 0.047416, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8575, "read_merges": 0, "write_merges": 334, "read_ticks": 0, "write_ticks": 3737, "in_queue": 3736, "util": 89.843436}]} 2026-04-20 14:59:50.780439 2026-04-20 14:46:24.505276 -335 8 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697228, "timestamp_ms": 1776697228212, "time": "Mon Apr 20 15:00:28 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10247168, "io_kbytes": 10007, "bw_bytes": 2049023, "bw": 2000, "iops": 4001.9996, "runtime": 5001, "total_ios": 20014, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 82471, "max": 7672135, "mean": 146037.47182, "stddev": 295033.02967, "N": 20014}, "clat_ns": {"min": 4610, "max": 7837776, "mean": 92268.065804, "stddev": 151588.056116, "N": 20014, "percentile": {"1.000000": 4832, "5.000000": 5024, "10.000000": 5792, "20.000000": 63232, "30.000000": 72192, "40.000000": 80384, "50.000000": 87552, "60.000000": 90624, "70.000000": 94720, "80.000000": 104960, "90.000000": 128512, "95.000000": 164864, "99.000000": 288768, "99.500000": 440320, "99.900000": 2310144, "99.950000": 3489792, "99.990000": 5603328}}, "lat_ns": {"min": 140691, "max": 7991558, "mean": 240474.349505, "stddev": 323894.229623, "N": 20014}, "bw_min": 964, "bw_max": 2451, "bw_agg": 93.803144, "bw_mean": 1877.25, "bw_dev": 664.304837, "bw_samples": 4, "iops_min": 1928, "iops_max": 4902, "iops_mean": 3754.75, "iops_stddev": 1328.581041, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 9.9, "sys_cpu": 47.14, "ctx": 20025, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.146497, "20": 0.51464, "50": 0.034976, "100": 63.245728, "250": 22.679125, "500": 0.919356, "750": 0.134906, "1000": 0.079944}, "latency_ms": {"2": 0.134906, "4": 0.069951, "10": 0.039972, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 19417, "read_merges": 0, "write_merges": 2428, "read_ticks": 0, "write_ticks": 2517, "in_queue": 2517, "util": 75.210928}]} 2026-04-20 15:00:20.388217 2026-04-20 14:46:24.505276 -336 8 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697253, "timestamp_ms": 1776697253294, "time": "Mon Apr 20 15:00:53 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13423104, "io_kbytes": 13108, "bw_bytes": 2683547, "bw": 2620, "iops": 5241.303479, "runtime": 5002, "total_ios": 26217, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77991, "max": 1681107, "mean": 93559.830606, "stddev": 29658.298723, "N": 26217}, "clat_ns": {"min": 4370, "max": 12867876, "mean": 85084.931953, "stddev": 184998.736451, "N": 26217, "percentile": {"1.000000": 46848, "5.000000": 48896, "10.000000": 49920, "20.000000": 51456, "30.000000": 57088, "40.000000": 63744, "50.000000": 71168, "60.000000": 78336, "70.000000": 80384, "80.000000": 85504, "90.000000": 102912, "95.000000": 134144, "99.000000": 317440, "99.500000": 464896, "99.900000": 3096576, "99.950000": 4014080, "99.990000": 6586368}}, "lat_ns": {"min": 120031, "max": 13164529, "mean": 181227.724301, "stddev": 193398.094189, "N": 26217}, "bw_min": 2577, "bw_max": 3038, "bw_agg": 100.0, "bw_mean": 2823.5, "bw_dev": 225.971237, "bw_samples": 4, "iops_min": 5155, "iops_max": 6077, "iops_mean": 5647.75, "iops_stddev": 451.695602, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 16.953219, "sys_cpu": 54.238305, "ctx": 26058, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.198345, "20": 0.045772, "50": 10.661021, "100": 78.231682, "250": 9.463325, "500": 0.934508, "750": 0.133501, "1000": 0.061029}, "latency_ms": {"2": 0.095358, "4": 0.122058, "10": 0.049586, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 25974, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3193, "write_ticks": 0, "in_queue": 3194, "util": 81.64271}]} 2026-04-20 15:00:30.088774 2026-04-20 14:46:24.505276 -337 8 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697278, "timestamp_ms": 1776697278477, "time": "Mon Apr 20 15:01:18 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12851200, "io_kbytes": 12550, "bw_bytes": 2569726, "bw": 2509, "iops": 5018.996201, "runtime": 5001, "total_ios": 25100, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78871, "max": 3326302, "mean": 93226.444183, "stddev": 35706.384204, "N": 25100}, "clat_ns": {"min": 4580, "max": 7536373, "mean": 94891.516096, "stddev": 228500.349735, "N": 25100, "percentile": {"1.000000": 48896, "5.000000": 50432, "10.000000": 51968, "20.000000": 54016, "30.000000": 60672, "40.000000": 66048, "50.000000": 71168, "60.000000": 79360, "70.000000": 80384, "80.000000": 84480, "90.000000": 104960, "95.000000": 136192, "99.000000": 561152, "99.500000": 1564672, "99.900000": 3817472, "99.950000": 4882432, "99.990000": 5865472}}, "lat_ns": {"min": 119771, "max": 7670935, "mean": 190135.19988, "stddev": 234897.565262, "N": 25100}, "bw_min": 1142, "bw_max": 2912, "bw_agg": 95.676504, "bw_mean": 2401.0, "bw_dev": 846.251736, "bw_samples": 4, "iops_min": 2285, "iops_max": 5825, "iops_mean": 4802.75, "iops_stddev": 1692.314465, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.98, "sys_cpu": 59.98, "ctx": 24976, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.223108, "20": 0.059761, "50": 3.569721, "100": 84.944223, "250": 10.023904, "500": 0.131474, "750": 0.087649, "1000": 0.079681}, "latency_ms": {"2": 0.59761, "4": 0.195219, "10": 0.087649, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23879, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2881, "write_ticks": 0, "in_queue": 2881, "util": 72.861236}]} 2026-04-20 15:00:55.068007 2026-04-20 14:46:24.505276 -396 10 loader /usr/bin/iperf3 --time 40 --port 5201 --client 10.5.0.10 --json --version4 {"client_returncode": 1} 2026-04-20 18:20:45.054935 2026-04-20 18:15:48.846993 -397 10 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-20 18:20:46.489989 2026-04-20 18:20:46.489992 -398 10 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:20:44' --until '2026-04-20 18:20:46' 0 OOM records. 2026-04-20 18:20:44.944615 2026-04-20 18:20:46.204231 -338 8 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697288, "timestamp_ms": 1776697288177, "time": "Mon Apr 20 15:01:28 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6518272, "io_kbytes": 6365, "bw_bytes": 1303393, "bw": 1272, "iops": 2545.690862, "runtime": 5001, "total_ios": 12731, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 95181, "max": 5275242, "mean": 370691.769696, "stddev": 162056.918229, "N": 12731}, "clat_ns": {"min": 4470, "max": 587915, "mean": 7786.719425, "stddev": 17275.289518, "N": 12731, "percentile": {"1.000000": 4768, "5.000000": 4960, "10.000000": 5024, "20.000000": 5152, "30.000000": 5216, "40.000000": 5280, "50.000000": 5280, "60.000000": 5408, "70.000000": 5472, "80.000000": 5600, "90.000000": 7008, "95.000000": 9536, "99.000000": 110080, "99.500000": 126464, "99.900000": 201728, "99.950000": 232448, "99.990000": 585728}}, "lat_ns": {"min": 182551, "max": 5304762, "mean": 381983.426832, "stddev": 160966.619655, "N": 12731}, "bw_min": 1219, "bw_max": 1330, "bw_agg": 100.0, "bw_mean": 1290.25, "bw_dev": 48.856081, "bw_samples": 4, "iops_min": 2439, "iops_max": 2660, "iops_mean": 2581.0, "iops_stddev": 97.348172, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.12, "sys_cpu": 76.92, "ctx": 12750, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.276805, "20": 1.924436, "50": 0.054984, "100": 0.353468, "250": 1.358888, "500": 0.01571, "750": 0.01571, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 12579, "read_merges": 0, "write_merges": 21638, "read_ticks": 0, "write_ticks": 1830, "in_queue": 1830, "util": 85.358005}]} 2026-04-20 15:01:19.946757 2026-04-20 14:46:24.505276 -339 8 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697300, "timestamp_ms": 1776697300982, "time": "Mon Apr 20 15:01:40 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 62255104, "io_kbytes": 60796, "bw_bytes": 12448531, "bw": 12156, "iops": 3039.192162, "runtime": 5001, "total_ios": 15199, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93471, "max": 4536984, "mean": 108731.886308, "stddev": 69091.001166, "N": 15199}, "clat_ns": {"min": 5850, "max": 12039977, "mean": 207421.384696, "stddev": 282473.661141, "N": 15199, "percentile": {"1.000000": 138240, "5.000000": 146432, "10.000000": 150528, "20.000000": 158720, "30.000000": 162816, "40.000000": 168960, "50.000000": 173056, "60.000000": 177152, "70.000000": 185344, "80.000000": 201728, "90.000000": 234496, "95.000000": 280576, "99.000000": 905216, "99.500000": 2179072, "99.900000": 4358144, "99.950000": 5668864, "99.990000": 7241728}}, "lat_ns": {"min": 230892, "max": 12174819, "mean": 318649.307981, "stddev": 294461.067411, "N": 15199}, "bw_min": 12435, "bw_max": 14044, "bw_agg": 100.0, "bw_mean": 13414.75, "bw_dev": 699.038089, "bw_samples": 4, "iops_min": 3108, "iops_max": 3511, "iops_mean": 3353.25, "iops_stddev": 175.026427, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.18, "sys_cpu": 36.46, "ctx": 15210, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.302651, "20": 0.111849, "50": 0.0, "100": 0.0, "250": 91.5126, "500": 6.803079, "750": 0.203961, "1000": 0.10527}, "latency_ms": {"2": 0.375025, "4": 0.460557, "10": 0.118429, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 14970, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2083, "in_queue": 2082, "util": 77.219767}]} 2026-04-20 15:01:32.244166 2026-04-20 14:46:24.505276 -340 8 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697317, "timestamp_ms": 1776697317166, "time": "Mon Apr 20 15:01:57 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 101167104, "io_kbytes": 98796, "bw_bytes": 20229374, "bw": 19755, "iops": 4938.812238, "runtime": 5001, "total_ios": 24699, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78051, "max": 3933328, "mean": 94986.977327, "stddev": 39150.9714, "N": 24699}, "clat_ns": {"min": 4060, "max": 22437939, "mean": 97258.166403, "stddev": 273550.522436, "N": 24699, "percentile": {"1.000000": 45312, "5.000000": 48384, "10.000000": 49408, "20.000000": 51968, "30.000000": 59136, "40.000000": 63744, "50.000000": 70144, "60.000000": 77312, "70.000000": 80384, "80.000000": 86528, "90.000000": 105984, "95.000000": 140288, "99.000000": 921600, "99.500000": 1662976, "99.900000": 3883008, "99.950000": 4751360, "99.990000": 5734400}}, "lat_ns": {"min": 121461, "max": 22565700, "mean": 194339.417993, "stddev": 281684.757671, "N": 24699}, "bw_min": 7828, "bw_max": 23372, "bw_agg": 96.146603, "bw_mean": 18994.5, "bw_dev": 7483.108334, "bw_samples": 4, "iops_min": 1957, "iops_max": 5843, "iops_mean": 4748.5, "iops_stddev": 1870.717955, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.92, "sys_cpu": 59.98, "ctx": 24565, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.153852, "20": 0.044536, "50": 11.506539, "100": 76.363416, "250": 10.328353, "500": 0.376533, "750": 0.141706, "1000": 0.121462}, "latency_ms": {"2": 0.627556, "4": 0.25912, "10": 0.072877, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24345, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2962, "write_ticks": 0, "in_queue": 2962, "util": 74.47782}]} 2026-04-20 15:01:42.462923 2026-04-20 14:46:24.505276 -341 8 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697334, "timestamp_ms": 1776697334162, "time": "Mon Apr 20 15:02:14 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 98254848, "io_kbytes": 95952, "bw_bytes": 19647040, "bw": 19186, "iops": 4796.640672, "runtime": 5001, "total_ios": 23988, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79681, "max": 5269151, "mean": 96749.753168, "stddev": 47734.948044, "N": 23988}, "clat_ns": {"min": 4750, "max": 9182180, "mean": 99451.359471, "stddev": 245663.890215, "N": 23988, "percentile": {"1.000000": 45312, "5.000000": 48384, "10.000000": 49920, "20.000000": 54528, "30.000000": 61184, "40.000000": 67072, "50.000000": 73216, "60.000000": 79360, "70.000000": 82432, "80.000000": 90624, "90.000000": 114176, "95.000000": 144384, "99.000000": 880640, "99.500000": 1662976, "99.900000": 3883008, "99.950000": 5210112, "99.990000": 7569408}}, "lat_ns": {"min": 123281, "max": 9274861, "mean": 198311.958938, "stddev": 253722.649605, "N": 23988}, "bw_min": 13590, "bw_max": 22912, "bw_agg": 98.412626, "bw_mean": 18882.25, "bw_dev": 4627.639886, "bw_samples": 4, "iops_min": 3397, "iops_max": 5728, "iops_mean": 4720.25, "iops_stddev": 1157.233879, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 12.8, "sys_cpu": 53.86, "ctx": 23817, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.204269, "20": 0.045856, "50": 9.308821, "100": 75.304319, "250": 13.556778, "500": 0.387694, "750": 0.129231, "1000": 0.141738}, "latency_ms": {"2": 0.56695, "4": 0.262631, "10": 0.091713, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23365, "write_ios": 1, "read_merges": 0, "write_merges": 1, "read_ticks": 2897, "write_ticks": 448, "in_queue": 3344, "util": 74.192902}]} 2026-04-20 15:01:59.141476 2026-04-20 14:46:24.505276 -342 8 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697343, "timestamp_ms": 1776697343964, "time": "Mon Apr 20 15:02:23 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 45395968, "io_kbytes": 44332, "bw_bytes": 9077378, "bw": 8864, "iops": 2216.156769, "runtime": 5001, "total_ios": 11083, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 97871, "max": 811407, "mean": 114719.882974, "stddev": 22630.671626, "N": 11083}, "clat_ns": {"min": 5930, "max": 7061069, "mean": 320068.071912, "stddev": 378735.08851, "N": 11083, "percentile": {"1.000000": 175104, "5.000000": 191488, "10.000000": 201728, "20.000000": 216064, "30.000000": 230400, "40.000000": 248832, "50.000000": 272384, "60.000000": 288768, "70.000000": 301056, "80.000000": 317440, "90.000000": 370688, "95.000000": 428032, "99.000000": 2244608, "99.500000": 3653632, "99.900000": 4882432, "99.950000": 5668864, "99.990000": 6717440}}, "lat_ns": {"min": 258373, "max": 7206720, "mean": 437435.619507, "stddev": 385104.430705, "N": 11083}, "bw_min": 6504, "bw_max": 10453, "bw_agg": 98.706917, "bw_mean": 8750.5, "bw_dev": 1949.649627, "bw_samples": 4, "iops_min": 1626, "iops_max": 2613, "iops_mean": 2187.5, "iops_stddev": 487.273024, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.56, "sys_cpu": 25.76, "ctx": 11087, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.06316, "20": 0.018046, "50": 0.0, "100": 0.0, "250": 39.998195, "500": 57.231796, "750": 0.586484, "1000": 0.324822}, "latency_ms": {"2": 0.676712, "4": 0.794009, "10": 0.306776, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10784, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 1607, "in_queue": 1607, "util": 82.10484}]} 2026-04-20 15:02:15.821989 2026-04-20 14:46:24.505276 -343 8 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697356, "timestamp_ms": 1776697356645, "time": "Mon Apr 20 15:02:36 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 7, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6830424064, "io_kbytes": 6670336, "bw_bytes": 1048736997, "bw": 1024157, "iops": 500.07677, "runtime": 6513, "total_ios": 3257, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 523775, "max": 2677539253, "mean": 1635210.146454, "stddev": 46938493.14485, "N": 3257}, "clat_ns": {"min": 8170, "max": 5549625, "mean": 344474.03623, "stddev": 294466.544271, "N": 3257, "percentile": {"1.000000": 209920, "5.000000": 228352, "10.000000": 236544, "20.000000": 252928, "30.000000": 264192, "40.000000": 280576, "50.000000": 301056, "60.000000": 321536, "70.000000": 337920, "80.000000": 366592, "90.000000": 423936, "95.000000": 501760, "99.000000": 1351680, "99.500000": 2736128, "99.900000": 4292608, "99.950000": 5079040, "99.990000": 5537792}}, "lat_ns": {"min": 759048, "max": 2678111178, "mean": 1984747.028861, "stddev": 46943918.390018, "N": 3257}, "bw_min": 1180515, "bw_max": 1949696, "bw_agg": 100.0, "bw_mean": 1666776.75, "bw_dev": 335421.2756, "bw_samples": 4, "iops_min": 576, "iops_max": 952, "iops_mean": 813.75, "iops_stddev": 163.984501, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 6512, "usr_cpu": 5.159705, "sys_cpu": 11.670762, "ctx": 6528, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.030703, "20": 0.092109, "50": 0.061406, "100": 0.0, "250": 18.391158, "500": 76.266503, "750": 3.315935, "1000": 0.614062}, "latency_ms": {"2": 0.552656, "4": 0.460547, "10": 0.214922, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 6513, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2754, "in_queue": 2755, "util": 54.267634}]} 2026-04-20 15:02:26.683528 2026-04-20 14:46:24.505276 -344 8 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697372, "timestamp_ms": 1776697372124, "time": "Mon Apr 20 15:02:52 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14216593408, "io_kbytes": 13883392, "bw_bytes": 2842750131, "bw": 2776123, "iops": 1355.528894, "runtime": 5001, "total_ios": 6779, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 228222, "max": 5587255, "mean": 525326.407435, "stddev": 301191.4313, "N": 6779}, "clat_ns": {"min": 6340, "max": 13761525, "mean": 198219.67178, "stddev": 335916.336556, "N": 6779, "percentile": {"1.000000": 98816, "5.000000": 110080, "10.000000": 119296, "20.000000": 136192, "30.000000": 146432, "40.000000": 154624, "50.000000": 162816, "60.000000": 175104, "70.000000": 185344, "80.000000": 201728, "90.000000": 230400, "95.000000": 268288, "99.000000": 839680, "99.500000": 2473984, "99.900000": 4489216, "99.950000": 5865472, "99.990000": 13697024}}, "lat_ns": {"min": 469925, "max": 14374291, "mean": 727084.917834, "stddev": 479683.931201, "N": 6779}, "bw_min": 2123776, "bw_max": 3171228, "bw_agg": 100.0, "bw_mean": 2828776.25, "bw_dev": 478358.157934, "bw_samples": 4, "iops_min": 1037, "iops_max": 1548, "iops_mean": 1381.0, "iops_stddev": 233.382376, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.02, "sys_cpu": 34.3, "ctx": 13517, "majf": 0, "minf": 535, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.132763, "20": 0.073757, "50": 0.0, "100": 1.047352, "250": 92.063726, "500": 5.354772, "750": 0.295029, "1000": 0.118012}, "latency_ms": {"2": 0.368786, "4": 0.354035, "10": 0.177017, "20": 0.014751, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13027, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3182, "write_ticks": 0, "in_queue": 3182, "util": 80.989056}]} 2026-04-20 15:02:38.4866 2026-04-20 14:46:24.505276 -345 8 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697388, "timestamp_ms": 1776697388723, "time": "Mon Apr 20 15:03:08 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15818817536, "io_kbytes": 15448064, "bw_bytes": 3163130881, "bw": 3088995, "iops": 1508.29834, "runtime": 5001, "total_ios": 7543, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 185512, "max": 5760646, "mean": 478947.849795, "stddev": 177563.848549, "N": 7543}, "clat_ns": {"min": 5340, "max": 5580184, "mean": 169863.318043, "stddev": 182625.951757, "N": 7543, "percentile": {"1.000000": 97792, "5.000000": 108032, "10.000000": 116224, "20.000000": 132096, "30.000000": 140288, "40.000000": 148480, "50.000000": 154624, "60.000000": 162816, "70.000000": 173056, "80.000000": 183296, "90.000000": 197632, "95.000000": 224256, "99.000000": 354304, "99.500000": 700416, "99.900000": 3522560, "99.950000": 4227072, "99.990000": 5603328}}, "lat_ns": {"min": 467375, "max": 6731596, "mean": 651985.900835, "stddev": 279361.887765, "N": 7543}, "bw_min": 3197826, "bw_max": 3248128, "bw_agg": 100.0, "bw_mean": 3230349.5, "bw_dev": 22246.001026, "bw_samples": 4, "iops_min": 1561, "iops_max": 1586, "iops_mean": 1577.0, "iops_stddev": 10.984838, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.2, "sys_cpu": 43.5, "ctx": 15065, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.185603, "20": 0.053029, "50": 0.013257, "100": 1.33899, "250": 94.935702, "500": 2.82381, "750": 0.159088, "1000": 0.132573}, "latency_ms": {"2": 0.159088, "4": 0.119316, "10": 0.079544, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14856, "write_ios": 24, "read_merges": 0, "write_merges": 17, "read_ticks": 3394, "write_ticks": 14, "in_queue": 3413, "util": 75.990299}]} 2026-04-20 15:02:53.653123 2026-04-20 14:46:24.505276 -346 8 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697398, "timestamp_ms": 1776697398276, "time": "Mon Apr 20 15:03:18 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8715763712, "io_kbytes": 8511488, "bw_bytes": 1742804181, "bw": 1701957, "iops": 831.033793, "runtime": 5001, "total_ios": 4156, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 498055, "max": 6943958, "mean": 819885.474254, "stddev": 480054.934252, "N": 4156}, "clat_ns": {"min": 7150, "max": 5971569, "mean": 362292.993263, "stddev": 348278.342062, "N": 4156, "percentile": {"1.000000": 201728, "5.000000": 228352, "10.000000": 238592, "20.000000": 252928, "30.000000": 268288, "40.000000": 280576, "50.000000": 296960, "60.000000": 317440, "70.000000": 342016, "80.000000": 378880, "90.000000": 444416, "95.000000": 561152, "99.000000": 1925120, "99.500000": 3063808, "99.900000": 4489216, "99.950000": 5406720, "99.990000": 5996544}}, "lat_ns": {"min": 687947, "max": 9883827, "mean": 1187133.851781, "stddev": 669849.607184, "N": 4156}, "bw_min": 1458486, "bw_max": 1904783, "bw_agg": 97.247216, "bw_mean": 1655106.75, "bw_dev": 199464.637996, "bw_samples": 4, "iops_min": 712, "iops_max": 930, "iops_mean": 808.0, "iops_stddev": 97.447422, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.44, "sys_cpu": 21.4, "ctx": 8325, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.024062, "20": 0.120308, "50": 0.0, "100": 0.0, "250": 17.901829, "500": 75.216554, "750": 3.825794, "1000": 0.914341}, "latency_ms": {"2": 1.034649, "4": 0.697786, "10": 0.264678, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8114, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3460, "in_queue": 3460, "util": 78.971681}]} 2026-04-20 15:03:10.402191 2026-04-20 14:46:24.505276 -347 8 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697417, "timestamp_ms": 1776697417908, "time": "Mon Apr 20 15:03:37 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 8, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8422162432, "io_kbytes": 8224768, "bw_bytes": 1167636549, "bw": 1140270, "iops": 278.386247, "runtime": 7213, "total_ios": 2008, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1319933, "max": 2522599869, "mean": 3300303.630976, "stddev": 56263959.03055, "N": 2008}, "clat_ns": {"min": 5650, "max": 3760626, "mean": 263649.733068, "stddev": 189477.591324, "N": 2008, "percentile": {"1.000000": 154624, "5.000000": 171008, "10.000000": 177152, "20.000000": 189440, "30.000000": 203776, "40.000000": 220160, "50.000000": 234496, "60.000000": 248832, "70.000000": 268288, "80.000000": 288768, "90.000000": 342016, "95.000000": 403456, "99.000000": 921600, "99.500000": 1466368, "99.900000": 2867200, "99.950000": 2867200, "99.990000": 3751936}}, "lat_ns": {"min": 1492845, "max": 2523059593, "mean": 3571387.712151, "stddev": 56269257.081969, "N": 2008}, "bw_min": 1294336, "bw_max": 1923196, "bw_agg": 100.0, "bw_mean": 1643441.0, "bw_dev": 250537.927809, "bw_samples": 5, "iops_min": 316, "iops_max": 469, "iops_mean": 401.0, "iops_stddev": 61.081912, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 7213, "usr_cpu": 4.408707, "sys_cpu": 12.144739, "ctx": 8049, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.099602, "20": 0.149402, "50": 0.099602, "100": 0.099602, "250": 59.661355, "500": 37.400398, "750": 1.24502, "1000": 0.348606}, "latency_ms": {"2": 0.59761, "4": 0.298805, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8029, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3496, "in_queue": 3496, "util": 57.318436}]} 2026-04-20 15:03:27.035375 2026-04-20 14:46:24.505276 -348 8 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697434, "timestamp_ms": 1776697434755, "time": "Mon Apr 20 15:03:54 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15237906432, "io_kbytes": 14880768, "bw_bytes": 3046971892, "bw": 2975558, "iops": 726.454709, "runtime": 5001, "total_ios": 3633, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 734387, "max": 10774655, "mean": 1186077.41646, "stddev": 495650.087406, "N": 3633}, "clat_ns": {"min": 8650, "max": 4079640, "mean": 170744.5951, "stddev": 177059.136688, "N": 3633, "percentile": {"1.000000": 99840, "5.000000": 118272, "10.000000": 123392, "20.000000": 128512, "30.000000": 136192, "40.000000": 140288, "50.000000": 148480, "60.000000": 158720, "70.000000": 173056, "80.000000": 189440, "90.000000": 209920, "95.000000": 236544, "99.000000": 346112, "99.500000": 1036288, "99.900000": 3358720, "99.950000": 4014080, "99.990000": 4079616}}, "lat_ns": {"min": 846419, "max": 11040818, "mean": 1362344.835673, "stddev": 556732.140896, "N": 3633}, "bw_min": 2363392, "bw_max": 3133440, "bw_agg": 96.057194, "bw_mean": 2858238.5, "bw_dev": 350483.475975, "bw_samples": 4, "iops_min": 577, "iops_max": 765, "iops_mean": 697.75, "iops_stddev": 85.515593, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.78, "sys_cpu": 27.42, "ctx": 14420, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.055051, "20": 0.798238, "50": 0.110102, "100": 0.055051, "250": 95.127993, "500": 3.165428, "750": 0.137627, "1000": 0.027525}, "latency_ms": {"2": 0.30278, "4": 0.165153, "10": 0.055051, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14283, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3571, "write_ticks": 0, "in_queue": 3571, "util": 86.219924}]} 2026-04-20 15:03:39.925542 2026-04-20 14:46:24.505276 -349 8 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697451, "timestamp_ms": 1776697451843, "time": "Mon Apr 20 15:04:11 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14608760832, "io_kbytes": 14266368, "bw_bytes": 2921167932, "bw": 2852703, "iops": 696.460708, "runtime": 5001, "total_ios": 3483, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 754808, "max": 8750866, "mean": 1244577.43095, "stddev": 559347.323749, "N": 3483}, "clat_ns": {"min": 5540, "max": 3779447, "mean": 171402.322136, "stddev": 113614.076968, "N": 3483, "percentile": {"1.000000": 110080, "5.000000": 123392, "10.000000": 127488, "20.000000": 134144, "30.000000": 140288, "40.000000": 144384, "50.000000": 152576, "60.000000": 166912, "70.000000": 177152, "80.000000": 191488, "90.000000": 218112, "95.000000": 248832, "99.000000": 346112, "99.500000": 569344, "99.900000": 2023424, "99.950000": 2736128, "99.990000": 3784704}}, "lat_ns": {"min": 876898, "max": 8942848, "mean": 1421362.522251, "stddev": 599567.978225, "N": 3483}, "bw_min": 2279192, "bw_max": 3366912, "bw_agg": 96.158273, "bw_mean": 2743110.5, "bw_dev": 461694.83787, "bw_samples": 4, "iops_min": 556, "iops_max": 822, "iops_mean": 669.5, "iops_stddev": 112.917374, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.34, "sys_cpu": 29.34, "ctx": 13857, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.114844, "20": 0.373241, "50": 0.057422, "100": 0.0, "250": 94.516222, "500": 4.392765, "750": 0.172265, "1000": 0.057422}, "latency_ms": {"2": 0.200976, "4": 0.114844, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13846, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3544, "write_ticks": 0, "in_queue": 3544, "util": 85.235561}]} 2026-04-20 15:03:56.56733 2026-04-20 14:46:24.505276 -350 8 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697461, "timestamp_ms": 1776697461715, "time": "Mon Apr 20 15:04:21 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9370075136, "io_kbytes": 9150464, "bw_bytes": 1872517013, "bw": 1828629, "iops": 446.442846, "runtime": 5004, "total_ios": 2234, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1250252, "max": 9527253, "mean": 1950443.774396, "stddev": 846114.461883, "N": 2234}, "clat_ns": {"min": 11910, "max": 3867068, "mean": 264740.893465, "stddev": 254270.026405, "N": 2234, "percentile": {"1.000000": 154624, "5.000000": 166912, "10.000000": 173056, "20.000000": 181248, "30.000000": 187392, "40.000000": 195584, "50.000000": 207872, "60.000000": 226304, "70.000000": 252928, "80.000000": 292864, "90.000000": 358400, "95.000000": 440320, "99.000000": 1253376, "99.500000": 2310144, "99.900000": 3620864, "99.950000": 3653632, "99.990000": 3883008}}, "lat_ns": {"min": 1411814, "max": 10400492, "mean": 2221166.223814, "stddev": 936073.732511, "N": 2234}, "bw_min": 1794048, "bw_max": 1955932, "bw_agg": 100.0, "bw_mean": 1858071.0, "bw_dev": 69902.948827, "bw_samples": 4, "iops_min": 438, "iops_max": 477, "iops_mean": 453.5, "iops_stddev": 16.822604, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5004, "usr_cpu": 2.53797, "sys_cpu": 21.482814, "ctx": 8952, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.089526, "50": 0.044763, "100": 0.0, "250": 68.487019, "500": 28.066249, "750": 1.611459, "1000": 0.313339}, "latency_ms": {"2": 0.716204, "4": 0.671441, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8765, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3760, "in_queue": 3759, "util": 88.924559}]} 2026-04-20 15:04:13.376695 2026-04-20 14:46:24.505276 -351 8 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 15:04:27.932774 2026-04-20 15:04:27.932777 -354 8 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 275MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260420-150435Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:04:40.269744 2026-04-20 14:46:24.505276 -355 8 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 275MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260420-150435Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697514, "timestamp_ms": 1776697514732, "time": "Mon Apr 20 15:05:14 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 16, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "275MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260420-150435Z/testfiles", "offset_increment": "3k", "bs": "1M", "iodepth": "1", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5266997248, "io_kbytes": 5143552, "bw_bytes": 352260383, "bw": 344004, "iops": 335.94168, "runtime": 14952, "total_ios": 5023, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 151812, "max": 7211054549, "mean": 2297464.744376, "stddev": 101740829.749015, "N": 5023}, "clat_ns": {"min": 7410, "max": 24278977, "mean": 645518.306192, "stddev": 1147965.469104, "N": 5023, "percentile": {"1.000000": 8384, "5.000000": 9024, "10.000000": 9920, "20.000000": 321536, "30.000000": 362496, "40.000000": 423936, "50.000000": 485376, "60.000000": 528384, "70.000000": 585728, "80.000000": 684032, "90.000000": 921600, "95.000000": 1679360, "99.000000": 5406720, "99.500000": 6914048, "99.900000": 20578304, "99.950000": 21889024, "99.990000": 24248320}}, "lat_ns": {"min": 435514, "max": 7214924537, "mean": 2951099.737408, "stddev": 101791370.301828, "N": 5023}, "bw_min": 487960, "bw_max": 807936, "bw_agg": 100.0, "bw_mean": 642428.375, "bw_dev": 99423.040376, "bw_samples": 8, "iops_min": 476, "iops_max": 789, "iops_mean": 627.125, "iops_stddev": 97.192647, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 14951, "usr_cpu": 3.504782, "sys_cpu": 8.628185, "ctx": 8323, "majf": 0, "minf": 32, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 10.59128, "20": 5.415091, "50": 0.139359, "100": 0.0, "250": 0.318535, "500": 36.770854, "750": 30.838145, "1000": 7.326299}, "latency_ms": {"2": 4.300219, "4": 2.608003, "10": 1.493132, "20": 0.079634, "50": 0.119451, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 149, "write_ios": 10080, "read_merges": 0, "write_merges": 0, "read_ticks": 125, "write_ticks": 4643, "in_queue": 4768, "util": 29.817159}]} 2026-04-20 15:04:40.329381 2026-04-20 14:46:24.505276 -356 8 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 275MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260420-150435Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697514, "timestamp_ms": 1776697514889, "time": "Mon Apr 20 15:05:14 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 16, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "large_testfile", "size": "275MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260420-150435Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5304745984, "io_kbytes": 5180416, "bw_bytes": 361088148, "bw": 352625, "iops": 344.360493, "runtime": 14691, "total_ios": 5059, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 145622, "max": 27218706, "mean": 818290.559992, "stddev": 1307501.524918, "N": 5059}, "clat_ns": {"min": 6540, "max": 7207077949, "mean": 2059023.040324, "stddev": 101322484.56279, "N": 5059, "percentile": {"1.000000": 8096, "5.000000": 9024, "10.000000": 11072, "20.000000": 329728, "30.000000": 366592, "40.000000": 428032, "50.000000": 481280, "60.000000": 522240, "70.000000": 577536, "80.000000": 684032, "90.000000": 929792, "95.000000": 1646592, "99.000000": 4751360, "99.500000": 5996544, "99.900000": 10420224, "99.950000": 14876672, "99.990000": 7214202880}}, "lat_ns": {"min": 375474, "max": 7207257181, "mean": 2883494.559992, "stddev": 101321081.489826, "N": 5059}, "bw_min": 378501, "bw_max": 829440, "bw_agg": 100.0, "bw_mean": 647302.125, "bw_dev": 137080.828209, "bw_samples": 8, "iops_min": 369, "iops_max": 810, "iops_mean": 632.0, "iops_stddev": 134.067147, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 14690, "usr_cpu": 3.253914, "sys_cpu": 8.672566, "ctx": 8513, "majf": 0, "minf": 28, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 8.914805, "20": 2.925479, "50": 0.237201, "100": 0.019767, "250": 0.533702, "500": 41.45088, "750": 29.768729, "1000": 7.274165}, "latency_ms": {"2": 4.704487, "4": 2.569678, "10": 1.46274, "20": 0.098834, "50": 0.019767, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.019767}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 149, "write_ios": 10080, "read_merges": 0, "write_merges": 0, "read_ticks": 125, "write_ticks": 4643, "in_queue": 4768, "util": 29.75538}]} 2026-04-20 15:04:40.371955 2026-04-20 14:46:24.505276 -357 8 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 275MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260420-150435Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:20.531621 2026-04-20 14:46:24.505276 -358 8 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 275MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260420-150435Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:19.980854 2026-04-20 14:46:24.505276 -359 8 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 275MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260420-150435Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:04.285178 2026-04-20 14:46:24.505276 -360 8 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 275MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260420-150435Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:38.662635 2026-04-20 14:46:24.505276 -361 8 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 275MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260420-150435Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:38.662086 2026-04-20 14:46:24.505276 -362 8 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 275MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260420-150435Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:40.028727 2026-04-20 14:46:24.505276 -363 8 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 275MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260420-150435Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:06:13.583584 2026-04-20 14:46:24.505276 -399 10 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:20:44' --until '2026-04-20 18:20:46' 0 Systemd errors records 2026-04-20 18:20:44.944615 2026-04-20 18:20:46.204231 -400 10 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 1024000 --length 64 {"pps": 2000, "datagram_size_bytes": 64, "bitrate_bps": 1024000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:47.874064 2026-04-20 18:15:48.846993 -364 8 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 275MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260420-150435Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:55.19431 2026-04-20 14:46:24.505276 -365 8 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 275MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260420-150435Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697602, "timestamp_ms": 1776697602911, "time": "Mon Apr 20 15:06:42 2026", "jobs": [{"jobname": "rand_read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "rand_read_4k", "numjobs": "1", "filename": "small_testfile", "size": "275MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260420-150435Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 132141056, "io_kbytes": 129044, "bw_bytes": 11010837, "bw": 10752, "iops": 2688.192651, "runtime": 12001, "total_ios": 32261, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79040, "max": 9166240, "mean": 106909.888937, "stddev": 88535.269456, "N": 32261}, "clat_ns": {"min": 4290, "max": 21721262, "mean": 251064.336629, "stddev": 737609.523739, "N": 32261, "percentile": {"1.000000": 47872, "5.000000": 51968, "10.000000": 55040, "20.000000": 63744, "30.000000": 70144, "40.000000": 77312, "50.000000": 80384, "60.000000": 85504, "70.000000": 104960, "80.000000": 128512, "90.000000": 187392, "95.000000": 1417216, "99.000000": 3850240, "99.500000": 4292608, "99.900000": 6193152, "99.950000": 7307264, "99.990000": 21364736}}, "lat_ns": {"min": 127052, "max": 21831363, "mean": 360201.207526, "stddev": 759515.428668, "N": 32261}, "bw_min": 3572, "bw_max": 22773, "bw_agg": 96.319362, "bw_mean": 10357.0, "bw_dev": 8153.8363, "bw_samples": 11, "iops_min": 893, "iops_max": 5693, "iops_mean": 2589.090909, "iops_stddev": 2038.380409, "iops_samples": 11}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 9.275, "sys_cpu": 33.0, "ctx": 32253, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.10849, "20": 0.074393, "50": 2.817644, "100": 65.152971, "250": 24.128204, "500": 1.118998, "750": 0.303772, "1000": 0.353368}, "latency_ms": {"2": 2.423979, "4": 2.848641, "10": 0.638542, "20": 0.018598, "50": 0.012399, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 31423, "write_ios": 11, "read_merges": 0, "write_merges": 0, "read_ticks": 4487, "write_ticks": 6, "in_queue": 4496, "util": 47.139742}]} 2026-04-20 15:06:14.933623 2026-04-20 14:46:24.505276 -366 8 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 15:06:48.607537 2026-04-20 15:06:48.607541 -367 8 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 15:04:32' --until '2026-04-20 15:06:46' 46 OOM records. 2026-04-20 15:04:32.749246 2026-04-20 15:06:46.063497 -368 8 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 15:04:32' --until '2026-04-20 15:06:46' 0 Systemd errors records 2026-04-20 15:04:32.749246 2026-04-20 15:06:46.063497 -369 8 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260420-150653Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697623, "timestamp_ms": 1776697623518, "time": "Mon Apr 20 15:07:03 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260420-150653Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 11064573952, "io_kbytes": 10805248, "bw_bytes": 2212472295, "bw": 2160617, "iops": 2109.978004, "runtime": 5001, "total_ios": 10552, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 138751, "max": 11797336, "mean": 173169.336619, "stddev": 176955.526712, "N": 10552}, "clat_ns": {"min": 6240, "max": 7557833, "mean": 285449.183472, "stddev": 194833.462783, "N": 10552, "percentile": {"1.000000": 197632, "5.000000": 220160, "10.000000": 226304, "20.000000": 236544, "30.000000": 242688, "40.000000": 250880, "50.000000": 259072, "60.000000": 268288, "70.000000": 284672, "80.000000": 301056, "90.000000": 342016, "95.000000": 387072, "99.000000": 749568, "99.500000": 921600, "99.900000": 3096576, "99.950000": 5341184, "99.990000": 6520832}}, "lat_ns": {"min": 340943, "max": 12501483, "mean": 461790.453469, "stddev": 269677.724579, "N": 10552}, "bw_min": 1626533, "bw_max": 2343640, "bw_agg": 98.910197, "bw_mean": 2137071.25, "bw_dev": 343739.628622, "bw_samples": 4, "iops_min": 1588, "iops_max": 2288, "iops_mean": 2086.5, "iops_stddev": 335.664019, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.5, "sys_cpu": 33.34, "ctx": 10642, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.037908, "20": 0.246399, "50": 0.0, "100": 0.0, "250": 38.466641, "500": 59.401061, "750": 0.833965, "1000": 0.597043}, "latency_ms": {"2": 0.236922, "4": 0.113723, "10": 0.066338, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 2, "write_ios": 10302, "read_merges": 0, "write_merges": 0, "read_ticks": 22, "write_ticks": 3225, "in_queue": 3247, "util": 63.73892}]} 2026-04-20 15:06:55.372402 2026-04-20 14:46:24.505276 -370 8 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260420-150653Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697633, "timestamp_ms": 1776697633272, "time": "Mon Apr 20 15:07:13 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260420-150653Z/testfiles", "bs": "256k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 3878420480, "io_kbytes": 3787520, "bw_bytes": 775528990, "bw": 757352, "iops": 2958.408318, "runtime": 5001, "total_ios": 14795, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84891, "max": 570698058, "mean": 163764.48584, "stddev": 4691840.458167, "N": 14795}, "clat_ns": {"min": 4710, "max": 121167454, "mean": 161409.660764, "stddev": 1014181.902058, "N": 14795, "percentile": {"1.000000": 93696, "5.000000": 110080, "10.000000": 113152, "20.000000": 118272, "30.000000": 121344, "40.000000": 125440, "50.000000": 129536, "60.000000": 134144, "70.000000": 140288, "80.000000": 150528, "90.000000": 189440, "95.000000": 250880, "99.000000": 374784, "99.500000": 716800, "99.900000": 3915776, "99.950000": 4358144, "99.990000": 8847360}}, "lat_ns": {"min": 207332, "max": 571412765, "mean": 328064.794525, "stddev": 4804629.016406, "N": 14795}, "bw_min": 200704, "bw_max": 965120, "bw_agg": 93.096408, "bw_mean": 705068.25, "bw_dev": 342840.333656, "bw_samples": 4, "iops_min": 784, "iops_max": 3770, "iops_mean": 2754.0, "iops_stddev": 1339.124839, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 11.8, "sys_cpu": 32.36, "ctx": 14825, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.628591, "20": 0.229807, "50": 0.0, "100": 0.277121, "250": 93.849273, "500": 4.359581, "750": 0.182494, "1000": 0.101386}, "latency_ms": {"2": 0.162217, "4": 0.135181, "10": 0.06759, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 14352, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3927, "in_queue": 4618, "util": 79.871563}]} 2026-04-20 15:07:05.412803 2026-04-20 14:46:24.505276 -371 8 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260420-150653Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697643, "timestamp_ms": 1776697643126, "time": "Mon Apr 20 15:07:23 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_64k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260420-150653Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1268056064, "io_kbytes": 1238336, "bw_bytes": 253560500, "bw": 247617, "iops": 3869.026195, "runtime": 5001, "total_ios": 19349, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 89691, "max": 8324521, "mean": 108887.206419, "stddev": 87584.208965, "N": 19349}, "clat_ns": {"min": 4980, "max": 7957028, "mean": 137318.414027, "stddev": 285998.150423, "N": 19349, "percentile": {"1.000000": 72192, "5.000000": 75264, "10.000000": 80384, "20.000000": 84480, "30.000000": 88576, "40.000000": 90624, "50.000000": 93696, "60.000000": 98816, "70.000000": 109056, "80.000000": 140288, "90.000000": 183296, "95.000000": 216064, "99.000000": 741376, "99.500000": 2072576, "99.900000": 4685824, "99.950000": 5406720, "99.990000": 6979584}}, "lat_ns": {"min": 158591, "max": 8340382, "mean": 248736.948318, "stddev": 303005.961127, "N": 19349}, "bw_min": 217574, "bw_max": 312256, "bw_agg": 100.0, "bw_mean": 265281.25, "bw_dev": 51021.655529, "bw_samples": 4, "iops_min": 3399, "iops_max": 4879, "iops_mean": 4144.75, "iops_stddev": 797.526332, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.52, "sys_cpu": 41.58, "ctx": 19345, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.304925, "20": 0.082692, "50": 0.010336, "100": 61.693111, "250": 34.363533, "500": 2.346374, "750": 0.206729, "1000": 0.129206}, "latency_ms": {"2": 0.351439, "4": 0.361776, "10": 0.149879, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 1, "write_ios": 18771, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2584, "in_queue": 2585, "util": 73.253012}]} 2026-04-20 15:07:14.804912 2026-04-20 14:46:24.505276 -372 8 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260420-150653Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697653, "timestamp_ms": 1776697653499, "time": "Mon Apr 20 15:07:33 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_read_1M", "numjobs": "1", "size": "100MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260420-150653Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13970178048, "io_kbytes": 13642752, "bw_bytes": 2792918442, "bw": 2727459, "iops": 2663.534586, "runtime": 5002, "total_ios": 13323, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 131492, "max": 7925398, "mean": 149617.576372, "stddev": 82150.568798, "N": 13323}, "clat_ns": {"min": 6550, "max": 8131979, "mean": 214424.564963, "stddev": 213200.214014, "N": 13323, "percentile": {"1.000000": 140288, "5.000000": 158720, "10.000000": 164864, "20.000000": 173056, "30.000000": 179200, "40.000000": 185344, "50.000000": 191488, "60.000000": 197632, "70.000000": 203776, "80.000000": 216064, "90.000000": 246784, "95.000000": 292864, "99.000000": 544768, "99.500000": 1220608, "99.900000": 3620864, "99.950000": 4423680, "99.990000": 7438336}}, "lat_ns": {"min": 270572, "max": 8596684, "mean": 366398.000225, "stddev": 233078.725103, "N": 13323}, "bw_min": 2434685, "bw_max": 2938880, "bw_agg": 100.0, "bw_mean": 2791583.25, "bw_dev": 239329.988275, "bw_samples": 4, "iops_min": 2377, "iops_max": 2870, "iops_mean": 2726.0, "iops_stddev": 234.029913, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 4.959008, "sys_cpu": 51.069786, "ctx": 13343, "majf": 0, "minf": 277, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.052541, "20": 0.195151, "50": 0.0, "100": 0.01, "250": 90.054792, "500": 8.646701, "750": 0.240186, "1000": 0.157622}, "latency_ms": {"2": 0.375291, "4": 0.195151, "10": 0.075058, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13115, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3235, "write_ticks": 0, "in_queue": 3234, "util": 82.124037}]} 2026-04-20 15:07:24.916949 2026-04-20 14:46:24.505276 -373 9 loader /usr/bin/iperf3 --time 40 --port 5201 --client 10.5.0.13 --json --version4 {"client_returncode": 1} 2026-04-20 18:19:00.091097 2026-04-20 18:15:48.846993 -374 9 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 18:19:03.115008 2026-04-20 18:19:03.115012 -375 9 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:18:59' --until '2026-04-20 18:19:01' 0 OOM records. 2026-04-20 18:18:59.500166 2026-04-20 18:19:01.553475 -376 9 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:18:59' --until '2026-04-20 18:19:01' 0 Systemd errors records 2026-04-20 18:18:59.500166 2026-04-20 18:19:01.553475 -377 9 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 1024000 --length 64 {"pps": 2000, "datagram_size_bytes": 64, "bitrate_bps": 1024000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:09.144841 2026-04-20 18:15:48.846993 -378 9 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 8192000 --length 512 {"pps": 2000, "datagram_size_bytes": 512, "bitrate_bps": 8192000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:10.610788 2026-04-20 18:15:48.846993 -379 9 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 22400000 --length 1400 {"pps": 2000, "datagram_size_bytes": 1400, "bitrate_bps": 22400000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:12.069329 2026-04-20 18:15:48.846993 -380 9 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 2048000 --length 64 {"pps": 4000, "datagram_size_bytes": 64, "bitrate_bps": 2048000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:13.744388 2026-04-20 18:15:48.846993 -381 9 loader /usr/bin/iperf3 --time 2 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 16384000 --length 512 {"pps": 4000, "datagram_size_bytes": 512, "bitrate_bps": 16384000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:15.213399 2026-04-20 18:15:48.846993 -382 9 loader /usr/bin/iperf3 --time 2 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 44800000 --length 1400 {"pps": 4000, "datagram_size_bytes": 1400, "bitrate_bps": 44800000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:16.744513 2026-04-20 18:15:48.846993 -383 9 loader /usr/bin/iperf3 --time 3 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 3072000 --length 64 {"pps": 6000, "datagram_size_bytes": 64, "bitrate_bps": 3072000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:18.202113 2026-04-20 18:15:48.846993 -384 9 loader /usr/bin/iperf3 --time 3 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 24576000 --length 512 {"pps": 6000, "datagram_size_bytes": 512, "bitrate_bps": 24576000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:20.101126 2026-04-20 18:15:48.846993 -385 9 loader /usr/bin/iperf3 --time 4 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 67200000 --length 1400 {"pps": 6000, "datagram_size_bytes": 1400, "bitrate_bps": 67200000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:21.554365 2026-04-20 18:15:48.846993 -386 9 loader /usr/bin/iperf3 --time 6 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 4096000 --length 64 {"pps": 8000, "datagram_size_bytes": 64, "bitrate_bps": 4096000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:23.1043 2026-04-20 18:15:48.846993 -387 9 loader /usr/bin/iperf3 --time 10 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 32768000 --length 512 {"pps": 8000, "datagram_size_bytes": 512, "bitrate_bps": 32768000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:24.558492 2026-04-20 18:15:48.846993 -388 9 loader /usr/bin/iperf3 --time 21 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 89600000 --length 1400 {"pps": 8000, "datagram_size_bytes": 1400, "bitrate_bps": 89600000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:26.026353 2026-04-20 18:15:48.846993 -389 9 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 18:19:29.24551 2026-04-20 18:19:29.245514 -390 9 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:19:08' --until '2026-04-20 18:19:27' 0 OOM records. 2026-04-20 18:19:08.383967 2026-04-20 18:19:27.508273 -391 9 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:19:08' --until '2026-04-20 18:19:27' 0 Systemd errors records 2026-04-20 18:19:08.383967 2026-04-20 18:19:27.508273 -392 9 loader /usr/bin/stress-ng --timeout 37 --cpu-method all --vm-method all --sock 0 --netdev 0 --udp-flood 0 --syscall-method all --verify --metrics --maximize --seed 1592594996 & /usr/bin/iperf3 --time 37 --port 5201 --client 10.5.0.13 --interval 1 --json --version4 {"stress_ng_returncode": 0, "iperf3_client_returncode": 1, "iperf3_server_returncode": 0} 2026-04-20 18:19:35.092569 2026-04-20 18:15:48.846993 -393 9 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 18:20:16.575215 2026-04-20 18:20:16.575219 -394 9 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:19:33' --until '2026-04-20 18:20:14' 0 OOM records. 2026-04-20 18:19:33.981118 2026-04-20 18:20:14.591549 -395 9 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:19:33' --until '2026-04-20 18:20:14' 0 Systemd errors records 2026-04-20 18:19:33.981118 2026-04-20 18:20:14.591549 -401 10 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 8192000 --length 512 {"pps": 2000, "datagram_size_bytes": 512, "bitrate_bps": 8192000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:49.07171 2026-04-20 18:15:48.846993 -402 10 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 22400000 --length 1400 {"pps": 2000, "datagram_size_bytes": 1400, "bitrate_bps": 22400000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:50.250328 2026-04-20 18:15:48.846993 -403 10 loader /usr/bin/iperf3 --time 2 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 2048000 --length 64 {"pps": 4000, "datagram_size_bytes": 64, "bitrate_bps": 2048000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:51.440175 2026-04-20 18:15:48.846993 -404 10 loader /usr/bin/iperf3 --time 2 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 16384000 --length 512 {"pps": 4000, "datagram_size_bytes": 512, "bitrate_bps": 16384000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:52.596047 2026-04-20 18:15:48.846993 -405 10 loader /usr/bin/iperf3 --time 2 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 44800000 --length 1400 {"pps": 4000, "datagram_size_bytes": 1400, "bitrate_bps": 44800000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:53.757656 2026-04-20 18:15:48.846993 -406 10 loader /usr/bin/iperf3 --time 3 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 3072000 --length 64 {"pps": 6000, "datagram_size_bytes": 64, "bitrate_bps": 3072000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:54.919367 2026-04-20 18:15:48.846993 -407 10 loader /usr/bin/iperf3 --time 4 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 24576000 --length 512 {"pps": 6000, "datagram_size_bytes": 512, "bitrate_bps": 24576000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:56.089957 2026-04-20 18:15:48.846993 -408 10 loader /usr/bin/iperf3 --time 5 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 67200000 --length 1400 {"pps": 6000, "datagram_size_bytes": 1400, "bitrate_bps": 67200000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:57.250991 2026-04-20 18:15:48.846993 -409 10 loader /usr/bin/iperf3 --time 7 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 4096000 --length 64 {"pps": 8000, "datagram_size_bytes": 64, "bitrate_bps": 4096000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:58.415089 2026-04-20 18:15:48.846993 -410 10 loader /usr/bin/iperf3 --time 12 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 32768000 --length 512 {"pps": 8000, "datagram_size_bytes": 512, "bitrate_bps": 32768000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:59.57958 2026-04-20 18:15:48.846993 -411 10 loader /usr/bin/iperf3 --time 25 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 89600000 --length 1400 {"pps": 8000, "datagram_size_bytes": 1400, "bitrate_bps": 89600000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:21:00.736061 2026-04-20 18:15:48.846993 -412 10 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-20 18:21:02.214093 2026-04-20 18:21:02.214097 -413 10 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:20:47' --until '2026-04-20 18:21:01' 1 OOM records. 2026-04-20 18:20:47.757826 2026-04-20 18:21:01.898821 -414 10 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:20:47' --until '2026-04-20 18:21:01' 0 Systemd errors records 2026-04-20 18:20:47.757826 2026-04-20 18:21:01.898821 -415 10 loader /usr/bin/stress-ng --timeout 37 --cpu-method all --vm-method all --sock 0 --netdev 0 --udp-flood 0 --syscall-method all --verify --metrics --maximize --seed 1592594996 & /usr/bin/iperf3 --time 37 --port 5201 --client 10.5.0.10 --interval 1 --json --version4 {"stress_ng_returncode": 0, "iperf3_client_returncode": 1, "iperf3_server_returncode": 1} 2026-04-20 18:21:03.590281 2026-04-20 18:15:48.846993 -416 10 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-20 18:21:42.634912 2026-04-20 18:21:42.634914 -417 10 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:21:03' --until '2026-04-20 18:21:42' 1 OOM records. 2026-04-20 18:21:03.38468 2026-04-20 18:21:42.38448 -418 10 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:21:03' --until '2026-04-20 18:21:42' 0 Systemd errors records 2026-04-20 18:21:03.38468 2026-04-20 18:21:42.38448 -419 11 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 10.479, "kernel_time": 2.38, "userspace_time": 80.475, "total_time": 93.33500000000001} 2026-04-20 18:15:48.846985 2026-04-20 18:15:48.846993 -420 11 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 18:22:38.140983 2026-04-20 18:22:38.140986 -421 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:22:35' --until '2026-04-20 18:22:36' 0 OOM records. 2026-04-20 18:22:35.362945 2026-04-20 18:22:36.553889 -422 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:22:35' --until '2026-04-20 18:22:36' 0 Systemd errors records 2026-04-20 18:22:35.362945 2026-04-20 18:22:36.553889 -423 11 loader systemd-analyze critical-chain [{"service_name": "systemd-vconsole-setup.service", "slow_time_s": 2.029}, {"service_name": "cloud-init-local.service", "slow_time_s": 9.58}, {"service_name": "wicked.service", "slow_time_s": 10.676}, {"service_name": "cloud-config.service", "slow_time_s": 12.08}, {"service_name": "cloud-init.service", "slow_time_s": 17.885}] 2026-04-20 18:15:48.846985 2026-04-20 18:15:48.846993 -424 11 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 18:22:46.12986 2026-04-20 18:22:46.129864 -425 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:22:39' --until '2026-04-20 18:22:44' 0 OOM records. 2026-04-20 18:22:39.764148 2026-04-20 18:22:44.16885 -426 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:22:39' --until '2026-04-20 18:22:44' 0 Systemd errors records 2026-04-20 18:22:39.764148 2026-04-20 18:22:44.16885 -434 11 loader /usr/bin/perf bench --format default --repeat 3 sched messaging --thread [{"benchmark": "sched/messaging", "total_time": 2.142}] 2026-04-20 18:58:37.051751 2026-04-20 18:58:40.170219 -435 12 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798776, "timestamp_ms": 1776798776068, "time": "Tue Apr 21 19:12:56 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9915904, "io_kbytes": 9683, "bw_bytes": 1982784, "bw": 1936, "iops": 3872.625475, "runtime": 5001, "total_ios": 19367, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84631, "max": 9711316, "mean": 148581.244695, "stddev": 279896.197282, "N": 19367}, "clat_ns": {"min": 4170, "max": 5512012, "mean": 98164.338462, "stddev": 117773.681296, "N": 19367, "percentile": {"1.000000": 4832, "5.000000": 5024, "10.000000": 6688, "20.000000": 73216, "30.000000": 80384, "40.000000": 89600, "50.000000": 95744, "60.000000": 100864, "70.000000": 107008, "80.000000": 117248, "90.000000": 140288, "95.000000": 175104, "99.000000": 248832, "99.500000": 346112, "99.900000": 1761280, "99.950000": 3227648, "99.990000": 4358144}}, "lat_ns": {"min": 147261, "max": 9727116, "mean": 249002.277689, "stddev": 292301.152789, "N": 19367}, "bw_min": 1631, "bw_max": 2316, "bw_agg": 100.0, "bw_mean": 2047.0, "bw_dev": 292.821903, "bw_samples": 4, "iops_min": 3263, "iops_max": 4632, "iops_mean": 4094.5, "iops_stddev": 585.279705, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.44, "sys_cpu": 48.58, "ctx": 19380, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.423194, "20": 0.258171, "50": 0.01549, "100": 45.350338, "250": 40.971756, "500": 0.666081, "750": 0.108432, "1000": 0.056798}, "latency_ms": {"2": 0.061961, "4": 0.072288, "10": 0.01549, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 18812, "read_merges": 0, "write_merges": 2352, "read_ticks": 0, "write_ticks": 2621, "in_queue": 2621, "util": 79.919598}]} 2026-04-21 19:12:46.818875 2026-04-21 19:10:15.083464 -436 12 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798802, "timestamp_ms": 1776798802629, "time": "Tue Apr 21 19:13:22 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 11666432, "io_kbytes": 11393, "bw_bytes": 2332819, "bw": 2278, "iops": 4556.288742, "runtime": 5001, "total_ios": 22786, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78600, "max": 28504592, "mean": 97601.923769, "stddev": 226191.636714, "N": 22786}, "clat_ns": {"min": 4920, "max": 46927638, "mean": 111093.212499, "stddev": 398002.545882, "N": 22786, "percentile": {"1.000000": 51968, "5.000000": 55040, "10.000000": 58624, "20.000000": 62720, "30.000000": 67072, "40.000000": 74240, "50.000000": 82432, "60.000000": 87552, "70.000000": 90624, "80.000000": 97792, "90.000000": 122368, "95.000000": 158720, "99.000000": 995328, "99.500000": 1728512, "99.900000": 4112384, "99.950000": 4685824, "99.990000": 6914048}}, "lat_ns": {"min": 132041, "max": 47064168, "mean": 211012.702449, "stddev": 460800.058896, "N": 22786}, "bw_min": 856, "bw_max": 2741, "bw_agg": 95.472473, "bw_mean": 2175.25, "bw_dev": 891.894005, "bw_samples": 4, "iops_min": 1712, "iops_max": 5482, "iops_mean": 4350.75, "iops_stddev": 1783.983067, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 12.84, "sys_cpu": 51.42, "ctx": 22726, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.074607, "20": 0.087773, "50": 0.215044, "100": 81.769508, "250": 16.101992, "500": 0.49153, "750": 0.136048, "1000": 0.127271}, "latency_ms": {"2": 0.583692, "4": 0.302818, "10": 0.105328, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 21641, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2857, "write_ticks": 0, "in_queue": 2857, "util": 70.227133}]} 2026-04-21 19:12:57.687176 2026-04-21 19:10:15.083464 -427 11 loader sudo FORCE_TIMES_TO_RUN=3 phoronix-test-suite batch-run pts/ctx-clock {"title": "2026-04-20-1823", "last_modified": "2026-04-20 18:23:43", "description": "QEMU testing on openSUSE Leap 15.6 via the Phoronix Test Suite.", "systems": {"2026-04-20 18:23": {"identifier": "2026-04-20 18:23", "hardware": {"Processor": "QEMU Virtual 2.5+ (1 Core)", "Motherboard": "QEMU Ubuntu 24.04 PC v2 (i440FX + PIIX arch_caps fix 1996) (1.16.3-debian-1.16.3-2 BIOS)", "Chipset": "Intel 440FX 82441FX PMC", "Memory": "1 x 3 GB RAM QEMU", "Disk": "11GB QEMU HDD", "Graphics": "bochs-drmdrmfb", "Monitor": "QEMU Monitor", "Network": "Intel 82540EM"}, "software": {"OS": "openSUSE Leap 15.6", "Kernel": "6.4.0-150600.23.92-default (x86_64)", "Compiler": "GCC 7.5.0", "File-System": "xfs", "Screen Resolution": "1280x800", "System Layer": "QEMU"}, "user": "root", "timestamp": "2026-04-20 18:23:25", "client_version": "10.8.4", "data": {"compiler-configuration": "--build=x86_64-suse-linux --disable-libcc1 --disable-libssp --disable-libstdcxx-pch --disable-libvtv --disable-plugin --disable-werror --enable-checking=release --enable-gnu-indirect-function --enable-languages=c,c++,objc,fortran,obj-c++,ada,go --enable-libstdcxx-allocator=new --enable-linux-futex --enable-multilib --enable-offload-targets=hsa,nvptx-none, --enable-ssp --enable-version-specific-runtime-libs --host=x86_64-suse-linux --mandir=/usr/share/man --with-arch-32=x86-64 --with-gcc-major-version-only --with-slibdir=/lib64 --with-tune=generic --without-cuda-driver --without-system-libunwind", "cpu-microcode": "0x1000065", "kernel-extra-details": "Transparent Huge Pages: always", "security": "gather_data_sampling: Not affected + indirect_target_selection: Not affected + itlb_multihit: Not affected + l1tf: Not affected + mds: Not affected + meltdown: Not affected + mmio_stale_data: Not affected + reg_file_data_sampling: Not affected + retbleed: Not affected + spec_rstack_overflow: Not affected + spec_store_bypass: Not affected + spectre_v1: Mitigation of usercopy/swapgs barriers and __user pointer sanitization + spectre_v2: Mitigation of Retpolines; STIBP: disabled; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected + srbds: Not affected + tsa: Not affected + tsx_async_abort: Not affected + vmscape: Not affected"}}}, "results": {"e73e6187dbf9f015fb568fe82670e0c6cdb6cacf": {"identifier": "pts/ctx-clock-1.0.0", "title": "ctx_clock", "scale": "Clocks", "proportion": "LIB", "display_format": "BAR_GRAPH", "results": {"2026-04-20 18:23": {"test_run_times": [5.54, 0.14, 0.13], "details": {"compiler-options": {"compiler-type": "CC", "compiler": "gcc", "compiler-options": ""}, "error": "The test quit with a non-zero exit status. The test quit with a non-zero exit status. The test quit with a non-zero exit status."}}}}}} 2026-04-20 18:23:00.900292 2026-04-20 18:23:54.452813 -428 11 loader echo 4 | FORCE_TIMES_TO_RUN=3 phoronix-test-suite batch-run pts/appleseed {"title": "2026-04-20-1823", "last_modified": "2026-04-20 18:23:43", "description": "QEMU testing on openSUSE Leap 15.6 via the Phoronix Test Suite.", "systems": {"2026-04-20 18:23": {"identifier": "2026-04-20 18:23", "hardware": {"Processor": "QEMU Virtual 2.5+ (1 Core)", "Motherboard": "QEMU Ubuntu 24.04 PC v2 (i440FX + PIIX arch_caps fix 1996) (1.16.3-debian-1.16.3-2 BIOS)", "Chipset": "Intel 440FX 82441FX PMC", "Memory": "1 x 3 GB RAM QEMU", "Disk": "11GB QEMU HDD", "Graphics": "bochs-drmdrmfb", "Monitor": "QEMU Monitor", "Network": "Intel 82540EM"}, "software": {"OS": "openSUSE Leap 15.6", "Kernel": "6.4.0-150600.23.92-default (x86_64)", "Compiler": "GCC 7.5.0", "File-System": "xfs", "Screen Resolution": "1280x800", "System Layer": "QEMU"}, "user": "root", "timestamp": "2026-04-20 18:23:25", "client_version": "10.8.4", "data": {"compiler-configuration": "--build=x86_64-suse-linux --disable-libcc1 --disable-libssp --disable-libstdcxx-pch --disable-libvtv --disable-plugin --disable-werror --enable-checking=release --enable-gnu-indirect-function --enable-languages=c,c++,objc,fortran,obj-c++,ada,go --enable-libstdcxx-allocator=new --enable-linux-futex --enable-multilib --enable-offload-targets=hsa,nvptx-none, --enable-ssp --enable-version-specific-runtime-libs --host=x86_64-suse-linux --mandir=/usr/share/man --with-arch-32=x86-64 --with-gcc-major-version-only --with-slibdir=/lib64 --with-tune=generic --without-cuda-driver --without-system-libunwind", "cpu-microcode": "0x1000065", "kernel-extra-details": "Transparent Huge Pages: always", "security": "gather_data_sampling: Not affected + indirect_target_selection: Not affected + itlb_multihit: Not affected + l1tf: Not affected + mds: Not affected + meltdown: Not affected + mmio_stale_data: Not affected + reg_file_data_sampling: Not affected + retbleed: Not affected + spec_rstack_overflow: Not affected + spec_store_bypass: Not affected + spectre_v1: Mitigation of usercopy/swapgs barriers and __user pointer sanitization + spectre_v2: Mitigation of Retpolines; STIBP: disabled; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected + srbds: Not affected + tsa: Not affected + tsx_async_abort: Not affected + vmscape: Not affected"}}}, "results": {"e73e6187dbf9f015fb568fe82670e0c6cdb6cacf": {"identifier": "pts/ctx-clock-1.0.0", "title": "ctx_clock", "scale": "Clocks", "proportion": "LIB", "display_format": "BAR_GRAPH", "results": {"2026-04-20 18:23": {"test_run_times": [5.54, 0.14, 0.13], "details": {"compiler-options": {"compiler-type": "CC", "compiler": "gcc", "compiler-options": ""}, "error": "The test quit with a non-zero exit status. The test quit with a non-zero exit status. The test quit with a non-zero exit status."}}}}}} 2026-04-20 18:23:54.456756 2026-04-20 18:24:16.830486 -429 11 loader sudo FORCE_TIMES_TO_RUN=3 phoronix-test-suite batch-run pts/network-loopback {"title": "2026-04-20-1824", "last_modified": "2026-04-20 18:31:45", "description": "QEMU testing on openSUSE Leap 15.6 via the Phoronix Test Suite.", "systems": {"Intel 82540EM": {"identifier": "Intel 82540EM", "hardware": {"Processor": "QEMU Virtual 2.5+ (1 Core)", "Motherboard": "QEMU Ubuntu 24.04 PC v2 (i440FX + PIIX arch_caps fix 1996) (1.16.3-debian-1.16.3-2 BIOS)", "Chipset": "Intel 440FX 82441FX PMC", "Memory": "1 x 3 GB RAM QEMU", "Disk": "11GB QEMU HDD", "Graphics": "bochs-drmdrmfb", "Monitor": "QEMU Monitor", "Network": "Intel 82540EM"}, "software": {"OS": "openSUSE Leap 15.6", "Kernel": "6.4.0-150600.23.92-default (x86_64)", "Compiler": "GCC 7.5.0", "File-System": "xfs", "Screen Resolution": "1280x800", "System Layer": "QEMU"}, "user": "root", "timestamp": "2026-04-20 18:24:39", "client_version": "10.8.4", "data": {"cpu-microcode": "0x1000065", "kernel-extra-details": "Transparent Huge Pages: always", "security": "gather_data_sampling: Not affected + indirect_target_selection: Not affected + itlb_multihit: Not affected + l1tf: Not affected + mds: Not affected + meltdown: Not affected + mmio_stale_data: Not affected + reg_file_data_sampling: Not affected + retbleed: Not affected + spec_rstack_overflow: Not affected + spec_store_bypass: Not affected + spectre_v1: Mitigation of usercopy/swapgs barriers and __user pointer sanitization + spectre_v2: Mitigation of Retpolines; STIBP: disabled; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected + srbds: Not affected + tsa: Not affected + tsx_async_abort: Not affected + vmscape: Not affected"}}}, "results": {"a98105add2d3666b3f6e7cae7d19bf7ce82711ac": {"identifier": "pts/network-loopback-1.0.3", "title": "Loopback TCP Network Performance", "description": "Time To Transfer 10GB Via Loopback", "scale": "Seconds", "proportion": "LIB", "display_format": "BAR_GRAPH", "results": {"Intel 82540EM": {"value": 137.575, "raw_values": [126.695, 148.048, 137.981], "test_run_times": [126.67, 148.04, 137.97]}}}}} 2026-04-20 18:24:16.833691 2026-04-20 18:31:56.178856 -430 11 loader sudo FORCE_TIMES_TO_RUN=3 phoronix-test-suite batch-run pts/hdparm-read {"title": "2026-04-20-1832", "last_modified": "2026-04-20 18:33:01", "description": "QEMU testing on openSUSE Leap 15.6 via the Phoronix Test Suite.", "systems": {"QEMU HDD": {"identifier": "QEMU HDD", "hardware": {"Processor": "QEMU Virtual 2.5+ (1 Core)", "Motherboard": "QEMU Ubuntu 24.04 PC v2 (i440FX + PIIX arch_caps fix 1996) (1.16.3-debian-1.16.3-2 BIOS)", "Chipset": "Intel 440FX 82441FX PMC", "Memory": "1 x 3 GB RAM QEMU", "Disk": "11GB QEMU HDD", "Graphics": "bochs-drmdrmfb", "Monitor": "QEMU Monitor", "Network": "Intel 82540EM"}, "software": {"OS": "openSUSE Leap 15.6", "Kernel": "6.4.0-150600.23.92-default (x86_64)", "Compiler": "GCC 7.5.0", "File-System": "xfs", "Screen Resolution": "1280x800", "System Layer": "QEMU"}, "user": "root", "timestamp": "2026-04-20 18:32:23", "client_version": "10.8.4", "data": {"disk-scheduler": "BFQ", "disk-mount-options": "attr2,inode64,logbsize=32k,logbufs=8,noquota,relatime,rw", "disk-details": "Block Size: 4096", "cpu-microcode": "0x1000065", "kernel-extra-details": "Transparent Huge Pages: always", "security": "gather_data_sampling: Not affected + indirect_target_selection: Not affected + itlb_multihit: Not affected + l1tf: Not affected + mds: Not affected + meltdown: Not affected + mmio_stale_data: Not affected + reg_file_data_sampling: Not affected + retbleed: Not affected + spec_rstack_overflow: Not affected + spec_store_bypass: Not affected + spectre_v1: Mitigation of usercopy/swapgs barriers and __user pointer sanitization + spectre_v2: Mitigation of Retpolines; STIBP: disabled; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected + srbds: Not affected + tsa: Not affected + tsx_async_abort: Not affected + vmscape: Not affected"}}}, "results": {"4937efd3bbadcc20ba3f8565d001329d9d4a4681": {"identifier": "pts/hdparm-read-1.0.0", "title": "hdparm Timed Disk Reads", "arguments": "-t /dev/sda", "description": "Disk To Read: /dev/sda", "scale": "MB/s", "proportion": "HIB", "display_format": "BAR_GRAPH", "results": {"QEMU HDD": {"value": 502.5, "raw_values": [340.52, 533.31, 633.67], "test_run_times": [11.69, 6.95, 7.06]}}}}} 2026-04-20 18:31:56.182245 2026-04-20 18:33:20.141391 -431 11 loader sudo FORCE_TIMES_TO_RUN=3 phoronix-test-suite batch-run pts/tinymembench {"title": "2026-04-20-1833", "last_modified": "2026-04-20 18:54:55", "description": "QEMU testing on openSUSE Leap 15.6 via the Phoronix Test Suite.", "systems": {"1 x 3 GB RAM QEMU": {"identifier": "1 x 3 GB RAM QEMU", "hardware": {"Processor": "QEMU Virtual 2.5+ (1 Core)", "Motherboard": "QEMU Ubuntu 24.04 PC v2 (i440FX + PIIX arch_caps fix 1996) (1.16.3-debian-1.16.3-2 BIOS)", "Chipset": "Intel 440FX 82441FX PMC", "Memory": "1 x 3 GB RAM QEMU", "Disk": "11GB QEMU HDD", "Graphics": "bochs-drmdrmfb", "Monitor": "QEMU Monitor", "Network": "Intel 82540EM"}, "software": {"OS": "openSUSE Leap 15.6", "Kernel": "6.4.0-150600.23.92-default (x86_64)", "Compiler": "GCC 7.5.0", "File-System": "xfs", "Screen Resolution": "1280x800", "System Layer": "QEMU"}, "user": "root", "timestamp": "2026-04-20 18:33:43", "client_version": "10.8.4", "data": {"compiler-configuration": "--build=x86_64-suse-linux --disable-libcc1 --disable-libssp --disable-libstdcxx-pch --disable-libvtv --disable-plugin --disable-werror --enable-checking=release --enable-gnu-indirect-function --enable-languages=c,c++,objc,fortran,obj-c++,ada,go --enable-libstdcxx-allocator=new --enable-linux-futex --enable-multilib --enable-offload-targets=hsa,nvptx-none, --enable-ssp --enable-version-specific-runtime-libs --host=x86_64-suse-linux --mandir=/usr/share/man --with-arch-32=x86-64 --with-gcc-major-version-only --with-slibdir=/lib64 --with-tune=generic --without-cuda-driver --without-system-libunwind", "cpu-microcode": "0x1000065", "kernel-extra-details": "Transparent Huge Pages: always", "security": "gather_data_sampling: Not affected + indirect_target_selection: Not affected + itlb_multihit: Not affected + l1tf: Not affected + mds: Not affected + meltdown: Not affected + mmio_stale_data: Not affected + reg_file_data_sampling: Not affected + retbleed: Not affected + spec_rstack_overflow: Not affected + spec_store_bypass: Not affected + spectre_v1: Mitigation of usercopy/swapgs barriers and __user pointer sanitization + spectre_v2: Mitigation of Retpolines; STIBP: disabled; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected + srbds: Not affected + tsa: Not affected + tsx_async_abort: Not affected + vmscape: Not affected"}}}, "results": {"5bccbe11ecc086473c1c13ca929cb4faa318271e": {"identifier": "pts/tinymembench-1.0.2", "title": "Tinymembench", "app_version": "2018-05-28", "description": "Standard Memcpy", "scale": "MB/s", "proportion": "HIB", "display_format": "BAR_GRAPH", "results": {"1 x 3 GB RAM QEMU": {"value": 3169.9, "raw_values": [3172.8, 3155.4, 3181.5], "test_run_times": [425.01, 415.6, 418.32], "details": {"compiler-options": {"compiler-type": "CC", "compiler": "gcc", "compiler-options": "-O2 -lm"}}}}}, "b76d6cf01f46e1ebcef55c3acab75a3188331bb6": {"identifier": "pts/tinymembench-1.0.2", "title": "Tinymembench", "app_version": "2018-05-28", "description": "Standard Memset", "scale": "MB/s", "proportion": "HIB", "display_format": "BAR_GRAPH", "results": {"1 x 3 GB RAM QEMU": {"value": 18310.5, "raw_values": [18272.8, 18332.4, 18326.3], "test_run_times": [425.01, 415.6, 418.32], "details": {"compiler-options": {"compiler-type": "CC", "compiler": "gcc", "compiler-options": "-O2 -lm"}}}}}}} 2026-04-20 18:33:20.145106 2026-04-20 18:55:08.633801 -432 11 loader /usr/bin/perf bench --format default --repeat 3 syscall all [{"benchmark": "syscall/basic", "total_time": 3.636, "usecs_per_op": 0.363681, "ops_per_sec": 2749663}, {"benchmark": "syscall/getpgid", "total_time": 2.942, "usecs_per_op": 0.294235, "ops_per_sec": 3398646}, {"benchmark": "syscall/fork", "total_time": 51.123, "usecs_per_op": 5112.3101, "ops_per_sec": 195}, {"benchmark": "syscall/execve", "total_time": 144.663, "usecs_per_op": 14466.3368, "ops_per_sec": 69}] 2026-04-20 18:55:08.637817 2026-04-20 18:58:31.566977 -433 11 loader /usr/bin/perf bench --format default --repeat 3 sched messaging [{"benchmark": "sched/messaging", "total_time": 3.89}] 2026-04-20 18:58:31.571617 2026-04-20 18:58:37.047651 -437 12 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798831, "timestamp_ms": 1776798831274, "time": "Tue Apr 21 19:13:51 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12496896, "io_kbytes": 12204, "bw_bytes": 2498879, "bw": 2440, "iops": 4880.623875, "runtime": 5001, "total_ios": 24408, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 82191, "max": 10443360, "mean": 96993.147247, "stddev": 90381.746204, "N": 24408}, "clat_ns": {"min": 5260, "max": 5838083, "mean": 96666.99537, "stddev": 186003.974101, "N": 24408, "percentile": {"1.000000": 51968, "5.000000": 54528, "10.000000": 56576, "20.000000": 62720, "30.000000": 67072, "40.000000": 75264, "50.000000": 83456, "60.000000": 86528, "70.000000": 89600, "80.000000": 94720, "90.000000": 109056, "95.000000": 138240, "99.000000": 329728, "99.500000": 1171456, "99.900000": 3358720, "99.950000": 4292608, "99.990000": 5734400}}, "lat_ns": {"min": 134331, "max": 10463830, "mean": 195633.644297, "stddev": 208885.058915, "N": 24408}, "bw_min": 2401, "bw_max": 2690, "bw_agg": 100.0, "bw_mean": 2574.75, "bw_dev": 135.726134, "bw_samples": 4, "iops_min": 4802, "iops_max": 5380, "iops_mean": 5149.75, "iops_stddev": 271.698822, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 16.46, "sys_cpu": 51.62, "ctx": 24336, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.503933, "20": 0.028679, "50": 0.225336, "100": 85.099148, "250": 12.958866, "500": 0.471157, "750": 0.08194, "1000": 0.086037}, "latency_ms": {"2": 0.331858, "4": 0.147493, "10": 0.065552, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23967, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3057, "write_ticks": 0, "in_queue": 3057, "util": 82.028215}]} 2026-04-21 19:13:24.425273 2026-04-21 19:10:15.083464 -438 12 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798843, "timestamp_ms": 1776798843902, "time": "Tue Apr 21 19:14:03 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1687552, "io_kbytes": 1648, "bw_bytes": 337442, "bw": 329, "iops": 659.068186, "runtime": 5001, "total_ios": 3296, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 132751, "max": 76167834, "mean": 1485116.770328, "stddev": 1908204.251053, "N": 3296}, "clat_ns": {"min": 5290, "max": 2596135, "mean": 10948.707221, "stddev": 48855.873338, "N": 3296, "percentile": {"1.000000": 7584, "5.000000": 7840, "10.000000": 7904, "20.000000": 8096, "30.000000": 8256, "40.000000": 8384, "50.000000": 8512, "60.000000": 8640, "70.000000": 8768, "80.000000": 8896, "90.000000": 9152, "95.000000": 10048, "99.000000": 21632, "99.500000": 177152, "99.900000": 329728, "99.950000": 419840, "99.990000": 2605056}}, "lat_ns": {"min": 271162, "max": 76205424, "mean": 1501738.38835, "stddev": 1908757.744876, "N": 3296}, "bw_min": 328, "bw_max": 361, "bw_agg": 100.0, "bw_mean": 351.5, "bw_dev": 15.84298, "bw_samples": 4, "iops_min": 656, "iops_max": 723, "iops_mean": 703.75, "iops_stddev": 32.180481, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.6, "sys_cpu": 17.06, "ctx": 3339, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 94.751214, "20": 3.762136, "50": 0.788835, "100": 0.0, "250": 0.455097, "500": 0.212379, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.03034, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 30, "write_ios": 3256, "read_merges": 0, "write_merges": 5680, "read_ticks": 14, "write_ticks": 848, "in_queue": 943, "util": 21.967411}]} 2026-04-21 19:13:53.008733 2026-04-21 19:10:15.083464 -439 12 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798856, "timestamp_ms": 1776798856503, "time": "Tue Apr 21 19:14:16 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 58703872, "io_kbytes": 57328, "bw_bytes": 11738426, "bw": 11463, "iops": 2865.826835, "runtime": 5001, "total_ios": 14332, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 95851, "max": 3671341, "mean": 111689.625733, "stddev": 44798.916296, "N": 14332}, "clat_ns": {"min": 7480, "max": 7530993, "mean": 224205.511722, "stddev": 274227.66469, "N": 14332, "percentile": {"1.000000": 148480, "5.000000": 158720, "10.000000": 162816, "20.000000": 171008, "30.000000": 177152, "40.000000": 181248, "50.000000": 185344, "60.000000": 191488, "70.000000": 199680, "80.000000": 224256, "90.000000": 272384, "95.000000": 313344, "99.000000": 790528, "99.500000": 2039808, "99.900000": 4554752, "99.950000": 5013504, "99.990000": 6586368}}, "lat_ns": {"min": 239902, "max": 7672414, "mean": 338166.956461, "stddev": 281848.254327, "N": 14332}, "bw_min": 11948, "bw_max": 13072, "bw_agg": 100.0, "bw_mean": 12524.75, "bw_dev": 548.981709, "bw_samples": 4, "iops_min": 2987, "iops_max": 3268, "iops_mean": 3131.0, "iops_stddev": 137.406938, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 20.24, "sys_cpu": 20.26, "ctx": 14344, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.104661, "20": 0.18839, "50": 0.0, "100": 0.0, "250": 85.926598, "500": 12.573263, "750": 0.174435, "1000": 0.125593}, "latency_ms": {"2": 0.404689, "4": 0.313983, "10": 0.18839, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 14174, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2143, "in_queue": 2143, "util": 81.429432}]} 2026-04-21 19:14:07.622848 2026-04-21 19:10:15.083464 -440 12 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798872, "timestamp_ms": 1776798872427, "time": "Tue Apr 21 19:14:32 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 96722944, "io_kbytes": 94456, "bw_bytes": 19340720, "bw": 18887, "iops": 4721.855629, "runtime": 5001, "total_ios": 23614, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 71090, "max": 2206703, "mean": 95974.877996, "stddev": 32241.508438, "N": 23614}, "clat_ns": {"min": 5620, "max": 6358367, "mean": 104394.145041, "stddev": 248107.045851, "N": 23614, "percentile": {"1.000000": 52480, "5.000000": 54016, "10.000000": 55040, "20.000000": 59136, "30.000000": 61696, "40.000000": 66048, "50.000000": 73216, "60.000000": 85504, "70.000000": 90624, "80.000000": 96768, "90.000000": 118272, "95.000000": 152576, "99.000000": 831488, "99.500000": 1761280, "99.900000": 4177920, "99.950000": 4554752, "99.990000": 5341184}}, "lat_ns": {"min": 135941, "max": 6486547, "mean": 202639.456001, "stddev": 254275.375607, "N": 23614}, "bw_min": 10721, "bw_max": 22316, "bw_agg": 95.084444, "bw_mean": 17959.25, "bw_dev": 5305.536189, "bw_samples": 4, "iops_min": 2680, "iops_max": 5579, "iops_mean": 4489.75, "iops_stddev": 1326.497738, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 17.84, "sys_cpu": 48.26, "ctx": 23481, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.143982, "20": 0.076226, "50": 0.228678, "100": 82.120776, "250": 15.910053, "500": 0.355721, "750": 0.139748, "1000": 0.067756}, "latency_ms": {"2": 0.542051, "4": 0.28373, "10": 0.131278, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22859, "write_ios": 2, "read_merges": 0, "write_merges": 0, "read_ticks": 2943, "write_ticks": 47, "in_queue": 2992, "util": 74.707543}]} 2026-04-21 19:14:18.196123 2026-04-21 19:10:15.083464 -441 12 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798888, "timestamp_ms": 1776798888996, "time": "Tue Apr 21 19:14:48 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 94965760, "io_kbytes": 92740, "bw_bytes": 18989354, "bw": 18544, "iops": 4636.072785, "runtime": 5001, "total_ios": 23185, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 82211, "max": 4042283, "mean": 96497.221695, "stddev": 41361.730242, "N": 23185}, "clat_ns": {"min": 5780, "max": 7769864, "mean": 106378.5686, "stddev": 252079.564546, "N": 23185, "percentile": {"1.000000": 52992, "5.000000": 54528, "10.000000": 56576, "20.000000": 61696, "30.000000": 66048, "40.000000": 73216, "50.000000": 82432, "60.000000": 86528, "70.000000": 90624, "80.000000": 96768, "90.000000": 116224, "95.000000": 152576, "99.000000": 692224, "99.500000": 1597440, "99.900000": 4423680, "99.950000": 4685824, "99.990000": 5406720}}, "lat_ns": {"min": 136891, "max": 7875285, "mean": 205072.299978, "stddev": 258987.006658, "N": 23185}, "bw_min": 14433, "bw_max": 22060, "bw_agg": 99.545461, "bw_mean": 18460.25, "bw_dev": 3944.334365, "bw_samples": 4, "iops_min": 3608, "iops_max": 5515, "iops_mean": 4615.0, "iops_stddev": 986.168681, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.66, "sys_cpu": 60.6, "ctx": 23109, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.120768, "20": 0.06901, "50": 0.198404, "100": 82.372223, "250": 15.807634, "500": 0.284667, "750": 0.176838, "1000": 0.047444}, "latency_ms": {"2": 0.547768, "4": 0.232909, "10": 0.142333, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22767, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2958, "write_ticks": 0, "in_queue": 2958, "util": 75.468688}]} 2026-04-21 19:14:34.514834 2026-04-21 19:10:15.083464 -442 12 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798899, "timestamp_ms": 1776798899207, "time": "Tue Apr 21 19:14:59 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 45588480, "io_kbytes": 44520, "bw_bytes": 9115872, "bw": 8902, "iops": 2225.554889, "runtime": 5001, "total_ios": 11130, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 94981, "max": 5375381, "mean": 112319.54699, "stddev": 61517.493741, "N": 11130}, "clat_ns": {"min": 5830, "max": 9707135, "mean": 322375.149955, "stddev": 368516.805346, "N": 11130, "percentile": {"1.000000": 181248, "5.000000": 193536, "10.000000": 203776, "20.000000": 216064, "30.000000": 232448, "40.000000": 254976, "50.000000": 276480, "60.000000": 292864, "70.000000": 305152, "80.000000": 321536, "90.000000": 370688, "95.000000": 432128, "99.000000": 2408448, "99.500000": 3358720, "99.900000": 4554752, "99.950000": 5079040, "99.990000": 6389760}}, "lat_ns": {"min": 261152, "max": 9853486, "mean": 437131.031177, "stddev": 379855.599739, "N": 11130}, "bw_min": 5256, "bw_max": 10329, "bw_agg": 100.0, "bw_mean": 9036.25, "bw_dev": 2520.280986, "bw_samples": 4, "iops_min": 1314, "iops_max": 2582, "iops_mean": 2259.0, "iops_stddev": 630.027513, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 13.24, "sys_cpu": 19.82, "ctx": 11141, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.044924, "20": 0.0, "50": 0.0, "100": 0.0, "250": 38.21204, "500": 58.975741, "750": 0.763702, "1000": 0.206649}, "latency_ms": {"2": 0.6469, "4": 0.934412, "10": 0.215633, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 11, "write_ios": 10811, "read_merges": 0, "write_merges": 0, "read_ticks": 5, "write_ticks": 1644, "in_queue": 1650, "util": 81.675393}]} 2026-04-21 19:14:50.848809 2026-04-21 19:10:15.083464 -443 12 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798910, "timestamp_ms": 1776798910902, "time": "Tue Apr 21 19:15:10 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9179234304, "io_kbytes": 8964096, "bw_bytes": 1835112815, "bw": 1792102, "iops": 875.04998, "runtime": 5002, "total_ios": 4377, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 193231, "max": 7061400, "mean": 290955.992004, "stddev": 188503.430731, "N": 4377}, "clat_ns": {"min": 10450, "max": 21417292, "mean": 830513.450765, "stddev": 751109.990351, "N": 4377, "percentile": {"1.000000": 436224, "5.000000": 585728, "10.000000": 618496, "20.000000": 651264, "30.000000": 684032, "40.000000": 708608, "50.000000": 741376, "60.000000": 774144, "70.000000": 815104, "80.000000": 864256, "90.000000": 970752, "95.000000": 1155072, "99.000000": 3096576, "99.500000": 4014080, "99.900000": 11206656, "99.950000": 21102592, "99.990000": 21364736}}, "lat_ns": {"min": 760414, "max": 21621893, "mean": 1126227.923007, "stddev": 778467.321266, "N": 4377}, "bw_min": 1698141, "bw_max": 1976320, "bw_agg": 100.0, "bw_mean": 1859753.75, "bw_dev": 116553.927591, "bw_samples": 4, "iops_min": 829, "iops_max": 965, "iops_mean": 908.0, "iops_stddev": 56.979528, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 9.018196, "sys_cpu": 19.656069, "ctx": 4463, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.13708, "50": 0.045693, "100": 0.0, "250": 0.114233, "500": 0.913868, "750": 52.638794, "1000": 37.719899}, "latency_ms": {"2": 6.602696, "4": 1.325109, "10": 0.388394, "20": 0.022847, "50": 0.091387, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8647, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5586, "in_queue": 5587, "util": 89.147442}]} 2026-04-21 19:15:02.432617 2026-04-21 19:10:15.083464 -444 12 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798947, "timestamp_ms": 1776798947377, "time": "Tue Apr 21 19:15:47 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15231614976, "io_kbytes": 14874624, "bw_bytes": 3045713852, "bw": 2974329, "iops": 1452.309538, "runtime": 5001, "total_ios": 7263, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 190761, "max": 4232014, "mean": 224286.82638, "stddev": 96159.716727, "N": 7263}, "clat_ns": {"min": 6060, "max": 5753833, "mean": 448934.482721, "stddev": 360625.867045, "N": 7263, "percentile": {"1.000000": 164864, "5.000000": 280576, "10.000000": 301056, "20.000000": 342016, "30.000000": 362496, "40.000000": 378880, "50.000000": 395264, "60.000000": 415744, "70.000000": 440320, "80.000000": 477184, "90.000000": 536576, "95.000000": 593920, "99.000000": 2605056, "99.500000": 3522560, "99.900000": 4882432, "99.950000": 5275648, "99.990000": 5734400}}, "lat_ns": {"min": 467253, "max": 6006814, "mean": 676730.568498, "stddev": 376236.56098, "N": 7263}, "bw_min": 2140160, "bw_max": 3386053, "bw_agg": 96.801332, "bw_mean": 2879191.25, "bw_dev": 536424.956698, "bw_samples": 4, "iops_min": 1045, "iops_max": 1653, "iops_mean": 1405.5, "iops_stddev": 261.749881, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.82, "sys_cpu": 39.26, "ctx": 7378, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.151453, "20": 0.178989, "50": 0.0, "100": 0.068842, "250": 1.005094, "500": 83.381523, "750": 12.790858, "1000": 0.468126}, "latency_ms": {"2": 0.7848, "4": 0.950021, "10": 0.220295, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13897, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4848, "write_ticks": 0, "in_queue": 4848, "util": 76.816327}]} 2026-04-21 19:15:33.149295 2026-04-21 19:10:15.083464 -445 12 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798962, "timestamp_ms": 1776798962419, "time": "Tue Apr 21 19:16:02 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14508097536, "io_kbytes": 14168064, "bw_bytes": 2901039299, "bw": 2833046, "iops": 1383.323335, "runtime": 5001, "total_ios": 6918, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 207351, "max": 6148015, "mean": 252774.656693, "stddev": 134544.31653, "N": 6918}, "clat_ns": {"min": 5600, "max": 5904313, "mean": 454629.294305, "stddev": 362583.331401, "N": 6918, "percentile": {"1.000000": 136192, "5.000000": 276480, "10.000000": 296960, "20.000000": 346112, "30.000000": 362496, "40.000000": 378880, "50.000000": 399360, "60.000000": 415744, "70.000000": 444416, "80.000000": 481280, "90.000000": 544768, "95.000000": 618496, "99.000000": 2408448, "99.500000": 3293184, "99.900000": 4554752, "99.950000": 5275648, "99.990000": 5931008}}, "lat_ns": {"min": 485602, "max": 6203825, "mean": 710681.007083, "stddev": 387419.881205, "N": 6918}, "bw_min": 2696567, "bw_max": 3222377, "bw_agg": 100.0, "bw_mean": 3022670.75, "bw_dev": 242369.216057, "bw_samples": 4, "iops_min": 1316, "iops_max": 1573, "iops_mean": 1475.5, "iops_stddev": 118.565031, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.0, "sys_cpu": 38.2, "ctx": 7049, "majf": 0, "minf": 530, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.346921, "20": 0.187916, "50": 0.0, "100": 0.02891, "250": 1.098583, "500": 82.3793, "750": 12.95172, "1000": 0.708297}, "latency_ms": {"2": 0.910668, "4": 1.185314, "10": 0.202371, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13370, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4715, "write_ticks": 0, "in_queue": 4715, "util": 80.762214}]} 2026-04-21 19:15:49.120902 2026-04-21 19:10:15.083464 -446 12 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798972, "timestamp_ms": 1776798972015, "time": "Tue Apr 21 19:16:12 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8468299776, "io_kbytes": 8269824, "bw_bytes": 1693321290, "bw": 1653634, "iops": 807.438512, "runtime": 5001, "total_ios": 4038, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 194961, "max": 10399609, "mean": 322755.61689, "stddev": 391037.285198, "N": 4038}, "clat_ns": {"min": 8581, "max": 9080302, "mean": 893986.52947, "stddev": 698693.369657, "N": 4038, "percentile": {"1.000000": 350208, "5.000000": 569344, "10.000000": 602112, "20.000000": 634880, "30.000000": 659456, "40.000000": 692224, "50.000000": 724992, "60.000000": 765952, "70.000000": 831488, "80.000000": 913408, "90.000000": 1089536, "95.000000": 1761280, "99.000000": 4489216, "99.500000": 5275648, "99.900000": 7176192, "99.950000": 7766016, "99.990000": 9109504}}, "lat_ns": {"min": 705654, "max": 10447040, "mean": 1221902.876672, "stddev": 812872.228952, "N": 4038}, "bw_min": 1265664, "bw_max": 1906829, "bw_agg": 97.133823, "bw_mean": 1606238.5, "bw_dev": 302864.171664, "bw_samples": 4, "iops_min": 618, "iops_max": 931, "iops_mean": 784.25, "iops_stddev": 147.834085, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.96, "sys_cpu": 22.62, "ctx": 4138, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.520059, "20": 0.074294, "50": 0.123824, "100": 0.0, "250": 0.074294, "500": 1.139178, "750": 54.309064, "1000": 30.80733}, "latency_ms": {"2": 8.444775, "4": 2.847945, "10": 1.659237, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7843, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5350, "in_queue": 5349, "util": 83.648051}]} 2026-04-21 19:16:04.121769 2026-04-21 19:10:15.083464 -447 12 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798983, "timestamp_ms": 1776798983199, "time": "Tue Apr 21 19:16:23 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9521070080, "io_kbytes": 9297920, "bw_bytes": 1903452634, "bw": 1858840, "iops": 453.818473, "runtime": 5002, "total_ios": 2270, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 917115, "max": 9122682, "mean": 1666231.903084, "stddev": 754458.650868, "N": 2270}, "clat_ns": {"min": 10530, "max": 9653955, "mean": 509095.353304, "stddev": 476342.216577, "N": 2270, "percentile": {"1.000000": 162816, "5.000000": 179200, "10.000000": 189440, "20.000000": 214016, "30.000000": 246784, "40.000000": 292864, "50.000000": 514048, "60.000000": 577536, "70.000000": 626688, "80.000000": 684032, "90.000000": 790528, "95.000000": 929792, "99.000000": 2179072, "99.500000": 3194880, "99.900000": 6455296, "99.950000": 6455296, "99.990000": 9633792}}, "lat_ns": {"min": 1388928, "max": 11431605, "mean": 2181586.689427, "stddev": 922362.954592, "N": 2270}, "bw_min": 1679360, "bw_max": 2031616, "bw_agg": 98.527552, "bw_mean": 1831470.5, "bw_dev": 153036.610482, "bw_samples": 4, "iops_min": 410, "iops_max": 496, "iops_mean": 447.0, "iops_stddev": 37.32738, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 2.79944, "sys_cpu": 25.394921, "ctx": 7942, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.088106, "50": 0.088106, "100": 0.0, "250": 30.704846, "500": 18.325991, "750": 38.193833, "1000": 8.678414}, "latency_ms": {"2": 2.863436, "4": 0.704846, "10": 0.352423, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8838, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5717, "in_queue": 5718, "util": 89.183223}]} 2026-04-21 19:16:15.536959 2026-04-21 19:10:15.083464 -448 12 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799009, "timestamp_ms": 1776799009584, "time": "Tue Apr 21 19:16:49 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 18324914176, "io_kbytes": 17895424, "bw_bytes": 3664249985, "bw": 3578369, "iops": 873.625275, "runtime": 5001, "total_ios": 4369, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 545773, "max": 6050124, "mean": 747711.902266, "stddev": 186012.406497, "N": 4369}, "clat_ns": {"min": 5170, "max": 4590097, "mean": 379980.135271, "stddev": 242689.121913, "N": 4369, "percentile": {"1.000000": 140288, "5.000000": 264192, "10.000000": 280576, "20.000000": 313344, "30.000000": 333824, "40.000000": 342016, "50.000000": 354304, "60.000000": 366592, "70.000000": 382976, "80.000000": 411648, "90.000000": 452608, "95.000000": 505856, "99.000000": 757760, "99.500000": 1826816, "99.900000": 4046848, "99.950000": 4177920, "99.990000": 4620288}}, "lat_ns": {"min": 793604, "max": 7001820, "mean": 1132541.280156, "stddev": 329322.895371, "N": 4369}, "bw_min": 3396283, "bw_max": 3830025, "bw_agg": 100.0, "bw_mean": 3657047.25, "bw_dev": 184546.226773, "bw_samples": 4, "iops_min": 829, "iops_max": 935, "iops_mean": 892.75, "iops_stddev": 45.110051, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.18, "sys_cpu": 33.74, "ctx": 13072, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.16022, "20": 0.389105, "50": 0.0, "100": 0.0, "250": 2.059968, "500": 91.874571, "750": 4.509041, "1000": 0.183108}, "latency_ms": {"2": 0.343328, "4": 0.366217, "10": 0.114443, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 17032, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 5987, "write_ticks": 0, "in_queue": 5987, "util": 84.287752}]} 2026-04-21 19:16:26.414312 2026-04-21 19:10:15.083464 -449 12 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799028, "timestamp_ms": 1776799028031, "time": "Tue Apr 21 19:17:08 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 16584278016, "io_kbytes": 16195584, "bw_bytes": 3316192364, "bw": 3238469, "iops": 790.641872, "runtime": 5001, "total_ios": 3954, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 567183, "max": 6357056, "mean": 775754.517956, "stddev": 195171.725542, "N": 3954}, "clat_ns": {"min": 8530, "max": 7463803, "mean": 468478.795144, "stddev": 401024.516874, "N": 3954, "percentile": {"1.000000": 166912, "5.000000": 288768, "10.000000": 309248, "20.000000": 358400, "30.000000": 378880, "40.000000": 391168, "50.000000": 407552, "60.000000": 428032, "70.000000": 456704, "80.000000": 489472, "90.000000": 552960, "95.000000": 618496, "99.000000": 2834432, "99.500000": 3751936, "99.900000": 4882432, "99.950000": 6651904, "99.990000": 7438336}}, "lat_ns": {"min": 847525, "max": 8372698, "mean": 1250059.077896, "stddev": 474308.070736, "N": 3954}, "bw_min": 3208055, "bw_max": 3633614, "bw_agg": 100.0, "bw_mean": 3456337.25, "bw_dev": 208992.728, "bw_samples": 4, "iops_min": 783, "iops_max": 887, "iops_mean": 843.75, "iops_stddev": 51.077555, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.88, "sys_cpu": 32.98, "ctx": 11841, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.202327, "20": 0.101163, "50": 0.0, "100": 0.0, "250": 2.276176, "500": 80.070814, "750": 14.592817, "1000": 0.531108}, "latency_ms": {"2": 0.784016, "4": 1.112797, "10": 0.328781, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 15672, "write_ios": 24, "read_merges": 0, "write_merges": 13, "read_ticks": 5748, "write_ticks": 11, "in_queue": 5758, "util": 82.528324}]} 2026-04-21 19:16:51.502885 2026-04-21 19:10:15.083464 -484 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-21 19:12:43' --until '2026-04-21 19:26:10' 0 OOM records. 2026-04-21 19:12:43.858048 2026-04-21 19:26:10.364272 -450 12 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799037, "timestamp_ms": 1776799037371, "time": "Tue Apr 21 19:17:17 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9290383360, "io_kbytes": 9072640, "bw_bytes": 1857333738, "bw": 1813802, "iops": 442.822871, "runtime": 5002, "total_ios": 2215, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 901616, "max": 61967283, "mean": 1716531.248307, "stddev": 1590748.146509, "N": 2215}, "clat_ns": {"min": 10060, "max": 7378612, "mean": 512074.272686, "stddev": 485121.733155, "N": 2215, "percentile": {"1.000000": 158720, "5.000000": 175104, "10.000000": 185344, "20.000000": 207872, "30.000000": 244736, "40.000000": 296960, "50.000000": 497664, "60.000000": 569344, "70.000000": 626688, "80.000000": 684032, "90.000000": 790528, "95.000000": 905216, "99.000000": 2932736, "99.500000": 4014080, "99.900000": 5079040, "99.950000": 5341184, "99.990000": 7372800}}, "lat_ns": {"min": 1324048, "max": 62368545, "mean": 2237067.881264, "stddev": 1688741.273989, "N": 2215}, "bw_min": 1501730, "bw_max": 1892352, "bw_agg": 97.597286, "bw_mean": 1770222.5, "bw_dev": 182696.777141, "bw_samples": 4, "iops_min": 366, "iops_max": 462, "iops_mean": 431.75, "iops_stddev": 44.768851, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 3.478609, "sys_cpu": 23.590564, "ctx": 7743, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.361174, "50": 0.13544, "100": 0.0, "250": 30.970655, "500": 18.645598, "750": 37.742664, "1000": 8.171558}, "latency_ms": {"2": 2.392777, "4": 1.038375, "10": 0.541761, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8617, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5707, "in_queue": 5707, "util": 88.335676}]} 2026-04-21 19:17:09.723614 2026-04-21 19:10:15.083464 -451 12 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799053, "timestamp_ms": 1776799053393, "time": "Tue Apr 21 19:17:33 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10213888, "io_kbytes": 9974, "bw_bytes": 2042369, "bw": 1994, "iops": 3989.0022, "runtime": 5001, "total_ios": 19949, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84551, "max": 8447438, "mean": 144795.36087, "stddev": 269479.689826, "N": 19949}, "clat_ns": {"min": 4640, "max": 7080031, "mean": 94113.73322, "stddev": 113278.643651, "N": 19949, "percentile": {"1.000000": 5408, "5.000000": 5600, "10.000000": 6304, "20.000000": 68096, "30.000000": 78336, "40.000000": 86528, "50.000000": 92672, "60.000000": 97792, "70.000000": 103936, "80.000000": 112128, "90.000000": 136192, "95.000000": 175104, "99.000000": 236544, "99.500000": 276480, "99.900000": 1138688, "99.950000": 3194880, "99.990000": 4292608}}, "lat_ns": {"min": 146010, "max": 8463278, "mean": 241257.624543, "stddev": 282493.680703, "N": 19949}, "bw_min": 1183, "bw_max": 2316, "bw_agg": 96.816197, "bw_mean": 1931.75, "bw_dev": 531.082778, "bw_samples": 4, "iops_min": 2367, "iops_max": 4632, "iops_mean": 3864.0, "iops_stddev": 1061.928748, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 9.5, "sys_cpu": 47.56, "ctx": 19961, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.37656, "20": 0.280716, "50": 0.040102, "100": 51.782044, "250": 34.738583, "500": 0.556419, "750": 0.110281, "1000": 0.010026}, "latency_ms": {"2": 0.030077, "4": 0.060153, "10": 0.015038, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 19597, "read_merges": 0, "write_merges": 2451, "read_ticks": 0, "write_ticks": 2650, "in_queue": 2649, "util": 79.694718}]} 2026-04-21 19:17:25.265033 2026-04-21 19:10:15.083464 -452 12 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799076, "timestamp_ms": 1776799076805, "time": "Tue Apr 21 19:17:56 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12524032, "io_kbytes": 12230, "bw_bytes": 2504305, "bw": 2445, "iops": 4891.221756, "runtime": 5001, "total_ios": 24461, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78230, "max": 3140758, "mean": 94664.809779, "stddev": 31482.651517, "N": 24461}, "clat_ns": {"min": 4020, "max": 8519479, "mean": 99628.731491, "stddev": 234182.638553, "N": 24461, "percentile": {"1.000000": 50432, "5.000000": 52480, "10.000000": 54016, "20.000000": 57600, "30.000000": 59648, "40.000000": 63744, "50.000000": 70144, "60.000000": 82432, "70.000000": 87552, "80.000000": 95744, "90.000000": 115200, "95.000000": 150528, "99.000000": 634880, "99.500000": 1613824, "99.900000": 3948544, "99.950000": 4554752, "99.990000": 6193152}}, "lat_ns": {"min": 126891, "max": 8651310, "mean": 196297.470872, "stddev": 240426.743258, "N": 24461}, "bw_min": 1471, "bw_max": 3000, "bw_agg": 99.27992, "bw_mean": 2428.0, "bw_dev": 663.39179, "bw_samples": 4, "iops_min": 2943, "iops_max": 6000, "iops_mean": 4856.75, "iops_stddev": 1326.496231, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.66, "sys_cpu": 60.1, "ctx": 24271, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.171702, "20": 0.069498, "50": 0.52737, "100": 82.797106, "250": 15.019827, "500": 0.339316, "750": 0.102204, "1000": 0.04497}, "latency_ms": {"2": 0.588692, "4": 0.245288, "10": 0.094027, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23142, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2916, "write_ticks": 0, "in_queue": 2917, "util": 77.318528}]} 2026-04-21 19:17:35.031084 2026-04-21 19:10:15.083464 -453 12 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799100, "timestamp_ms": 1776799100624, "time": "Tue Apr 21 19:18:20 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12400128, "io_kbytes": 12109, "bw_bytes": 2479529, "bw": 2421, "iops": 4842.831434, "runtime": 5001, "total_ios": 24219, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79251, "max": 3322849, "mean": 93648.214831, "stddev": 30889.065114, "N": 24219}, "clat_ns": {"min": 5540, "max": 7258862, "mean": 100830.845741, "stddev": 243345.926595, "N": 24219, "percentile": {"1.000000": 51456, "5.000000": 52992, "10.000000": 54016, "20.000000": 59136, "30.000000": 63232, "40.000000": 68096, "50.000000": 72192, "60.000000": 82432, "70.000000": 88576, "80.000000": 94720, "90.000000": 117248, "95.000000": 148480, "99.000000": 370688, "99.500000": 1695744, "99.900000": 4358144, "99.950000": 4751360, "99.990000": 5472256}}, "lat_ns": {"min": 129991, "max": 7390453, "mean": 196596.014451, "stddev": 249462.189469, "N": 24219}, "bw_min": 1464, "bw_max": 2867, "bw_agg": 98.083144, "bw_mean": 2375.0, "bw_dev": 655.051652, "bw_samples": 4, "iops_min": 2929, "iops_max": 5735, "iops_mean": 4751.0, "iops_stddev": 1310.103304, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.1, "sys_cpu": 50.88, "ctx": 24085, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.08258, "20": 0.066064, "50": 0.388125, "100": 83.339527, "250": 14.975845, "500": 0.20232, "750": 0.061935, "1000": 0.057806}, "latency_ms": {"2": 0.437673, "4": 0.280771, "10": 0.107354, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22945, "write_ios": 0, "read_merges": 0, "write_merges": 1, "read_ticks": 2854, "write_ticks": 0, "in_queue": 2854, "util": 79.571222}]} 2026-04-21 19:17:58.468352 2026-04-21 19:10:15.083464 -454 12 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799110, "timestamp_ms": 1776799110665, "time": "Tue Apr 21 19:18:30 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6183936, "io_kbytes": 6039, "bw_bytes": 1235798, "bw": 1206, "iops": 2413.669065, "runtime": 5004, "total_ios": 12078, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93540, "max": 10740121, "mean": 390828.110283, "stddev": 287337.522119, "N": 12078}, "clat_ns": {"min": 4790, "max": 2148382, "mean": 7944.069548, "stddev": 25123.426943, "N": 12078, "percentile": {"1.000000": 4960, "5.000000": 5088, "10.000000": 5152, "20.000000": 5216, "30.000000": 5280, "40.000000": 5344, "50.000000": 5472, "60.000000": 5536, "70.000000": 5600, "80.000000": 5792, "90.000000": 7968, "95.000000": 8896, "99.000000": 113152, "99.500000": 123392, "99.900000": 191488, "99.950000": 232448, "99.990000": 464896}}, "lat_ns": {"min": 177341, "max": 10755231, "mean": 402444.078407, "stddev": 288832.437665, "N": 12078}, "bw_min": 1030, "bw_max": 1342, "bw_agg": 100.0, "bw_mean": 1235.75, "bw_dev": 140.632796, "bw_samples": 4, "iops_min": 2060, "iops_max": 2685, "iops_mean": 2472.25, "iops_stddev": 281.75329, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5003, "usr_cpu": 6.01639, "sys_cpu": 71.297222, "ctx": 12126, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.75443, "20": 1.556549, "50": 0.091075, "100": 0.273224, "250": 1.291605, "500": 0.024839, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 1, "write_ios": 11941, "read_merges": 0, "write_merges": 20547, "read_ticks": 0, "write_ticks": 1785, "in_queue": 1785, "util": 79.435484}]} 2026-04-21 19:18:22.24416 2026-04-21 19:10:15.083464 -455 12 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799121, "timestamp_ms": 1776799121954, "time": "Tue Apr 21 19:18:41 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 61300736, "io_kbytes": 59864, "bw_bytes": 12257695, "bw": 11970, "iops": 2992.60148, "runtime": 5001, "total_ios": 14966, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 239361, "max": 111319425, "mean": 316456.00167, "stddev": 943271.679799, "N": 14966}, "clat_ns": {"min": 4930, "max": 488282, "mean": 5757.506214, "stddev": 5705.562398, "N": 14966, "percentile": {"1.000000": 5024, "5.000000": 5088, "10.000000": 5152, "20.000000": 5152, "30.000000": 5216, "40.000000": 5216, "50.000000": 5280, "60.000000": 5280, "70.000000": 5344, "80.000000": 5472, "90.000000": 5792, "95.000000": 8256, "99.000000": 12480, "99.500000": 16768, "99.900000": 47872, "99.950000": 68096, "99.990000": 272384}}, "lat_ns": {"min": 247021, "max": 111359295, "mean": 325258.878191, "stddev": 944571.906636, "N": 14966}, "bw_min": 11008, "bw_max": 12876, "bw_agg": 98.342535, "bw_mean": 11772.0, "bw_dev": 816.006536, "bw_samples": 4, "iops_min": 2752, "iops_max": 3219, "iops_mean": 2943.0, "iops_stddev": 204.001634, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.36, "sys_cpu": 66.82, "ctx": 15018, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 98.48991, "20": 1.242817, "50": 0.180409, "100": 0.053454, "250": 0.020045, "500": 0.013364, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 14580, "read_merges": 0, "write_merges": 29080, "read_ticks": 0, "write_ticks": 2418, "in_queue": 2534, "util": 50.462777}]} 2026-04-21 19:18:33.813099 2026-04-21 19:10:15.083464 -456 12 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799138, "timestamp_ms": 1776799138305, "time": "Tue Apr 21 19:18:58 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 101089280, "io_kbytes": 98720, "bw_bytes": 20229993, "bw": 19755, "iops": 4938.963378, "runtime": 4997, "total_ios": 24680, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 80070, "max": 3378989, "mean": 94323.637763, "stddev": 30836.315307, "N": 24680}, "clat_ns": {"min": 4370, "max": 6529167, "mean": 97530.445421, "stddev": 220167.389612, "N": 24680, "percentile": {"1.000000": 50944, "5.000000": 52992, "10.000000": 54528, "20.000000": 58112, "30.000000": 60672, "40.000000": 64256, "50.000000": 69120, "60.000000": 81408, "70.000000": 88576, "80.000000": 93696, "90.000000": 111104, "95.000000": 140288, "99.000000": 634880, "99.500000": 1515520, "99.900000": 3784704, "99.950000": 4292608, "99.990000": 5406720}}, "lat_ns": {"min": 130200, "max": 6658268, "mean": 193948.288817, "stddev": 226198.279199, "N": 24680}, "bw_min": 13428, "bw_max": 22713, "bw_agg": 96.300577, "bw_mean": 19025.25, "bw_dev": 4511.974983, "bw_samples": 4, "iops_min": 3357, "iops_max": 5678, "iops_mean": 4756.25, "iops_stddev": 1127.92564, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 23.86, "sys_cpu": 43.56, "ctx": 24476, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.429498, "20": 0.048622, "50": 0.279579, "100": 84.886548, "250": 13.075365, "500": 0.210697, "750": 0.101297, "1000": 0.085089}, "latency_ms": {"2": 0.575365, "4": 0.251216, "10": 0.056726, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23806, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2972, "write_ticks": 0, "in_queue": 2972, "util": 74.288039}]} 2026-04-21 19:18:44.11658 2026-04-21 19:10:15.083464 -457 12 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799155, "timestamp_ms": 1776799155753, "time": "Tue Apr 21 19:19:15 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 96550912, "io_kbytes": 94288, "bw_bytes": 19306321, "bw": 18853, "iops": 4713.457309, "runtime": 5001, "total_ios": 23572, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 81751, "max": 3021998, "mean": 96530.129518, "stddev": 28801.125884, "N": 23572}, "clat_ns": {"min": 4130, "max": 6390336, "mean": 103543.368997, "stddev": 226486.040793, "N": 23572, "percentile": {"1.000000": 51456, "5.000000": 54016, "10.000000": 56064, "20.000000": 60160, "30.000000": 64256, "40.000000": 68096, "50.000000": 76288, "60.000000": 85504, "70.000000": 90624, "80.000000": 97792, "90.000000": 117248, "95.000000": 150528, "99.000000": 1019904, "99.500000": 1597440, "99.900000": 3817472, "99.950000": 4423680, "99.990000": 5472256}}, "lat_ns": {"min": 132591, "max": 6536457, "mean": 202354.513194, "stddev": 232203.207848, "N": 23572}, "bw_min": 10000, "bw_max": 22004, "bw_agg": 95.86912, "bw_mean": 18075.0, "bw_dev": 5645.978274, "bw_samples": 4, "iops_min": 2500, "iops_max": 5501, "iops_mean": 4518.75, "iops_stddev": 1411.494568, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 11.46, "sys_cpu": 55.52, "ctx": 23419, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.267266, "20": 0.033939, "50": 0.267266, "100": 81.554387, "250": 16.443238, "500": 0.195147, "750": 0.135754, "1000": 0.097573}, "latency_ms": {"2": 0.699983, "4": 0.233328, "10": 0.072119, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22964, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2964, "write_ticks": 0, "in_queue": 2963, "util": 73.61668}]} 2026-04-21 19:18:59.903055 2026-04-21 19:10:15.083464 -485 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-21 19:12:43' --until '2026-04-21 19:26:10' 0 Systemd errors records 2026-04-21 19:12:43.858048 2026-04-21 19:26:10.364272 -486 12 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 274MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260421-192619Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:26:23.821075 2026-04-21 19:10:15.083464 -458 12 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799165, "timestamp_ms": 1776799165601, "time": "Tue Apr 21 19:19:25 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 44474368, "io_kbytes": 43432, "bw_bytes": 8893094, "bw": 8684, "iops": 2171.165767, "runtime": 5001, "total_ios": 10858, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 108021, "max": 7279982, "mean": 439531.118991, "stddev": 359116.12973, "N": 10858}, "clat_ns": {"min": 4920, "max": 1127047, "mean": 6319.569626, "stddev": 11636.389475, "N": 10858, "percentile": {"1.000000": 5088, "5.000000": 5216, "10.000000": 5280, "20.000000": 5344, "30.000000": 5408, "40.000000": 5472, "50.000000": 5536, "60.000000": 5600, "70.000000": 5728, "80.000000": 5920, "90.000000": 8896, "95.000000": 9536, "99.000000": 12736, "99.500000": 17280, "99.900000": 31360, "99.950000": 118272, "99.990000": 261120}}, "lat_ns": {"min": 214951, "max": 7295142, "mean": 449413.511604, "stddev": 360705.460056, "N": 10858}, "bw_min": 4487, "bw_max": 10232, "bw_agg": 97.401602, "bw_mean": 8459.0, "bw_dev": 2704.036366, "bw_samples": 4, "iops_min": 1121, "iops_max": 2558, "iops_mean": 2114.5, "iops_stddev": 676.325612, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.58, "sys_cpu": 71.04, "ctx": 10869, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 97.623872, "20": 2.155093, "50": 0.138147, "100": 0.01, "250": 0.055259, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10575, "read_merges": 0, "write_merges": 21146, "read_ticks": 0, "write_ticks": 1665, "in_queue": 1665, "util": 71.376957}]} 2026-04-21 19:19:17.406247 2026-04-21 19:10:15.083464 -459 12 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799176, "timestamp_ms": 1776799176954, "time": "Tue Apr 21 19:19:36 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8839495680, "io_kbytes": 8632320, "bw_bytes": 1706466347, "bw": 1666471, "iops": 813.706564, "runtime": 5180, "total_ios": 4215, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 207531, "max": 11871418, "mean": 465692.561803, "stddev": 482270.431229, "N": 4215}, "clat_ns": {"min": 5230, "max": 188121152, "mean": 743562.95089, "stddev": 2948543.40024, "N": 4215, "percentile": {"1.000000": 5728, "5.000000": 6560, "10.000000": 7008, "20.000000": 585728, "30.000000": 634880, "40.000000": 667648, "50.000000": 700416, "60.000000": 733184, "70.000000": 782336, "80.000000": 839680, "90.000000": 937984, "95.000000": 1122304, "99.000000": 3588096, "99.500000": 4358144, "99.900000": 7176192, "99.950000": 9895936, "99.990000": 187695104}}, "lat_ns": {"min": 774364, "max": 188713365, "mean": 1213415.271412, "stddev": 2955253.313834, "N": 4215}, "bw_min": 1579944, "bw_max": 1912967, "bw_agg": 100.0, "bw_mean": 1784075.75, "bw_dev": 144501.575439, "bw_samples": 4, "iops_min": 771, "iops_max": 934, "iops_mean": 871.0, "iops_stddev": 70.753092, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5180, "usr_cpu": 3.088803, "sys_cpu": 26.389961, "ctx": 4966, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 13.736655, "20": 1.945433, "50": 0.260973, "100": 0.0, "250": 0.04745, "500": 0.332147, "750": 47.093713, "1000": 29.395018}, "latency_ms": {"2": 5.385528, "4": 1.020166, "10": 0.735469, "20": 0.023725, "50": 0.0, "100": 0.0, "250": 0.023725, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 9098, "read_merges": 0, "write_merges": 668, "read_ticks": 0, "write_ticks": 6110, "in_queue": 6111, "util": 88.536355}]} 2026-04-21 19:19:28.345049 2026-04-21 19:10:15.083464 -460 12 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799208, "timestamp_ms": 1776799208802, "time": "Tue Apr 21 19:20:08 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15091105792, "io_kbytes": 14737408, "bw_bytes": 3017617634, "bw": 2946892, "iops": 1438.912218, "runtime": 5001, "total_ios": 7196, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 197381, "max": 5404340, "mean": 234120.953168, "stddev": 110163.005234, "N": 7196}, "clat_ns": {"min": 5690, "max": 9369253, "mean": 446144.969983, "stddev": 368256.414787, "N": 7196, "percentile": {"1.000000": 127488, "5.000000": 272384, "10.000000": 292864, "20.000000": 342016, "30.000000": 362496, "40.000000": 378880, "50.000000": 395264, "60.000000": 411648, "70.000000": 440320, "80.000000": 477184, "90.000000": 536576, "95.000000": 602112, "99.000000": 2310144, "99.500000": 3588096, "99.900000": 4554752, "99.950000": 5144576, "99.990000": 9371648}}, "lat_ns": {"min": 464982, "max": 9624655, "mean": 683664.272096, "stddev": 387860.202942, "N": 7196}, "bw_min": 2088960, "bw_max": 3315712, "bw_agg": 99.126767, "bw_mean": 2921159.25, "bw_dev": 575610.526767, "bw_samples": 4, "iops_min": 1020, "iops_max": 1619, "iops_mean": 1426.25, "iops_stddev": 280.97494, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 13.7, "sys_cpu": 31.52, "ctx": 7301, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.347415, "20": 0.138966, "50": 0.013897, "100": 0.152863, "250": 1.167315, "500": 82.518066, "750": 13.354641, "1000": 0.430795}, "latency_ms": {"2": 0.73652, "4": 0.875486, "10": 0.264036, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13787, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4865, "write_ticks": 0, "in_queue": 4865, "util": 84.076433}]} 2026-04-21 19:19:47.585826 2026-04-21 19:10:15.083464 -461 12 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799224, "timestamp_ms": 1776799224828, "time": "Tue Apr 21 19:20:24 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15279849472, "io_kbytes": 14921728, "bw_bytes": 3055358822, "bw": 2983748, "iops": 1456.908618, "runtime": 5001, "total_ios": 7286, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 186391, "max": 4284975, "mean": 226434.666209, "stddev": 99368.431897, "N": 7286}, "clat_ns": {"min": 7110, "max": 11157563, "mean": 442122.464864, "stddev": 387647.876667, "N": 7286, "percentile": {"1.000000": 134144, "5.000000": 272384, "10.000000": 288768, "20.000000": 342016, "30.000000": 358400, "40.000000": 370688, "50.000000": 387072, "60.000000": 407552, "70.000000": 432128, "80.000000": 468992, "90.000000": 528384, "95.000000": 585728, "99.000000": 2375680, "99.500000": 3522560, "99.900000": 4816896, "99.950000": 5668864, "99.990000": 11206656}}, "lat_ns": {"min": 461033, "max": 11412835, "mean": 672644.85081, "stddev": 402955.093727, "N": 7286}, "bw_min": 2322157, "bw_max": 3353318, "bw_agg": 96.769271, "bw_mean": 2887352.0, "bw_dev": 531823.329688, "bw_samples": 4, "iops_min": 1133, "iops_max": 1637, "iops_mean": 1409.25, "iops_stddev": 259.938935, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.62, "sys_cpu": 34.18, "ctx": 7396, "majf": 0, "minf": 530, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.260774, "20": 0.247049, "50": 0.013725, "100": 0.13725, "250": 1.194071, "500": 83.873181, "750": 11.872083, "1000": 0.507823}, "latency_ms": {"2": 0.713698, "4": 0.919572, "10": 0.247049, "20": 0.013725, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13919, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4853, "write_ticks": 0, "in_queue": 4854, "util": 82.941777}]} 2026-04-21 19:20:10.444746 2026-04-21 19:10:15.083464 -462 12 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799234, "timestamp_ms": 1776799234643, "time": "Tue Apr 21 19:20:34 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9158262784, "io_kbytes": 8943616, "bw_bytes": 1831286299, "bw": 1788365, "iops": 873.225355, "runtime": 5001, "total_ios": 4367, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 192991, "max": 12198700, "mean": 446560.017174, "stddev": 562812.658623, "N": 4367}, "clat_ns": {"min": 5480, "max": 7830264, "mean": 678572.073964, "stddev": 595725.825311, "N": 4367, "percentile": {"1.000000": 5856, "5.000000": 6304, "10.000000": 6752, "20.000000": 577536, "30.000000": 618496, "40.000000": 634880, "50.000000": 659456, "60.000000": 684032, "70.000000": 724992, "80.000000": 774144, "90.000000": 864256, "95.000000": 1089536, "99.000000": 3620864, "99.500000": 4882432, "99.900000": 7110656, "99.950000": 7241728, "99.990000": 7831552}}, "lat_ns": {"min": 696394, "max": 12256240, "mean": 1128928.921456, "stddev": 691147.15237, "N": 4367}, "bw_min": 1485362, "bw_max": 1923196, "bw_agg": 99.929459, "bw_mean": 1787104.0, "bw_dev": 204469.20829, "bw_samples": 4, "iops_min": 725, "iops_max": 939, "iops_mean": 872.5, "iops_stddev": 99.951655, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.1, "sys_cpu": 22.74, "ctx": 5109, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 13.670712, "20": 1.419739, "50": 0.251889, "100": 0.022899, "250": 0.045798, "500": 0.503778, "750": 59.53744, "1000": 18.84589}, "latency_ms": {"2": 3.160064, "4": 1.671628, "10": 0.870163, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 9201, "read_merges": 0, "write_merges": 668, "read_ticks": 0, "write_ticks": 5832, "in_queue": 5832, "util": 91.375852}]} 2026-04-21 19:20:26.438991 2026-04-21 19:10:15.083464 -463 12 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799246, "timestamp_ms": 1776799246526, "time": "Tue Apr 21 19:20:46 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 3590324224, "io_kbytes": 3506176, "bw_bytes": 717777733, "bw": 700954, "iops": 171.131547, "runtime": 5002, "total_ios": 856, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1020286, "max": 2671447032, "mean": 5358709.75, "stddev": 91564921.125499, "N": 856}, "clat_ns": {"min": 5751, "max": 8640649, "mean": 455246.524533, "stddev": 633551.654333, "N": 856, "percentile": {"1.000000": 5920, "5.000000": 6048, "10.000000": 6240, "20.000000": 6624, "30.000000": 10432, "40.000000": 329728, "50.000000": 382976, "60.000000": 432128, "70.000000": 724992, "80.000000": 815104, "90.000000": 921600, "95.000000": 1056768, "99.000000": 2736128, "99.500000": 4145152, "99.900000": 8585216, "99.950000": 8585216, "99.990000": 8585216}}, "lat_ns": {"min": 1690240, "max": 2671771234, "mean": 5821528.391355, "stddev": 91561093.124669, "N": 856}, "bw_min": 732451, "bw_max": 1220608, "bw_agg": 100.0, "bw_mean": 976529.5, "bw_dev": 345179.124984, "bw_samples": 2, "iops_min": 178, "iops_max": 298, "iops_mean": 238.0, "iops_stddev": 84.852814, "iops_samples": 2}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 0.339932, "sys_cpu": 12.317536, "ctx": 3251, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 28.621495, "20": 8.64486, "50": 1.635514, "100": 0.0, "250": 0.0, "500": 26.518692, "750": 6.542056, "1000": 21.61215}, "latency_ms": {"2": 4.78972, "4": 0.934579, "10": 0.700935, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 3652, "read_merges": 0, "write_merges": 344, "read_ticks": 0, "write_ticks": 8037, "in_queue": 10924, "util": 94.263442}]} 2026-04-21 19:20:37.644559 2026-04-21 19:10:15.083464 -464 12 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799265, "timestamp_ms": 1776799265924, "time": "Tue Apr 21 19:21:05 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15946743808, "io_kbytes": 15572992, "bw_bytes": 3189348761, "bw": 3114598, "iops": 760.4, "runtime": 5000, "total_ios": 3802, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 524943, "max": 23324982, "mean": 827752.626512, "stddev": 499438.334537, "N": 3802}, "clat_ns": {"min": 6930, "max": 21593303, "mean": 465215.160179, "stddev": 625591.803773, "N": 3802, "percentile": {"1.000000": 9920, "5.000000": 175104, "10.000000": 268288, "20.000000": 313344, "30.000000": 329728, "40.000000": 346112, "50.000000": 370688, "60.000000": 391168, "70.000000": 411648, "80.000000": 444416, "90.000000": 505856, "95.000000": 651264, "99.000000": 3784704, "99.500000": 4227072, "99.900000": 5210112, "99.950000": 6324224, "99.990000": 21626880}}, "lat_ns": {"min": 773475, "max": 25113233, "mean": 1301261.593372, "stddev": 850199.304727, "N": 3802}, "bw_min": 2637824, "bw_max": 3780608, "bw_agg": 98.519539, "bw_mean": 3068488.0, "bw_dev": 537656.832641, "bw_samples": 4, "iops_min": 644, "iops_max": 923, "iops_mean": 749.0, "iops_stddev": 131.334179, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.14, "sys_cpu": 31.18, "ctx": 11387, "majf": 0, "minf": 536, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 1.052078, "20": 0.447133, "50": 0.026302, "100": 0.026302, "250": 5.760126, "500": 82.246186, "750": 5.760126, "1000": 0.604945}, "latency_ms": {"2": 1.551815, "4": 1.841136, "10": 0.657549, "20": 0.0, "50": 0.026302, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14807, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 5560, "write_ticks": 0, "in_queue": 5560, "util": 83.580891}]} 2026-04-21 19:20:51.054421 2026-04-21 19:10:15.083464 -465 12 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799282, "timestamp_ms": 1776799282193, "time": "Tue Apr 21 19:21:22 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 18274582528, "io_kbytes": 17846272, "bw_bytes": 3654185668, "bw": 3568540, "iops": 871.225755, "runtime": 5001, "total_ios": 4357, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 564253, "max": 5960554, "mean": 728591.956392, "stddev": 209614.262569, "N": 4357}, "clat_ns": {"min": 6080, "max": 4524726, "mean": 401623.873307, "stddev": 139815.884498, "N": 4357, "percentile": {"1.000000": 177152, "5.000000": 292864, "10.000000": 305152, "20.000000": 346112, "30.000000": 370688, "40.000000": 382976, "50.000000": 395264, "60.000000": 407552, "70.000000": 419840, "80.000000": 444416, "90.000000": 481280, "95.000000": 528384, "99.000000": 643072, "99.500000": 831488, "99.900000": 2277376, "99.950000": 3817472, "99.990000": 4554752}}, "lat_ns": {"min": 865015, "max": 7981266, "mean": 1135022.652284, "stddev": 277003.084743, "N": 4357}, "bw_min": 3367640, "bw_max": 3657728, "bw_agg": 100.0, "bw_mean": 3569057.0, "bw_dev": 137147.156109, "bw_samples": 4, "iops_min": 822, "iops_max": 893, "iops_mean": 871.25, "iops_stddev": 33.539777, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.24, "sys_cpu": 32.98, "ctx": 13042, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.091806, "20": 0.137709, "50": 0.0, "100": 0.0, "250": 1.354143, "500": 91.209548, "750": 6.678908, "1000": 0.29837}, "latency_ms": {"2": 0.091806, "4": 0.091806, "10": 0.045903, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 16997, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 5849, "write_ticks": 0, "in_queue": 5849, "util": 84.482064}]} 2026-04-21 19:21:07.511945 2026-04-21 19:10:15.083464 -466 12 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799291, "timestamp_ms": 1776799291819, "time": "Tue Apr 21 19:21:31 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9219080192, "io_kbytes": 9003008, "bw_bytes": 1843447348, "bw": 1800241, "iops": 439.512098, "runtime": 5001, "total_ios": 2198, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 904315, "max": 11493946, "mean": 1822125.33667, "stddev": 1018574.819344, "N": 2198}, "clat_ns": {"min": 5410, "max": 6515418, "mean": 426562.103276, "stddev": 451758.5331, "N": 2198, "percentile": {"1.000000": 5792, "5.000000": 6048, "10.000000": 7456, "20.000000": 175104, "30.000000": 197632, "40.000000": 230400, "50.000000": 268288, "60.000000": 536576, "70.000000": 585728, "80.000000": 651264, "90.000000": 749568, "95.000000": 888832, "99.000000": 2506752, "99.500000": 3424256, "99.900000": 4685824, "99.950000": 5013504, "99.990000": 6520832}}, "lat_ns": {"min": 1367568, "max": 12478081, "mean": 2254573.117834, "stddev": 1105120.238914, "N": 2198}, "bw_min": 1534465, "bw_max": 1933312, "bw_agg": 97.026035, "bw_mean": 1746703.25, "bw_dev": 163510.683735, "bw_samples": 4, "iops_min": 374, "iops_max": 472, "iops_mean": 426.25, "iops_stddev": 40.186026, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 1.72, "sys_cpu": 25.54, "ctx": 7974, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 11.55596, "20": 3.184713, "50": 0.545951, "100": 0.0, "250": 31.483167, "500": 10.509554, "750": 32.89354, "1000": 6.232939}, "latency_ms": {"2": 2.365787, "4": 1.046406, "10": 0.181984, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8879, "read_merges": 0, "write_merges": 334, "read_ticks": 0, "write_ticks": 5774, "in_queue": 5774, "util": 89.718876}]} 2026-04-21 19:21:24.182108 2026-04-21 19:10:15.083464 -467 12 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799314, "timestamp_ms": 1776799314188, "time": "Tue Apr 21 19:21:54 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9737728, "io_kbytes": 9509, "bw_bytes": 1947156, "bw": 1901, "iops": 3803.039392, "runtime": 5001, "total_ios": 19019, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84871, "max": 7333732, "mean": 142697.084126, "stddev": 224568.257196, "N": 19019}, "clat_ns": {"min": 4300, "max": 10262059, "mean": 107888.875808, "stddev": 252622.500413, "N": 19019, "percentile": {"1.000000": 4832, "5.000000": 5024, "10.000000": 5472, "20.000000": 64256, "30.000000": 73216, "40.000000": 78336, "50.000000": 89600, "60.000000": 97792, "70.000000": 105984, "80.000000": 117248, "90.000000": 154624, "95.000000": 195584, "99.000000": 313344, "99.500000": 1253376, "99.900000": 4489216, "99.950000": 4882432, "99.990000": 7241728}}, "lat_ns": {"min": 145470, "max": 10405089, "mean": 253125.146327, "stddev": 331791.58026, "N": 19019}, "bw_min": 998, "bw_max": 2337, "bw_agg": 96.344001, "bw_mean": 1832.75, "bw_dev": 616.963735, "bw_samples": 4, "iops_min": 1997, "iops_max": 4674, "iops_mean": 3666.25, "iops_stddev": 1233.655104, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 12.22, "sys_cpu": 44.08, "ctx": 18992, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.834534, "20": 0.394342, "50": 0.031547, "100": 50.418003, "250": 34.781008, "500": 0.814974, "750": 0.120932, "1000": 0.047321}, "latency_ms": {"2": 0.173511, "4": 0.241863, "10": 0.136705, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 18471, "read_merges": 0, "write_merges": 2309, "read_ticks": 0, "write_ticks": 3399, "in_queue": 3399, "util": 59.919679}]} 2026-04-21 19:21:46.492322 2026-04-21 19:10:15.083464 -468 12 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799338, "timestamp_ms": 1776799338522, "time": "Tue Apr 21 19:22:18 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 11458560, "io_kbytes": 11190, "bw_bytes": 2291253, "bw": 2237, "iops": 4475.104979, "runtime": 5001, "total_ios": 22380, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 46670, "max": 18465435, "mean": 101137.253887, "stddev": 157674.612678, "N": 22380}, "clat_ns": {"min": 4540, "max": 13747208, "mean": 110880.412958, "stddev": 276131.78702, "N": 22380, "percentile": {"1.000000": 47360, "5.000000": 54016, "10.000000": 55040, "20.000000": 59648, "30.000000": 63744, "40.000000": 71168, "50.000000": 82432, "60.000000": 89600, "70.000000": 96768, "80.000000": 123392, "90.000000": 148480, "95.000000": 177152, "99.000000": 288768, "99.500000": 1564672, "99.900000": 4489216, "99.950000": 5668864, "99.990000": 7176192}}, "lat_ns": {"min": 132581, "max": 18887568, "mean": 214647.238829, "stddev": 322014.107989, "N": 22380}, "bw_min": 1205, "bw_max": 2724, "bw_agg": 94.835795, "bw_mean": 2122.5, "bw_dev": 710.610301, "bw_samples": 4, "iops_min": 2410, "iops_max": 5449, "iops_mean": 4245.25, "iops_stddev": 1421.502814, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 18.32, "sys_cpu": 42.52, "ctx": 22289, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.773012, "20": 0.080429, "50": 0.245755, "100": 71.027703, "250": 26.671135, "500": 0.375335, "750": 0.098302, "1000": 0.098302}, "latency_ms": {"2": 0.236819, "4": 0.254692, "10": 0.134048, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22342, "write_ios": 33, "read_merges": 0, "write_merges": 26, "read_ticks": 2886, "write_ticks": 2290, "in_queue": 5182, "util": 76.53202}]} 2026-04-21 19:21:56.03327 2026-04-21 19:10:15.083464 -469 12 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799362, "timestamp_ms": 1776799362185, "time": "Tue Apr 21 19:22:42 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12033536, "io_kbytes": 11751, "bw_bytes": 2406225, "bw": 2349, "iops": 4699.660068, "runtime": 5001, "total_ios": 23503, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 82281, "max": 1289088, "mean": 96312.789048, "stddev": 30588.099826, "N": 23503}, "clat_ns": {"min": 5600, "max": 12305010, "mean": 104564.297409, "stddev": 255297.569828, "N": 23503, "percentile": {"1.000000": 52480, "5.000000": 54528, "10.000000": 55552, "20.000000": 59136, "30.000000": 64768, "40.000000": 68096, "50.000000": 75264, "60.000000": 86528, "70.000000": 90624, "80.000000": 97792, "90.000000": 114176, "95.000000": 150528, "99.000000": 847872, "99.500000": 1630208, "99.900000": 3948544, "99.950000": 5210112, "99.990000": 6717440}}, "lat_ns": {"min": 136021, "max": 12414321, "mean": 202854.328299, "stddev": 260860.966076, "N": 23503}, "bw_min": 1691, "bw_max": 2774, "bw_agg": 95.709088, "bw_mean": 2249.5, "bw_dev": 569.772177, "bw_samples": 4, "iops_min": 3382, "iops_max": 5549, "iops_mean": 4499.25, "iops_stddev": 1139.85127, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.18, "sys_cpu": 52.08, "ctx": 23374, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.148917, "20": 0.110624, "50": 0.268051, "100": 81.517253, "250": 16.483002, "500": 0.323363, "750": 0.119134, "1000": 0.106369}, "latency_ms": {"2": 0.591414, "4": 0.238267, "10": 0.08935, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22381, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2908, "write_ticks": 0, "in_queue": 2908, "util": 75.653595}]} 2026-04-21 19:22:20.097617 2026-04-21 19:10:15.083464 -500 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-21 19:26:16' --until '2026-04-21 19:28:35' 0 Systemd errors records 2026-04-21 19:26:16.731247 2026-04-21 19:28:35.212645 -574 18 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-22 08:11:34' --until '2026-04-22 08:31:52' 0 OOM records. 2026-04-22 08:11:34.83336 2026-04-22 08:31:52.212604 -575 18 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-22 08:11:34' --until '2026-04-22 08:31:52' 0 Systemd errors records 2026-04-22 08:11:34.83336 2026-04-22 08:31:52.212604 -470 12 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799371, "timestamp_ms": 1776799371913, "time": "Tue Apr 21 19:22:51 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5813248, "io_kbytes": 5677, "bw_bytes": 1162417, "bw": 1135, "iops": 2270.345931, "runtime": 5001, "total_ios": 11354, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 95720, "max": 8338527, "mean": 417934.037872, "stddev": 359685.967899, "N": 11354}, "clat_ns": {"min": 4590, "max": 564844, "mean": 7827.019641, "stddev": 16868.383199, "N": 11354, "percentile": {"1.000000": 4768, "5.000000": 4896, "10.000000": 4960, "20.000000": 5024, "30.000000": 5152, "40.000000": 5216, "50.000000": 5344, "60.000000": 5408, "70.000000": 5536, "80.000000": 5792, "90.000000": 9152, "95.000000": 9792, "99.000000": 115200, "99.500000": 130560, "99.900000": 209920, "99.950000": 226304, "99.990000": 313344}}, "lat_ns": {"min": 182041, "max": 8354468, "mean": 429116.17703, "stddev": 359974.251876, "N": 11354}, "bw_min": 1092, "bw_max": 1334, "bw_agg": 100.0, "bw_mean": 1226.0, "bw_dev": 105.388171, "bw_samples": 4, "iops_min": 2184, "iops_max": 2669, "iops_mean": 2452.5, "iops_stddev": 211.030014, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.48, "sys_cpu": 69.5, "ctx": 11376, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 95.89572, "20": 2.474899, "50": 0.167342, "100": 0.140919, "250": 1.294698, "500": 0.017615, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 11052, "read_merges": 0, "write_merges": 19147, "read_ticks": 0, "write_ticks": 1710, "in_queue": 1711, "util": 71.230677}]} 2026-04-21 19:22:43.857379 2026-04-21 19:10:15.083464 -471 12 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799383, "timestamp_ms": 1776799383172, "time": "Tue Apr 21 19:23:03 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 57319424, "io_kbytes": 55976, "bw_bytes": 11461592, "bw": 11192, "iops": 2798.240352, "runtime": 5001, "total_ios": 13994, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93891, "max": 5075509, "mean": 113828.431971, "stddev": 61731.105422, "N": 13994}, "clat_ns": {"min": 5650, "max": 12724822, "mean": 229432.469058, "stddev": 279507.396688, "N": 13994, "percentile": {"1.000000": 150528, "5.000000": 162816, "10.000000": 166912, "20.000000": 177152, "30.000000": 185344, "40.000000": 187392, "50.000000": 193536, "60.000000": 199680, "70.000000": 209920, "80.000000": 234496, "90.000000": 276480, "95.000000": 317440, "99.000000": 806912, "99.500000": 1810432, "99.900000": 4358144, "99.950000": 5275648, "99.990000": 7241728}}, "lat_ns": {"min": 236501, "max": 12829223, "mean": 345985.415607, "stddev": 289027.049425, "N": 13994}, "bw_min": 11480, "bw_max": 12623, "bw_agg": 100.0, "bw_mean": 12166.75, "bw_dev": 509.429338, "bw_samples": 4, "iops_min": 2870, "iops_max": 3155, "iops_mean": 3041.5, "iops_stddev": 127.133788, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.12, "sys_cpu": 30.34, "ctx": 14003, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.15721, "20": 0.19294, "50": 0.0, "100": 0.0, "250": 84.929255, "500": 13.48435, "750": 0.178648, "1000": 0.221524}, "latency_ms": {"2": 0.371588, "4": 0.307275, "10": 0.150064, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 13807, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2149, "in_queue": 2150, "util": 79.244525}]} 2026-04-21 19:22:54.705367 2026-04-21 19:10:15.083464 -472 12 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799400, "timestamp_ms": 1776799400501, "time": "Tue Apr 21 19:23:20 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 96210944, "io_kbytes": 93956, "bw_bytes": 19238341, "bw": 18787, "iops": 4696.860628, "runtime": 5001, "total_ios": 23489, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 45130, "max": 15590889, "mean": 95549.701605, "stddev": 111081.680376, "N": 23489}, "clat_ns": {"min": 5820, "max": 158910065, "mean": 105051.318021, "stddev": 1048763.07093, "N": 23489, "percentile": {"1.000000": 52480, "5.000000": 54016, "10.000000": 56064, "20.000000": 62720, "30.000000": 75264, "40.000000": 80384, "50.000000": 86528, "60.000000": 90624, "70.000000": 94720, "80.000000": 108032, "90.000000": 126464, "95.000000": 142336, "99.000000": 240640, "99.500000": 403456, "99.900000": 3325952, "99.950000": 3883008, "99.990000": 6127616}}, "lat_ns": {"min": 135901, "max": 159060296, "mean": 203112.145728, "stddev": 1055729.286387, "N": 23489}, "bw_min": 18664, "bw_max": 20831, "bw_agg": 100.0, "bw_mean": 19768.75, "bw_dev": 940.558478, "bw_samples": 4, "iops_min": 4666, "iops_max": 5207, "iops_mean": 4942.0, "iops_stddev": 234.857404, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 21.48, "sys_cpu": 38.76, "ctx": 23451, "majf": 0, "minf": 24, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.153263, "20": 0.106433, "50": 0.149006, "100": 75.052152, "250": 23.628081, "500": 0.476819, "750": 0.080889, "1000": 0.042573}, "latency_ms": {"2": 0.149006, "4": 0.119205, "10": 0.038316, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23489, "write_ios": 46, "read_merges": 0, "write_merges": 18, "read_ticks": 2930, "write_ticks": 2666, "in_queue": 5597, "util": 85.518323}]} 2026-04-21 19:23:04.880008 2026-04-21 19:10:15.083464 -473 12 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799417, "timestamp_ms": 1776799417316, "time": "Tue Apr 21 19:23:37 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 112214016, "io_kbytes": 109584, "bw_bytes": 22438315, "bw": 21912, "iops": 5478.104379, "runtime": 5001, "total_ios": 27396, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77720, "max": 5214749, "mean": 89505.995656, "stddev": 34914.230173, "N": 27396}, "clat_ns": {"min": 5420, "max": 7253392, "mean": 82397.771828, "stddev": 139011.126645, "N": 27396, "percentile": {"1.000000": 50432, "5.000000": 53504, "10.000000": 56064, "20.000000": 58112, "30.000000": 61696, "40.000000": 64768, "50.000000": 70144, "60.000000": 81408, "70.000000": 86528, "80.000000": 89600, "90.000000": 97792, "95.000000": 110080, "99.000000": 173056, "99.500000": 228352, "99.900000": 1875968, "99.950000": 4014080, "99.990000": 5865472}}, "lat_ns": {"min": 128910, "max": 7378662, "mean": 173789.559461, "stddev": 145797.487595, "N": 27396}, "bw_min": 19652, "bw_max": 23452, "bw_agg": 99.204027, "bw_mean": 21738.25, "bw_dev": 1652.222417, "bw_samples": 4, "iops_min": 4913, "iops_max": 5863, "iops_mean": 5434.5, "iops_stddev": 413.013721, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.08, "sys_cpu": 66.42, "ctx": 27264, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.156957, "20": 0.010951, "50": 0.532925, "100": 90.797927, "250": 8.04862, "500": 0.146007, "750": 0.040152, "1000": 0.047452}, "latency_ms": {"2": 0.131406, "4": 0.036502, "10": 0.051102, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 26691, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3247, "write_ticks": 0, "in_queue": 3247, "util": 83.990346}]} 2026-04-21 19:23:22.250961 2026-04-21 19:10:15.083464 -474 12 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799427, "timestamp_ms": 1776799427021, "time": "Tue Apr 21 19:23:47 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 42258432, "io_kbytes": 41268, "bw_bytes": 8449996, "bw": 8251, "iops": 2062.987403, "runtime": 5001, "total_ios": 10317, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 70371, "max": 206770128, "mean": 134689.773093, "stddev": 2036907.107843, "N": 10317}, "clat_ns": {"min": 9360, "max": 21272731, "mean": 333675.880973, "stddev": 437805.431692, "N": 10317, "percentile": {"1.000000": 181248, "5.000000": 195584, "10.000000": 205824, "20.000000": 222208, "30.000000": 236544, "40.000000": 257024, "50.000000": 280576, "60.000000": 296960, "70.000000": 309248, "80.000000": 329728, "90.000000": 387072, "95.000000": 444416, "99.000000": 2375680, "99.500000": 3522560, "99.900000": 5144576, "99.950000": 6258688, "99.990000": 7831552}}, "lat_ns": {"min": 266882, "max": 207369741, "mean": 471062.031114, "stddev": 2087703.429906, "N": 10317}, "bw_min": 6101, "bw_max": 10081, "bw_agg": 100.0, "bw_mean": 8412.5, "bw_dev": 1945.888743, "bw_samples": 4, "iops_min": 1525, "iops_max": 2520, "iops_mean": 2103.0, "iops_stddev": 486.499743, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.0, "sys_cpu": 24.58, "ctx": 10344, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.029078, "20": 0.0, "50": 0.0, "100": 0.0, "250": 36.851798, "500": 59.804207, "750": 0.930503, "1000": 0.329553}, "latency_ms": {"2": 0.785112, "4": 0.988659, "10": 0.271397, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10044, "read_merges": 0, "write_merges": 45, "read_ticks": 0, "write_ticks": 2033, "in_queue": 2255, "util": 80.787781}]} 2026-04-21 19:23:39.37064 2026-04-21 19:10:15.083464 -475 12 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799438, "timestamp_ms": 1776799438020, "time": "Tue Apr 21 19:23:58 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9183428608, "io_kbytes": 8968192, "bw_bytes": 1836318457, "bw": 1793279, "iops": 875.624875, "runtime": 5001, "total_ios": 4379, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 191721, "max": 9782205, "mean": 289078.019182, "stddev": 223810.196688, "N": 4379}, "clat_ns": {"min": 11670, "max": 7691893, "mean": 834554.700617, "stddev": 537292.077398, "N": 4379, "percentile": {"1.000000": 432128, "5.000000": 577536, "10.000000": 602112, "20.000000": 643072, "30.000000": 675840, "40.000000": 700416, "50.000000": 724992, "60.000000": 765952, "70.000000": 806912, "80.000000": 872448, "90.000000": 995328, "95.000000": 1204224, "99.000000": 3751936, "99.500000": 4816896, "99.900000": 6455296, "99.950000": 6586368, "99.990000": 7700480}}, "lat_ns": {"min": 718164, "max": 9850506, "mean": 1127075.171957, "stddev": 587655.888164, "N": 4379}, "bw_min": 1606514, "bw_max": 1959936, "bw_agg": 98.036127, "bw_mean": 1758062.5, "bw_dev": 148355.053242, "bw_samples": 4, "iops_min": 784, "iops_max": 957, "iops_mean": 858.25, "iops_stddev": 72.587304, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.4, "sys_cpu": 23.92, "ctx": 4451, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.114181, "50": 0.091345, "100": 0.0, "250": 0.091345, "500": 0.981959, "750": 54.989724, "1000": 33.866179}, "latency_ms": {"2": 7.421786, "4": 1.598538, "10": 0.844942, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8556, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5581, "in_queue": 5581, "util": 90.638811}]} 2026-04-21 19:23:50.142774 2026-04-21 19:10:15.083464 -476 12 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799456, "timestamp_ms": 1776799456074, "time": "Tue Apr 21 19:24:16 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15047065600, "io_kbytes": 14694400, "bw_bytes": 3008811357, "bw": 2938292, "iops": 1434.713057, "runtime": 5001, "total_ios": 7175, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 184561, "max": 32756127, "mean": 237881.436516, "stddev": 485900.785418, "N": 7175}, "clat_ns": {"min": 5540, "max": 10365529, "mean": 442875.907178, "stddev": 369067.344258, "N": 7175, "percentile": {"1.000000": 86528, "5.000000": 264192, "10.000000": 284672, "20.000000": 342016, "30.000000": 362496, "40.000000": 378880, "50.000000": 395264, "60.000000": 411648, "70.000000": 440320, "80.000000": 477184, "90.000000": 536576, "95.000000": 610304, "99.000000": 2113536, "99.500000": 3325952, "99.900000": 4947968, "99.950000": 5406720, "99.990000": 10420224}}, "lat_ns": {"min": 456842, "max": 32789147, "mean": 685007.955679, "stddev": 601329.965256, "N": 7175}, "bw_min": 2228043, "bw_max": 3377870, "bw_agg": 97.354847, "bw_mean": 2860570.75, "bw_dev": 595110.870518, "bw_samples": 4, "iops_min": 1087, "iops_max": 1649, "iops_mean": 1396.25, "iops_stddev": 290.972364, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 11.08, "sys_cpu": 32.64, "ctx": 7275, "majf": 0, "minf": 535, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.571429, "20": 0.362369, "50": 0.0, "100": 0.181185, "250": 1.714286, "500": 81.379791, "750": 13.28223, "1000": 0.808362}, "latency_ms": {"2": 0.641115, "4": 0.752613, "10": 0.292683, "20": 0.013937, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13683, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4837, "write_ticks": 0, "in_queue": 4837, "util": 83.247898}]} 2026-04-21 19:24:01.404224 2026-04-21 19:10:15.083464 -477 12 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799472, "timestamp_ms": 1776799472407, "time": "Tue Apr 21 19:24:32 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14099152896, "io_kbytes": 13768704, "bw_bytes": 2819266725, "bw": 2753190, "iops": 1344.331134, "runtime": 5001, "total_ios": 6723, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 185601, "max": 11073443, "mean": 233816.137736, "stddev": 194058.001287, "N": 6723}, "clat_ns": {"min": 6690, "max": 184942034, "mean": 491720.526253, "stddev": 2281236.267272, "N": 6723, "percentile": {"1.000000": 115200, "5.000000": 272384, "10.000000": 296960, "20.000000": 346112, "30.000000": 366592, "40.000000": 382976, "50.000000": 403456, "60.000000": 423936, "70.000000": 456704, "80.000000": 501760, "90.000000": 577536, "95.000000": 675840, "99.000000": 2572288, "99.500000": 3620864, "99.900000": 5079040, "99.950000": 5406720, "99.990000": 185597952}}, "lat_ns": {"min": 459373, "max": 185254136, "mean": 729414.231147, "stddev": 2290328.240772, "N": 6723}, "bw_min": 2604499, "bw_max": 3316491, "bw_agg": 100.0, "bw_mean": 3055921.0, "bw_dev": 313939.410818, "bw_samples": 4, "iops_min": 1271, "iops_max": 1619, "iops_mean": 1491.75, "iops_stddev": 153.513029, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 11.137772, "sys_cpu": 31.053789, "ctx": 6829, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.490852, "20": 0.297486, "50": 0.014874, "100": 0.118994, "250": 1.160196, "500": 77.524914, "750": 17.031087, "1000": 1.100699}, "latency_ms": {"2": 1.011453, "4": 1.026328, "10": 0.20824, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.014874, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13216, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4781, "write_ticks": 0, "in_queue": 4782, "util": 81.204819}]} 2026-04-21 19:24:17.717288 2026-04-21 19:10:15.083464 -478 12 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799481, "timestamp_ms": 1776799481971, "time": "Tue Apr 21 19:24:41 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9080668160, "io_kbytes": 8867840, "bw_bytes": 1808537773, "bw": 1766150, "iops": 862.378012, "runtime": 5021, "total_ios": 4330, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 195441, "max": 13395146, "mean": 294005.491455, "stddev": 367967.986062, "N": 4330}, "clat_ns": {"min": 9280, "max": 28721653, "mean": 844013.136721, "stddev": 854231.850645, "N": 4330, "percentile": {"1.000000": 403456, "5.000000": 561152, "10.000000": 585728, "20.000000": 618496, "30.000000": 643072, "40.000000": 675840, "50.000000": 708608, "60.000000": 741376, "70.000000": 774144, "80.000000": 839680, "90.000000": 970752, "95.000000": 1318912, "99.000000": 4145152, "99.500000": 4882432, "99.900000": 8224768, "99.950000": 8978432, "99.990000": 28704768}}, "lat_ns": {"min": 685924, "max": 28946195, "mean": 1143661.167206, "stddev": 932962.782341, "N": 4330}, "bw_min": 1391248, "bw_max": 1980416, "bw_agg": 100.0, "bw_mean": 1772168.6, "bw_dev": 244393.877943, "bw_samples": 5, "iops_min": 679, "iops_max": 967, "iops_mean": 865.2, "iops_stddev": 119.468406, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5020, "usr_cpu": 6.772908, "sys_cpu": 20.936255, "ctx": 4411, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.161663, "20": 0.207852, "50": 0.046189, "100": 0.0, "250": 0.115473, "500": 1.362587, "750": 61.247113, "1000": 27.921478}, "latency_ms": {"2": 5.727483, "4": 1.939954, "10": 1.224018, "20": 0.0, "50": 0.046189, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8464, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5542, "in_queue": 5542, "util": 91.770373}]} 2026-04-21 19:24:34.347386 2026-04-21 19:10:15.083464 -479 12 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799510, "timestamp_ms": 1776799510380, "time": "Tue Apr 21 19:25:10 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7117733888, "io_kbytes": 6950912, "bw_bytes": 1422977586, "bw": 1389626, "iops": 339.264294, "runtime": 5002, "total_ios": 1697, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 930825, "max": 811241463, "mean": 2370305.535651, "stddev": 19801757.586305, "N": 1697}, "clat_ns": {"min": 8820, "max": 26806513, "mean": 549000.063642, "stddev": 1027551.239975, "N": 1697, "percentile": {"1.000000": 148480, "5.000000": 179200, "10.000000": 195584, "20.000000": 226304, "30.000000": 252928, "40.000000": 296960, "50.000000": 501760, "60.000000": 585728, "70.000000": 634880, "80.000000": 684032, "90.000000": 798720, "95.000000": 913408, "99.000000": 3391488, "99.500000": 4423680, "99.900000": 26607616, "99.950000": 26869760, "99.990000": 26869760}}, "lat_ns": {"min": 1448188, "max": 811579914, "mean": 2926730.123159, "stddev": 19823119.687415, "N": 1697}, "bw_min": 1035252, "bw_max": 1976391, "bw_agg": 100.0, "bw_mean": 1635598.75, "bw_dev": 426067.125188, "bw_samples": 4, "iops_min": 252, "iops_max": 482, "iops_mean": 399.0, "iops_stddev": 104.233712, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 3.119376, "sys_cpu": 18.536293, "ctx": 5934, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.058928, "20": 0.058928, "50": 0.117855, "100": 0.058928, "250": 28.520919, "500": 21.037124, "750": 36.947555, "1000": 9.487331}, "latency_ms": {"2": 2.180318, "4": 0.883913, "10": 0.530348, "20": 0.0, "50": 0.117855, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 6578, "read_merges": 0, "write_merges": 5, "read_ticks": 0, "write_ticks": 6590, "in_queue": 6590, "util": 92.721075}]} 2026-04-21 19:25:02.68549 2026-04-21 19:10:15.083464 -480 12 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799537, "timestamp_ms": 1776799537725, "time": "Tue Apr 21 19:25:37 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 16693329920, "io_kbytes": 16302080, "bw_bytes": 3338665984, "bw": 3260416, "iops": 796.0, "runtime": 5000, "total_ios": 3980, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 539803, "max": 15987381, "mean": 804967.14799, "stddev": 355273.441111, "N": 3980}, "clat_ns": {"min": 6470, "max": 46806807, "mean": 430630.778643, "stddev": 856563.697107, "N": 3980, "percentile": {"1.000000": 10048, "5.000000": 140288, "10.000000": 264192, "20.000000": 309248, "30.000000": 329728, "40.000000": 342016, "50.000000": 358400, "60.000000": 378880, "70.000000": 399360, "80.000000": 432128, "90.000000": 485376, "95.000000": 544768, "99.000000": 3063808, "99.500000": 3981312, "99.900000": 5668864, "99.950000": 5931008, "99.990000": 46923776}}, "lat_ns": {"min": 805584, "max": 47715422, "mean": 1242970.434673, "stddev": 964548.987407, "N": 3980}, "bw_min": 2446961, "bw_max": 3866624, "bw_agg": 100.0, "bw_mean": 3317456.75, "bw_dev": 609862.205998, "bw_samples": 4, "iops_min": 597, "iops_max": 944, "iops_mean": 809.75, "iops_stddev": 149.057875, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 1.64, "sys_cpu": 33.36, "ctx": 11903, "majf": 0, "minf": 535, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 1.005025, "20": 1.457286, "50": 0.0, "100": 0.175879, "250": 5.201005, "500": 84.095477, "750": 5.0, "1000": 0.326633}, "latency_ms": {"2": 1.105528, "4": 1.20603, "10": 0.40201, "20": 0.0, "50": 0.025126, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 15886, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 5773, "write_ticks": 0, "in_queue": 5773, "util": 69.719002}]} 2026-04-21 19:25:18.793604 2026-04-21 19:10:15.083464 -481 12 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799556, "timestamp_ms": 1776799556055, "time": "Tue Apr 21 19:25:56 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 16341008384, "io_kbytes": 15958016, "bw_bytes": 3266894918, "bw": 3190327, "iops": 778.888445, "runtime": 5002, "total_ios": 3896, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 579114, "max": 5460002, "mean": 830419.195585, "stddev": 259958.030013, "N": 3896}, "clat_ns": {"min": 5550, "max": 7341352, "mean": 430252.929671, "stddev": 467498.885755, "N": 3896, "percentile": {"1.000000": 10304, "5.000000": 138240, "10.000000": 272384, "20.000000": 309248, "30.000000": 325632, "40.000000": 342016, "50.000000": 358400, "60.000000": 374784, "70.000000": 399360, "80.000000": 432128, "90.000000": 489472, "95.000000": 585728, "99.000000": 3129344, "99.500000": 3817472, "99.900000": 5865472, "99.950000": 6651904, "99.990000": 7372800}}, "lat_ns": {"min": 841974, "max": 8163807, "mean": 1268761.473049, "stddev": 550308.844363, "N": 3896}, "bw_min": 2560000, "bw_max": 3744095, "bw_agg": 100.0, "bw_mean": 3216719.25, "bw_dev": 509726.765657, "bw_samples": 4, "iops_min": 625, "iops_max": 914, "iops_mean": 785.25, "iops_stddev": 124.433048, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 2.319536, "sys_cpu": 33.993201, "ctx": 11677, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.718686, "20": 1.540041, "50": 0.077002, "100": 0.025667, "250": 4.568789, "500": 83.957906, "750": 5.338809, "1000": 0.616016}, "latency_ms": {"2": 1.180698, "4": 1.617043, "10": 0.359343, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 15127, "write_ios": 3, "read_merges": 0, "write_merges": 0, "read_ticks": 5582, "write_ticks": 4, "in_queue": 5589, "util": 75.538554}]} 2026-04-21 19:25:39.395756 2026-04-21 19:10:15.083464 -482 12 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799565, "timestamp_ms": 1776799565746, "time": "Tue Apr 21 19:26:05 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9294577664, "io_kbytes": 9076736, "bw_bytes": 1860776309, "bw": 1817164, "iops": 443.643644, "runtime": 4995, "total_ios": 2216, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 864455, "max": 16277133, "mean": 1705331.32852, "stddev": 978537.934865, "N": 2216}, "clat_ns": {"min": 9300, "max": 18320605, "mean": 522820.058664, "stddev": 624303.854824, "N": 2216, "percentile": {"1.000000": 144384, "5.000000": 166912, "10.000000": 179200, "20.000000": 199680, "30.000000": 230400, "40.000000": 333824, "50.000000": 501760, "60.000000": 552960, "70.000000": 602112, "80.000000": 684032, "90.000000": 806912, "95.000000": 995328, "99.000000": 2605056, "99.500000": 3981312, "99.900000": 6848512, "99.950000": 8159232, "99.990000": 18219008}}, "lat_ns": {"min": 1343267, "max": 25268244, "mean": 2234771.138538, "stddev": 1229344.942054, "N": 2216}, "bw_min": 1542649, "bw_max": 2048000, "bw_agg": 96.518127, "bw_mean": 1753893.75, "bw_dev": 239539.244707, "bw_samples": 4, "iops_min": 376, "iops_max": 500, "iops_mean": 427.75, "iops_stddev": 58.744503, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.96, "sys_cpu": 21.96, "ctx": 7741, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.045126, "20": 0.225632, "50": 0.045126, "100": 0.0, "250": 33.212996, "500": 16.019856, "750": 37.093863, "1000": 8.483755}, "latency_ms": {"2": 3.294224, "4": 1.083032, "10": 0.451264, "20": 0.045126, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 1, "write_ios": 8584, "read_merges": 0, "write_merges": 0, "read_ticks": 5, "write_ticks": 5494, "in_queue": 5499, "util": 81.706581}]} 2026-04-21 19:25:57.858695 2026-04-21 19:10:15.083464 -483 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-21 19:26:11.993605 2026-04-21 19:26:11.99361 -487 12 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260421-192619Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:26:23.844277 2026-04-21 19:10:15.083464 -488 12 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260421-192619Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:26:24.446104 2026-04-21 19:10:15.083464 -489 12 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260421-192619Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:26:41.584566 2026-04-21 19:10:15.083464 -490 12 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 274MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260421-192619Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799630, "timestamp_ms": 1776799630895, "time": "Tue Apr 21 19:27:10 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 15, "job options": {"name": "rand_write_4k", "numjobs": "1", "filename": "small_testfile", "size": "274MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260421-192619Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 47476736, "io_kbytes": 46364, "bw_bytes": 3651775, "bw": 3566, "iops": 891.546804, "runtime": 13001, "total_ios": 11591, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 83621, "max": 25983478, "mean": 156765.689587, "stddev": 309706.11156, "N": 11591}, "clat_ns": {"min": 6110, "max": 134793558, "mean": 944802.157881, "stddev": 1762223.421301, "N": 11591, "percentile": {"1.000000": 240640, "5.000000": 264192, "10.000000": 280576, "20.000000": 309248, "30.000000": 329728, "40.000000": 350208, "50.000000": 378880, "60.000000": 407552, "70.000000": 456704, "80.000000": 1417216, "90.000000": 2965504, "95.000000": 3817472, "99.000000": 4816896, "99.500000": 5537792, "99.900000": 8290304, "99.950000": 12910592, "99.990000": 24248320}}, "lat_ns": {"min": 286411, "max": 134969029, "mean": 1105354.744975, "stddev": 1789761.649101, "N": 11591}, "bw_min": 2677, "bw_max": 4039, "bw_agg": 99.910646, "bw_mean": 3563.916667, "bw_dev": 436.388788, "bw_samples": 12, "iops_min": 669, "iops_max": 1009, "iops_mean": 890.833333, "iops_stddev": 109.000278, "iops_samples": 12}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13001, "usr_cpu": 1.122991, "sys_cpu": 16.721791, "ctx": 11664, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.319213, "20": 0.077646, "50": 0.0, "100": 0.01, "250": 1.552929, "500": 70.632387, "750": 2.959192, "1000": 1.759986}, "latency_ms": {"2": 7.462687, "4": 12.052454, "10": 3.105858, "20": 0.03451, "50": 0.025882, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 300, "write_ios": 11439, "read_merges": 0, "write_merges": 2, "read_ticks": 117, "write_ticks": 2312, "in_queue": 2447, "util": 39.378719}]} 2026-04-21 19:26:41.263564 2026-04-21 19:10:15.083464 -491 12 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260421-192619Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:27:00.158981 2026-04-21 19:10:15.083464 -492 12 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260421-192619Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:27:00.073744 2026-04-21 19:10:15.083464 -493 12 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 274MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260421-192619Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:27:20.682857 2026-04-21 19:10:15.083464 -494 12 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260421-192619Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:27:36.715671 2026-04-21 19:10:15.083464 -495 12 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260421-192619Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799687, "timestamp_ms": 1776799687412, "time": "Tue Apr 21 19:28:07 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_1M", "numjobs": "1", "filename": "large_testfile", "size": "274MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260421-192619Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 10350493696, "io_kbytes": 10107904, "bw_bytes": 862469268, "bw": 842255, "iops": 822.51479, "runtime": 12001, "total_ios": 9871, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 120830, "max": 19837863, "mean": 196310.424476, "stddev": 276122.84423, "N": 9871}, "clat_ns": {"min": 7260, "max": 3000922520, "mean": 994323.189343, "stddev": 30248390.238209, "N": 9871, "percentile": {"1.000000": 183296, "5.000000": 205824, "10.000000": 218112, "20.000000": 236544, "30.000000": 252928, "40.000000": 268288, "50.000000": 288768, "60.000000": 321536, "70.000000": 366592, "80.000000": 602112, "90.000000": 1826816, "95.000000": 3358720, "99.000000": 4554752, "99.500000": 5144576, "99.900000": 13565952, "99.950000": 21364736, "99.990000": 3003121664}}, "lat_ns": {"min": 285301, "max": 3001062220, "mean": 1193171.983487, "stddev": 30249499.833448, "N": 9871}, "bw_min": 663597, "bw_max": 1491968, "bw_agg": 100.0, "bw_mean": 975188.555556, "bw_dev": 302011.07328, "bw_samples": 9, "iops_min": 648, "iops_max": 1457, "iops_mean": 952.111111, "iops_stddev": 294.952303, "iops_samples": 9}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 6.991667, "sys_cpu": 16.416667, "ctx": 10751, "majf": 0, "minf": 279, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.435619, "20": 0.040523, "50": 0.0, "100": 0.010131, "250": 28.254483, "500": 48.74886, "750": 7.283963, "1000": 1.722217}, "latency_ms": {"2": 4.102928, "4": 7.111741, "10": 2.188228, "20": 0.040523, "50": 0.040523, "100": 0.0, "250": 0.010131, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.010131}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23558, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 8078, "write_ticks": 0, "in_queue": 8078, "util": 61.412453}]} 2026-04-21 19:27:38.041768 2026-04-21 19:10:15.083464 -496 12 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 274MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260421-192619Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799694, "timestamp_ms": 1776799694901, "time": "Tue Apr 21 19:28:14 2026", "jobs": [{"jobname": "rand_read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "rand_read_4k", "numjobs": "1", "filename": "small_testfile", "size": "274MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260421-192619Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 124755968, "io_kbytes": 121832, "bw_bytes": 10395464, "bw": 10151, "iops": 2537.95517, "runtime": 12001, "total_ios": 30458, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4570, "max": 6056794, "mean": 113370.527316, "stddev": 80558.363436, "N": 30458}, "clat_ns": {"min": 1270, "max": 11080273, "mean": 262605.312693, "stddev": 650732.040496, "N": 30458, "percentile": {"1.000000": 2160, "5.000000": 3440, "10.000000": 6048, "20.000000": 85504, "30.000000": 102912, "40.000000": 110080, "50.000000": 117248, "60.000000": 130560, "70.000000": 150528, "80.000000": 175104, "90.000000": 321536, "95.000000": 1236992, "99.000000": 3981312, "99.500000": 4816896, "99.900000": 5603328, "99.950000": 6586368, "99.990000": 10158080}}, "lat_ns": {"min": 6590, "max": 14481332, "mean": 378352.481253, "stddev": 663343.155917, "N": 30458}, "bw_min": 6125, "bw_max": 21180, "bw_agg": 100.0, "bw_mean": 10372.363636, "bw_dev": 4558.504958, "bw_samples": 11, "iops_min": 1531, "iops_max": 5295, "iops_mean": 2592.909091, "iops_stddev": 1139.571889, "iops_samples": 11}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12001, "usr_cpu": 4.341305, "sys_cpu": 36.188651, "ctx": 28392, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.925865, "4": 7.978199, "10": 1.592357, "20": 0.045965, "50": 0.078797, "100": 15.509882, "250": 60.299429, "500": 7.541533, "750": 0.420251, "1000": 0.200276}, "latency_ms": {"2": 2.711931, "4": 1.723685, "10": 0.958697, "20": 0.013133, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 29425, "write_ios": 3, "read_merges": 0, "write_merges": 0, "read_ticks": 7960, "write_ticks": 4, "in_queue": 7967, "util": 49.251359}]} 2026-04-21 19:27:54.122232 2026-04-21 19:10:15.083464 -497 12 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260421-192619Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799711, "timestamp_ms": 1776799711529, "time": "Tue Apr 21 19:28:31 2026", "jobs": [{"jobname": "seq_read_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_256k", "numjobs": "1", "filename": "large_testfile", "size": "274MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260421-192619Z/testfiles", "bs": "256k", "iodepth": "1", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 11480334336, "io_kbytes": 11211264, "bw_bytes": 956614810, "bw": 934194, "iops": 3649.1959, "runtime": 12001, "total_ios": 43794, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 105001, "max": 3977552, "mean": 122110.979792, "stddev": 48129.516486, "N": 43794}, "clat_ns": {"min": 5500, "max": 7927375, "mean": 140918.696328, "stddev": 316984.902833, "N": 43794, "percentile": {"1.000000": 81408, "5.000000": 86528, "10.000000": 87552, "20.000000": 88576, "30.000000": 90624, "40.000000": 93696, "50.000000": 98816, "60.000000": 102912, "70.000000": 109056, "80.000000": 122368, "90.000000": 154624, "95.000000": 191488, "99.000000": 1351680, "99.500000": 2703360, "99.900000": 4554752, "99.950000": 4882432, "99.990000": 6324224}}, "lat_ns": {"min": 186311, "max": 8092896, "mean": 265174.07364, "stddev": 325362.327078, "N": 43794}, "bw_min": 426496, "bw_max": 1148803, "bw_agg": 98.352147, "bw_mean": 918800.090909, "bw_dev": 252155.619564, "bw_samples": 11, "iops_min": 1666, "iops_max": 4487, "iops_mean": 3588.909091, "iops_stddev": 985.088875, "iops_samples": 11}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 11.158333, "sys_cpu": 52.5, "ctx": 43808, "majf": 0, "minf": 83, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.18724, "20": 0.038818, "50": 0.0, "100": 53.415993, "250": 44.405626, "500": 0.54117, "750": 0.148422, "1000": 0.070786}, "latency_ms": {"2": 0.497785, "4": 0.463534, "10": 0.230625, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 43682, "write_ios": 19, "read_merges": 0, "write_merges": 2, "read_ticks": 7071, "write_ticks": 10, "in_queue": 7085, "util": 73.490378}]} 2026-04-21 19:28:11.248847 2026-04-21 19:10:15.083464 -498 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-21 19:28:36.853415 2026-04-21 19:28:36.853419 -499 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-21 19:26:16' --until '2026-04-21 19:28:35' 40 OOM records. 2026-04-21 19:26:16.731247 2026-04-21 19:28:35.212645 -501 12 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260421-192842Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799731, "timestamp_ms": 1776799731813, "time": "Tue Apr 21 19:28:51 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260421-192842Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10720641024, "io_kbytes": 10469376, "bw_bytes": 2143699464, "bw": 2093456, "iops": 2044.391122, "runtime": 5001, "total_ios": 10224, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 142051, "max": 12183159, "mean": 178781.870012, "stddev": 163735.492855, "N": 10224}, "clat_ns": {"min": 5870, "max": 7693444, "mean": 295449.610818, "stddev": 239663.812842, "N": 10224, "percentile": {"1.000000": 195584, "5.000000": 214016, "10.000000": 220160, "20.000000": 228352, "30.000000": 238592, "40.000000": 248832, "50.000000": 264192, "60.000000": 276480, "70.000000": 296960, "80.000000": 321536, "90.000000": 358400, "95.000000": 399360, "99.000000": 765952, "99.500000": 1220608, "99.900000": 4227072, "99.950000": 4882432, "99.990000": 5799936}}, "lat_ns": {"min": 344082, "max": 13298656, "mean": 478172.742958, "stddev": 313183.708361, "N": 10224}, "bw_min": 1393294, "bw_max": 2393766, "bw_agg": 96.850734, "bw_mean": 2027528.75, "bw_dev": 455555.42083, "bw_samples": 4, "iops_min": 1360, "iops_max": 2337, "iops_mean": 1979.5, "iops_stddev": 444.840421, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.26, "sys_cpu": 31.78, "ctx": 10319, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.127152, "20": 0.166275, "50": 0.0, "100": 0.01, "250": 40.385368, "500": 57.130282, "750": 0.978091, "1000": 0.625978}, "latency_ms": {"2": 0.205399, "4": 0.244523, "10": 0.127152, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 1, "write_ios": 9942, "read_merges": 0, "write_merges": 0, "read_ticks": 21, "write_ticks": 3118, "in_queue": 3138, "util": 72.266881}]} 2026-04-21 19:28:44.047872 2026-04-21 19:10:15.083464 -502 12 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260421-192842Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799741, "timestamp_ms": 1776799741607, "time": "Tue Apr 21 19:29:01 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260421-192842Z/testfiles", "bs": "256k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4237557760, "io_kbytes": 4138240, "bw_bytes": 847342083, "bw": 827482, "iops": 3232.353529, "runtime": 5001, "total_ios": 16165, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 101361, "max": 7248831, "mean": 126274.463903, "stddev": 93728.788107, "N": 16165}, "clat_ns": {"min": 5210, "max": 10055117, "mean": 169760.623198, "stddev": 296026.715693, "N": 16165, "percentile": {"1.000000": 103936, "5.000000": 109056, "10.000000": 111104, "20.000000": 115200, "30.000000": 119296, "40.000000": 123392, "50.000000": 129536, "60.000000": 136192, "70.000000": 148480, "80.000000": 179200, "90.000000": 211968, "95.000000": 238592, "99.000000": 626688, "99.500000": 2244608, "99.900000": 4489216, "99.950000": 6193152, "99.990000": 7766016}}, "lat_ns": {"min": 196481, "max": 10228668, "mean": 298688.338447, "stddev": 316359.409595, "N": 16165}, "bw_min": 607488, "bw_max": 942929, "bw_agg": 95.160925, "bw_mean": 787440.0, "bw_dev": 165647.270743, "bw_samples": 4, "iops_min": 2373, "iops_max": 3683, "iops_mean": 3075.75, "iops_stddev": 646.851541, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.62, "sys_cpu": 38.82, "ctx": 16199, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.426848, "20": 0.068048, "50": 0.012372, "100": 0.173214, "250": 95.539746, "500": 2.635323, "750": 0.222703, "1000": 0.068048}, "latency_ms": {"2": 0.30931, "4": 0.402103, "10": 0.136097, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 16, "write_ios": 15721, "read_merges": 0, "write_merges": 2, "read_ticks": 4, "write_ticks": 2764, "in_queue": 2769, "util": 71.339626}]} 2026-04-21 19:28:53.954401 2026-04-21 19:10:15.083464 -\. diff --git a/metabase_prototype/db/init/backup.sql b/metabase_prototype/db/init/backup.sql new file mode 100644 index 00000000..a8a3c9af --- /dev/null +++ b/metabase_prototype/db/init/backup.sql @@ -0,0 +1,2658 @@ +-- +-- PostgreSQL database dump +-- + +\restrict D55ftVUceRXmMkbxqDZXnRm8qQuX7HSVruKhz2OBbhTop2bzqE5DV9eDJlaJdg1 + +-- Dumped from database version 17.7 (Debian 17.7-3.pgdg13+1) +-- Dumped by pg_dump version 17.7 (Debian 17.7-3.pgdg13+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET transaction_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +SET default_tablespace = ''; + +SET default_table_access_method = heap; + +-- +-- Name: auth_group; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.auth_group ( + id integer NOT NULL, + name character varying(150) NOT NULL +); + + +ALTER TABLE public.auth_group OWNER TO "user"; + +-- +-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.auth_group_permissions ( + id bigint NOT NULL, + group_id integer NOT NULL, + permission_id integer NOT NULL +); + + +ALTER TABLE public.auth_group_permissions OWNER TO "user"; + +-- +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_group_permissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_permission; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.auth_permission ( + id integer NOT NULL, + name character varying(255) NOT NULL, + content_type_id integer NOT NULL, + codename character varying(100) NOT NULL +); + + +ALTER TABLE public.auth_permission OWNER TO "user"; + +-- +-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_permission_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_user; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.auth_user ( + id integer NOT NULL, + password character varying(128) NOT NULL, + last_login timestamp with time zone, + is_superuser boolean NOT NULL, + username character varying(150) NOT NULL, + first_name character varying(150) NOT NULL, + last_name character varying(150) NOT NULL, + email character varying(254) NOT NULL, + is_staff boolean NOT NULL, + is_active boolean NOT NULL, + date_joined timestamp with time zone NOT NULL +); + + +ALTER TABLE public.auth_user OWNER TO "user"; + +-- +-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.auth_user_groups ( + id bigint NOT NULL, + user_id integer NOT NULL, + group_id integer NOT NULL +); + + +ALTER TABLE public.auth_user_groups OWNER TO "user"; + +-- +-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +ALTER TABLE public.auth_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_user_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +ALTER TABLE public.auth_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_user_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.auth_user_user_permissions ( + id bigint NOT NULL, + user_id integer NOT NULL, + permission_id integer NOT NULL +); + + +ALTER TABLE public.auth_user_user_permissions OWNER TO "user"; + +-- +-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +ALTER TABLE public.auth_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_user_user_permissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: configuration; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.configuration ( + config_id integer NOT NULL, + os character varying(100) NOT NULL, + packages json NOT NULL, + core_info character varying(300) NOT NULL, + core_config json NOT NULL, + hardware json NOT NULL +); + + +ALTER TABLE public.configuration OWNER TO "user"; + +-- +-- Name: configuration_config_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +CREATE SEQUENCE public.configuration_config_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.configuration_config_id_seq OWNER TO "user"; + +-- +-- Name: configuration_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: user +-- + +ALTER SEQUENCE public.configuration_config_id_seq OWNED BY public.configuration.config_id; + + +-- +-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.django_admin_log ( + id integer NOT NULL, + action_time timestamp with time zone NOT NULL, + object_id text, + object_repr character varying(200) NOT NULL, + action_flag smallint NOT NULL, + change_message text NOT NULL, + content_type_id integer, + user_id integer NOT NULL, + CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0)) +); + + +ALTER TABLE public.django_admin_log OWNER TO "user"; + +-- +-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +ALTER TABLE public.django_admin_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.django_admin_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: django_content_type; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.django_content_type ( + id integer NOT NULL, + app_label character varying(100) NOT NULL, + model character varying(100) NOT NULL +); + + +ALTER TABLE public.django_content_type OWNER TO "user"; + +-- +-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.django_content_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: django_migrations; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.django_migrations ( + id bigint NOT NULL, + app character varying(255) NOT NULL, + name character varying(255) NOT NULL, + applied timestamp with time zone NOT NULL +); + + +ALTER TABLE public.django_migrations OWNER TO "user"; + +-- +-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.django_migrations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: django_session; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.django_session ( + session_key character varying(40) NOT NULL, + session_data text NOT NULL, + expire_date timestamp with time zone NOT NULL +); + + +ALTER TABLE public.django_session OWNER TO "user"; + +-- +-- Name: django_tasks_database_dbtaskresult; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.django_tasks_database_dbtaskresult ( + id uuid NOT NULL, + status character varying(10) NOT NULL, + args_kwargs jsonb NOT NULL, + priority integer NOT NULL, + task_path text NOT NULL, + queue_name character varying(32) NOT NULL, + backend_name character varying(32) NOT NULL, + run_after timestamp with time zone NOT NULL, + enqueued_at timestamp with time zone NOT NULL, + finished_at timestamp with time zone, + started_at timestamp with time zone, + return_value jsonb, + exception_class_path text NOT NULL, + traceback text NOT NULL, + worker_ids jsonb NOT NULL, + CONSTRAINT priority_range CHECK (((priority >= '-100'::integer) AND (priority <= 100))) +); + + +ALTER TABLE public.django_tasks_database_dbtaskresult OWNER TO "user"; + +-- +-- Name: experiment; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.experiment ( + experiment_id integer NOT NULL, + config_id integer NOT NULL, + description character varying(100) NOT NULL, + type character varying(20) NOT NULL, + started_at timestamp without time zone, + ended_at timestamp without time zone, + tests_total integer DEFAULT 0 NOT NULL, + tests_passed integer DEFAULT 0 NOT NULL, + tests_failed integer DEFAULT 0 NOT NULL, + tests_broken integer DEFAULT 0 NOT NULL, + tests_skipped integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.experiment OWNER TO "user"; + +-- +-- Name: experiment_experiment_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +CREATE SEQUENCE public.experiment_experiment_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.experiment_experiment_id_seq OWNER TO "user"; + +-- +-- Name: experiment_experiment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: user +-- + +ALTER SEQUENCE public.experiment_experiment_id_seq OWNED BY public.experiment.experiment_id; + + +-- +-- Name: tests_interface_distribution; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.tests_interface_distribution ( + id bigint NOT NULL, + name character varying(100) NOT NULL, + display_name character varying(200) NOT NULL, + description text NOT NULL, + "order" smallint NOT NULL, + is_active boolean NOT NULL, + CONSTRAINT tests_interface_distribution_order_check CHECK (("order" >= 0)) +); + + +ALTER TABLE public.tests_interface_distribution OWNER TO "user"; + +-- +-- Name: tests_interface_distribution_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +ALTER TABLE public.tests_interface_distribution ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.tests_interface_distribution_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: util_run_result; Type: TABLE; Schema: public; Owner: user +-- + +CREATE TABLE public.util_run_result ( + id integer NOT NULL, + experiment_id integer NOT NULL, + util_type character varying(20) NOT NULL, + command character varying NOT NULL, + result json NOT NULL, + description character varying(100) NOT NULL, + started_at timestamp without time zone, + ended_at timestamp without time zone +); + + +ALTER TABLE public.util_run_result OWNER TO "user"; + +-- +-- Name: util_run_result_id_seq; Type: SEQUENCE; Schema: public; Owner: user +-- + +CREATE SEQUENCE public.util_run_result_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.util_run_result_id_seq OWNER TO "user"; + +-- +-- Name: util_run_result_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: user +-- + +ALTER SEQUENCE public.util_run_result_id_seq OWNED BY public.util_run_result.id; + + +-- +-- Name: configuration config_id; Type: DEFAULT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.configuration ALTER COLUMN config_id SET DEFAULT nextval('public.configuration_config_id_seq'::regclass); + + +-- +-- Name: experiment experiment_id; Type: DEFAULT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.experiment ALTER COLUMN experiment_id SET DEFAULT nextval('public.experiment_experiment_id_seq'::regclass); + + +-- +-- Name: util_run_result id; Type: DEFAULT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.util_run_result ALTER COLUMN id SET DEFAULT nextval('public.util_run_result_id_seq'::regclass); + + +-- +-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.auth_group (id, name) FROM stdin; +\. + + +-- +-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin; +\. + + +-- +-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin; +1 Can add log entry 1 add_logentry +2 Can change log entry 1 change_logentry +3 Can delete log entry 1 delete_logentry +4 Can view log entry 1 view_logentry +5 Can add permission 3 add_permission +6 Can change permission 3 change_permission +7 Can delete permission 3 delete_permission +8 Can view permission 3 view_permission +9 Can add group 2 add_group +10 Can change group 2 change_group +11 Can delete group 2 delete_group +12 Can view group 2 view_group +13 Can add user 4 add_user +14 Can change user 4 change_user +15 Can delete user 4 delete_user +16 Can view user 4 view_user +17 Can add content type 5 add_contenttype +18 Can change content type 5 change_contenttype +19 Can delete content type 5 delete_contenttype +20 Can view content type 5 view_contenttype +21 Can add session 6 add_session +22 Can change session 6 change_session +23 Can delete session 6 delete_session +24 Can view session 6 view_session +25 Can add Task Result 7 add_dbtaskresult +26 Can change Task Result 7 change_dbtaskresult +27 Can delete Task Result 7 delete_dbtaskresult +28 Can view Task Result 7 view_dbtaskresult +29 Can add distribution 8 add_distribution +30 Can change distribution 8 change_distribution +31 Can delete distribution 8 delete_distribution +32 Can view distribution 8 view_distribution +\. + + +-- +-- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin; +\. + + +-- +-- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.auth_user_groups (id, user_id, group_id) FROM stdin; +\. + + +-- +-- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin; +\. + + +-- +-- Data for Name: configuration; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.configuration (config_id, os, packages, core_info, core_config, hardware) FROM stdin; +1 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-04 12:02:35", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +2 openSUSE Leap 15.6 {"chrony-pool-suse": "4.1:150400.21.8.1:noarch", "libtasn1": "4.13:150000.4.14.1:x86_64", "filesystem": "15.0:11.8.1:x86_64", "python3-pyOpenSSL": "21.0.0:150400.13.1:noarch", "ncurses-utils": "6.1:150000.5.33.1:x86_64", "libsqlite3-0": "3.53.2:150000.3.42.1:x86_64", "python3-requests": "2.25.1:150300.3.21.1:noarch", "systemd-rpm-macros": "16:150000.7.42.1:noarch", "libncurses6": "6.1:150000.5.33.1:x86_64", "polkit-default-privs": "13.2+20241216.68f9867:150600.3.3.1:noarch", "runc": "1.3.4:150000.96.1:x86_64", "fillup": "1.42:2.18:x86_64", "autofs": "5.1.9:150600.3.8.1:x86_64", "libprocps8": "3.3.17:150000.7.42.1:x86_64", "libelf1": "0.185:150400.5.8.3:x86_64", "yast2-sysconfig": "4.6.0:150600.1.2:noarch", "libxcb1": "1.13:150000.3.11.1:x86_64", "libpcre2-8-0": "10.42:150600.1.26:x86_64", "yast2-proxy": "4.6.0:150600.1.2:noarch", "libzmq5": "4.2.3:3.15.4:x86_64", "libpsl5": "0.20.1:150000.3.3.1:x86_64", "yast2-journal": "4.6.0:150600.1.2:noarch", "procps": "3.3.17:150000.7.42.1:x86_64", "krb5": "1.20.1:150600.11.14.1:x86_64", "yast2-services-manager": "4.6.1:150600.1.2:noarch", "systemd-presets-branding-openSUSE": "12.2:lp156.7.3.1:noarch", "libzck1": "1.1.16:150600.9.3:x86_64", "salt": "3006.0:150500.4.75.1:x86_64", "fping": "5.1:150600.1.4:x86_64", "libgpgme11": "1.23.0:150600.3.5.1:x86_64", "yast2-packager": "4.6.10:150600.3.3.1:x86_64", "fontconfig": "2.14.2:150600.1.3:x86_64", "crypto-policies": "20230920.570ea89:150600.3.16.1:noarch", "yast2-iscsi-client": "4.6.6:150600.3.14.2:noarch", "perl": "5.26.1:150300.17.20.1:x86_64", "glibc": "2.38:150600.14.49.1:x86_64", "yast2-online-update": "4.6.2:150600.1.2:noarch", "libnftnl11": "1.2.0:150400.1.6:x86_64", "libpcre1": "8.45:150000.20.13.1:x86_64", "yast2-ntp-client": "4.6.0:150600.1.3:noarch", "cyrus-sasl": "2.1.28:150600.7.14.1:x86_64", "terminfo-base": "6.1:150000.5.33.1:x86_64", "yast2-tune": "4.6.0:150600.1.2:x86_64", "less": "643:150600.3.3.1:x86_64", "libbrotlicommon1": "1.0.7:150200.3.5.1:x86_64", "yast2-security": "4.6.1:150600.3.3.2:noarch", "libX11-6": "1.8.7:150600.3.6.1:x86_64", "bash": "4.4:150400.27.6.1:x86_64", "yast2-sudo": "4.6.1:150600.1.2:noarch", "libgobject-2_0-0": "2.78.6:150600.4.35.1:x86_64", "libgpg-error0": "1.47:150600.1.3:x86_64", "yast2-update": "4.6.3:150600.1.2:x86_64", "cyrus-sasl-gssapi": "2.1.28:150600.7.14.1:x86_64", "libopenssl3": "3.1.4:150600.5.53.1:x86_64", "gpg-pubkey": "3fa1d6ce:67c856ee:(none)", "mozilla-nss-certs": "3.112.5:150400.3.69.2:x86_64", "libssh4": "0.9.8:150600.11.12.1:x86_64", "system-user-nobody": "20170617:150400.24.2.1:noarch", "pinentry": "1.1.0:4.3.1:x86_64", "liblttng-ust0": "2.12.0:1.30:x86_64", "system-group-audit": "3.0.6:150400.4.16.1:x86_64", "openSUSE-release": "15.6:lp156.417.4.1:x86_64", "rdma-ndd": "49.1:150600.2.5:x86_64", "vim": "9.2.0530:150500.20.52.1:x86_64", "cracklib-dict-small": "2.9.11:150600.1.90:x86_64", "libpmemblk1": "1.11.1:150400.1.10:x86_64", "iptables": "1.8.7:1.1:x86_64", "libjson-c5": "0.16:150600.1.4:x86_64", "libibverbs": "49.1:150600.2.5:x86_64", "perl-XML-SAX-Base": "1.09:1.25:noarch", "libsepol2": "3.5:150600.1.49:x86_64", "fio": "3.23:150600.18.6:x86_64", "perl-Digest-MD4": "1.9:1.28:x86_64", "man-pages": "6.04:150600.1.2:noarch", "libslang2": "2.3.1a:150000.5.2.3:x86_64", "libutempter0": "1.1.6:3.42:x86_64", "systemd-presets-common-SUSE": "15:150600.25.2:noarch", "lksctp-tools": "1.0.17:150000.3.3.1:x86_64", "libXtst6": "1.2.3:1.24:x86_64", "libcrack2": "2.9.11:150600.1.90:x86_64", "libXxf86vm1": "1.1.4:1.23:x86_64", "yast2-ycp-ui-bindings": "4.6.0:150600.1.5:x86_64", "libcbor0_10": "0.10.1:150500.1.1:x86_64", "libjpeg8": "8.2.2:150600.22.5:x86_64", "man": "2.7.6:150100.8.5.1:x86_64", "libpgm-5_2-0": "5.2.122:150400.15.6:x86_64", "libpciaccess0": "0.14:1.16:x86_64", "libgio-2_0-0": "2.78.6:150600.4.35.1:x86_64", "libcap-ng0": "0.7.9:4.37:x86_64", "libwayland-client0": "1.22.0:150600.1.6:x86_64", "libpxbackend-1_0": "0.5.3:150600.4.6.2:x86_64", "liburcu6": "0.12.1:1.30:x86_64", "libzip5": "1.10.1:150600.1.5:x86_64", "grub2-x86_64-efi": "2.12:150600.8.52.1:noarch", "libfstrm0": "0.6.1:150300.9.5.1:x86_64", "make-lang": "4.2.1:7.3.2:noarch", "shim": "16.1:150300.4.31.3:x86_64", "systemd-default-settings-branding-openSUSE": "0.10:150300.3.7.1:noarch", "perl-HTML-Tagset": "3.20:1.24:noarch", "growpart": "0.31:5.9.3:noarch", "libtirpc3": "1.3.4:150300.3.23.1:x86_64", "perl-Test-Pod": "1.51:1.24:noarch", "libatspi0": "2.50.0:150600.1.2:x86_64", "glibc-i18ndata": "2.38:150600.14.49.1:noarch", "perl-X11-Protocol": "0.56:1.24:x86_64", "aaa_base": "84.87+git20180409.04c9dae:150300.10.28.2:x86_64", "libavahi-common3": "0.8:150600.15.18.1:x86_64", "libdrm_radeon1": "2.4.118:150600.1.4:x86_64", "util-linux-systemd": "2.39.3:150600.4.21.1:x86_64", "libext2fs2": "1.47.0:150600.4.6.2:x86_64", "libmpc3": "1.1.0:1.47:x86_64", "ruby2.5": "2.5.9:150000.4.54.1:x86_64", "libnettle8": "3.9.1:150600.3.2.1:x86_64", "perl-IO-Socket-SSL": "2.84.0:150600.1.2:noarch", "python3-curses": "3.6.15:150300.10.118.1:x86_64", "libsmartcols1": "2.39.3:150600.4.21.1:x86_64", "perl-Test-Pod-Coverage": "1.10:1.23:noarch", "python3-PyYAML": "5.4.1:150300.3.6.1:x86_64", "libyui-ncurses16": "4.5.3:150600.6.2.1:x86_64", "perl-HTTP-Daemon": "6.01:150000.3.5.1:noarch", "python3-attrs": "19.3.0:150200.3.9.1:noarch", "openssh-common": "9.6p1:150600.6.42.1:x86_64", "hdparm": "9.62:150400.3.5.2:x86_64", "ruby-common": "2.1:3.15:noarch", "sed": "4.9:150600.3.3.1:x86_64", "libatomic1": "15.2.0+git10201:150000.1.9.1:x86_64", "ruby2.5-rubygem-ruby-dbus": "0.14.0:1.27:x86_64", "zsh": "5.8.1:150600.18.3.2:x86_64", "liblsan0": "15.2.0+git10201:150000.1.9.1:x86_64", "ruby2.5-rubygem-abstract_method": "1.2.1:1.28:x86_64", "libmount1": "2.39.3:150600.4.21.1:x86_64", "libxcb-dri3-0": "1.13:150000.3.11.1:x86_64", "python3-pyasn1": "0.4.2:150000.3.16.1:noarch", "gettext-runtime": "0.21.1:150600.3.3.2:x86_64", "libxcb-shm0": "1.13:150000.3.11.1:x86_64", "python3-immutables": "0.11:150000.1.3.1:x86_64", "libyui-ncurses-pkg16": "4.5.3:150600.6.2.1:x86_64", "glibc-devel": "2.38:150600.14.46.1:x86_64", "python3-certifi": "2018.1.18:150000.3.6.1:noarch", "dmidecode": "3.6:150400.16.11.2:x86_64", "Mesa-libva": "23.3.4:150600.83.3.1:x86_64", "python3-configobj": "5.0.6:150000.3.3.1:noarch", "libasm1": "0.185:150400.5.8.3:x86_64", "gcc7": "7.5.0+r278197:150000.4.44.1:x86_64", "python3-looseversion": "1.0.2:150100.3.3.1:noarch", "libfastjson4": "0.99.9:150400.3.3.1:x86_64", "libgd3": "2.2.5:11.3.1:x86_64", "python3-ordered-set": "4.0.2:150400.8.34:noarch", "elfutils": "0.185:150400.5.8.3:x86_64", "libglvnd": "1.7.0:150600.1.2:x86_64", "python3-pyudev": "0.22.0+git.1642212208.d5630bf:150400.5.50:noarch", "libicu-suse65_1": "65.1:150200.4.15.1:x86_64", "php8-dom": "8.2.30:150600.3.25.1:x86_64", "python3-solv": "0.7.39:150600.8.24.1:x86_64", "libctf0": "2.45:150100.7.57.1:x86_64", "php8-ctype": "8.2.30:150600.3.25.1:x86_64", "udev": "254.27:150600.4.62.1:x86_64", "openSUSE-build-key": "1.0:lp156.8.2:noarch", "Mesa-gallium": "23.3.4:150600.83.3.1:x86_64", "nscd": "2.38:150600.14.49.1:x86_64", "initviocons": "0.5:1.27:x86_64", "php8-tokenizer": "8.2.30:150600.3.25.1:x86_64", "qemu-guest-agent": "8.2.10:150600.3.49.1:x86_64", "libestr0": "0.1.10:1.25:x86_64", "php8-zlib": "8.2.30:150600.3.25.1:x86_64", "dracut-kiwi-lib": "10.2.33:150600.14.10.2:x86_64", "libmnl0": "1.0.4:1.25:x86_64", "php8-pcntl": "8.2.30:150600.3.25.1:x86_64", "python3-rtslib-fb": "2.1.75:150500.1.4:noarch", "libsmi": "0.4.8:1.29:x86_64", "xdg-utils": "1.1.3+20210805:150500.1.1:noarch", "yast2-python3-bindings": "4.6.0:150600.1.6:x86_64", "which": "2.21:2.20:x86_64", "sharutils-lang": "4.15.2:150600.17.3:noarch", "libstorage-ng1": "4.5.201:150600.1.3:x86_64", "libreiserfscore0": "3.6.27:2.24:x86_64", "lshw": "B.02.20:150200.3.18.2:x86_64", "python3-configshell-fb": "1.1.29:3.3.1:noarch", "hostname": "3.16:2.22:x86_64", "ruby2.5-rubygem-cfa_grub2": "2.0.0:1.55:x86_64", "libuv1": "1.44.2:150500.3.5.1:x86_64", "telnet": "1.2:150000.3.6.1:x86_64", "dosfstools": "4.1:3.6.1:x86_64", "dhcp-client": "4.3.6.P1:150000.6.22.1:x86_64", "libfuse2": "2.9.7:3.3.1:x86_64", "ksh": "93vu:bp156.6.3.1:x86_64", "libsnappy1": "1.1.8:3.3.1:x86_64", "libldap-data": "2.4.46:150600.25.3.1:noarch", "libtasn1-6": "4.13:150000.4.14.1:x86_64", "file-magic": "5.32:7.14.1:noarch", "libunwind": "1.5.0:4.5.1:x86_64", "libsasl2-3": "2.1.28:150600.7.14.1:x86_64", "mozilla-nspr": "4.36.2:150000.3.36.1:x86_64", "libcom_err2": "1.47.0:150600.4.6.2:x86_64", "netcfg": "11.6:150000.3.6.1:noarch", "liblua5_3-5": "5.3.6:3.6.1:x86_64", "sqlite3-tcl": "3.53.2:150000.3.42.1:x86_64", "libgcc_s1": "15.2.0+git10201:150000.1.9.1:x86_64", "tcsh": "6.20.00:150000.4.18.2:x86_64", "libz1": "1.2.13:150500.4.6.1:x86_64", "unzip": "6.00:150000.4.14.1:x86_64", "libnpth0": "1.5:2.11:x86_64", "blktrace": "1.1.0+git.20170126:3.6.1:x86_64", "libboost_system1_66_0": "1.66.0:150200.12.7.1:x86_64", "tar": "1.34:150000.3.42.1:x86_64", "libyaml-cpp0_6": "0.6.3:150400.4.3.1:x86_64", "thin-provisioning-tools": "0.7.5:3.3.1:x86_64", "bash-sh": "4.4:150400.27.6.1:x86_64", "quota": "4.05:3.9.1:x86_64", "libbz2-1": "1.0.8:150400.1.122:x86_64", "liblognorm5": "2.0.6:150000.3.3.1:x86_64", "libsigc-2_0-0": "2.12.1:150600.1.2:x86_64", "net-tools": "2.0+git20170221.479bb4a:150000.5.13.1:x86_64", "libidn2-0": "2.2.0:3.6.1:x86_64", "libcares2": "1.19.1:150000.3.26.1:x86_64", "libaugeas0": "1.14.1:150600.3.3.1:x86_64", "containerd": "1.7.29:150000.137.1:x86_64", "libgcrypt20": "1.10.3:150600.3.9.1:x86_64", "libffi7": "3.2.1.git259:10.8:x86_64", "libcurl4": "8.14.1:150600.4.43.1:x86_64", "libnetfilter_conntrack3": "1.0.7:1.38:x86_64", "libusb-1_0-0": "1.0.24:150400.3.3.1:x86_64", "patterns-base-minimal_base": "20200505:lp156.17.3.1:x86_64", "grep": "3.1:150000.4.6.1:x86_64", "lsof": "4.99.0:150600.1.15:x86_64", "gpg2": "2.4.4:150600.3.15.1:x86_64", "libsemanage2": "3.5:150600.1.48:x86_64", "rpm-config-SUSE": "1:150400.14.3.1:noarch", "btrfsprogs": "6.5.1:150600.2.4:x86_64", "zypper": "1.14.98:150600.10.55.1:x86_64", "libfontconfig1": "2.14.2:150600.1.3:x86_64", "libssh-config": "0.9.8:150600.11.12.1:x86_64", "libparted0": "3.2:150300.21.3.1:x86_64", "system-user-root": "20190513:3.3.1:noarch", "tcl": "8.6.12:150300.14.9.1:x86_64", "libnghttp2-14": "1.40.0:150600.25.5.1:x86_64", "gptfdisk": "1.0.8:150400.1.7:x86_64", "update-alternatives": "1.19.0.4:150000.4.7.1:x86_64", "libpcap1": "1.10.4:150600.3.9.1:x86_64", "libkeyutils1": "1.6.3:5.6.1:x86_64", "xfsprogs": "6.7.0:150600.3.6.2:x86_64", "libstdc++6": "15.2.0+git10201:150000.1.9.1:x86_64", "iproute2": "6.4:150600.7.15.1:x86_64", "libxml2-2": "2.10.3:150500.5.38.1:x86_64", "libldb2": "2.8.2:150600.3.6.1:x86_64", "libattr1": "2.4.47:2.19:x86_64", "bind-utils": "9.18.49:150600.3.26.1:x86_64", "libbrotlidec1": "1.0.7:150200.3.5.1:x86_64", "device-mapper": "2.03.22_1.02.196:150600.3.9.3:x86_64", "libreadline7": "7.0:150400.27.6.1:x86_64", "sudo": "1.9.15p5:150600.3.15.1:x86_64", "libcrypt1": "4.4.15:150300.4.7.1:x86_64", "krb5-client": "1.20.1:150600.11.14.1:x86_64", "libzstd1": "1.5.5:150600.1.3:x86_64", "openssh-clients": "9.6p1:150600.6.42.1:x86_64", "libksba8": "1.6.4:150600.1.2:x86_64", "cyrus-sasl-plain": "2.1.28:150600.7.14.1:x86_64", "libassuan0": "2.5.5:150000.4.7.1:x86_64", "cyrus-sasl-digestmd5": "2.1.28:150600.7.14.1:x86_64", "libudev1": "254.27:150600.4.62.1:x86_64", "efibootmgr": "17:150400.3.2.2:x86_64", "libldap-2_4-2": "2.4.46:150600.25.3.1:x86_64", "kbd": "2.4.0:150400.5.9.1:x86_64", "libzio1": "1.06:2.20:x86_64", "dbus-1": "1.12.2:150400.18.8.1:x86_64", "coreutils": "8.32:150400.9.12.1:x86_64", "system-user-man": "20170617:150400.24.2.1:noarch", "gawk": "4.2.1:150000.3.3.1:x86_64", "system-group-hardware": "20170617:150400.24.2.1:noarch", "glibc-locale": "2.38:150600.14.49.1:x86_64", "at": "3.2.2:150400.4.3.10:x86_64", "rpm": "4.14.3:150400.59.16.1:x86_64", "hwinfo": "21.89:150500.3.12.1:x86_64", "btrfsprogs-udev-rules": "6.5.1:150600.2.4:noarch", "p11-kit": "0.23.22:150500.8.3.1:x86_64", "libargon2-1": "20190702:150600.1.4:x86_64", "xtables-plugins": "1.8.7:1.1:x86_64", "libevent-2_1-7": "2.1.12:150600.1.2:x86_64", "hwdata": "0.406:150000.3.80.1:noarch", "liblz4-1": "1.9.4:150600.1.4:x86_64", "perl-gettext": "1.07:1.442:x86_64", "libsemanage-conf": "3.5:150600.1.48:x86_64", "perl-XML-NamespaceSupport": "1.12:1.24:noarch", "libtalloc2": "2.4.1:150600.1.3:x86_64", "perl-Digest-SHA1": "2.13:1.27:x86_64", "mailx": "12.5:150600.16.3:x86_64", "libXext6": "1.3.3:1.30:x86_64", "openslp": "2.0.0:150600.19.5:x86_64", "lockdev": "1.0.3_git201003141408:1.97:x86_64", "pv": "1.7.24:150600.3.3:x86_64", "perl-XML-SAX": "0.99:1.22:x86_64", "targetcli-fb-common": "2.1.54:150600.11.2:noarch", "perl-Crypt-SmbHash": "0.12:1.24:x86_64", "zstd": "1.5.5:150600.1.3:x86_64", "yast2-core": "4.6.0:150600.1.7:x86_64", "cracklib": "2.9.11:150600.1.90:x86_64", "libatk-1_0-0": "2.50.0:150600.1.2:x86_64", "libpwquality1": "1.4.5:150600.2.3:x86_64", "yast2-xml": "4.6.0:150600.1.5:x86_64", "python-rtslib-fb-common": "2.1.75:150500.1.4:noarch", "gio-branding-openSUSE": "42.1:lp156.9.2.2:noarch", "libnuma1": "2.0.14.20.g4ee5e0c:150400.1.24:x86_64", "libgnutls30": "3.8.3:150600.4.20.1:x86_64", "libseccomp2": "2.5.3:150400.2.4:x86_64", "yast2-pkg-bindings": "4.6.5:150600.3.6.1:x86_64", "netcat-openbsd": "1.203:150400.1.5:x86_64", "glib2-tools": "2.78.6:150600.4.35.1:x86_64", "bc": "1.07.1:11.37:x86_64", "perl-Bootloader": "1.8.2:150600.3.3.1:x86_64", "libip6tc2": "1.8.7:1.1:x86_64", "grub2": "2.12:150600.8.52.1:x86_64", "libxtables12": "1.8.7:1.1:x86_64", "libproxy1": "0.5.3:150600.4.6.2:x86_64", "libblogger2": "2.26:150300.4.6.1:x86_64", "wget": "1.20.3:150600.19.12.1:x86_64", "libhidapi-hidraw0": "0.10.1:150300.3.2.1:x86_64", "libtirpc-netconfig": "1.3.4:150300.3.23.1:x86_64", "systemd-default-settings": "0.10:150300.3.7.1:noarch", "blog": "2.26:150300.4.6.1:x86_64", "augeas-lenses": "1.14.1:150600.3.3.1:x86_64", "curl": "8.14.1:150600.4.43.1:x86_64", "libX11-data": "1.8.7:150600.3.6.1:noarch", "libapparmor1": "3.1.7:150600.5.15.1:x86_64", "libblkid1": "2.39.3:150600.4.21.1:x86_64", "libdevmapper1_03": "2.03.22_1.02.196:150600.3.9.3:x86_64", "libgmodule-2_0-0": "2.78.6:150600.4.35.1:x86_64", "libkmod2": "29:150600.13.3.1:x86_64", "libnfsidmap1": "1.0:150600.28.19.1:x86_64", "libpng16-16": "1.6.40:150600.3.20.1:x86_64", "libtextstyle0": "0.21.1:150600.3.3.2:x86_64", "libyui16": "4.5.3:150600.6.2.1:x86_64", "login_defs": "4.17.2:150600.17.18.1:noarch", "openldap2-client": "2.4.46:150600.25.3.1:x86_64", "permissions": "20240826:150600.10.18.2:x86_64", "ruby-solv": "0.7.39:150600.8.24.1:x86_64", "shared-mime-info": "2.4:150600.3.3.2:x86_64", "xz": "5.4.1:150600.3.6.1:x86_64", "libsystemd0": "254.27:150600.4.62.1:x86_64", "openssl-3": "3.1.4:150600.5.53.1:x86_64", "libdevmapper-event1_03": "2.03.22_1.02.196:150600.3.9.3:x86_64", "libnl3-200": "3.9.0:150600.15.4.4:x86_64", "libfdisk1": "2.39.3:150600.4.21.1:x86_64", "e2fsprogs": "1.47.0:150600.4.6.2:x86_64", "liblvm2cmd2_03": "2.03.22:150600.3.9.3:x86_64", "cpio": "2.13:150400.3.6.1:x86_64", "fdupes": "2.3.0:150400.3.3.1:x86_64", "kbd-legacy": "2.4.0:150400.5.9.1:noarch", "libaudit1": "3.0.6:150400.4.16.1:x86_64", "libexpat1": "2.7.1:150400.3.37.1:x86_64", "libxslt1": "1.1.34:150400.3.16.1:x86_64", "libdbus-1-3": "1.12.2:150400.18.8.1:x86_64", "libauparse0": "3.0.6:150400.4.16.1:x86_64", "libicu65_1-ledata": "65.1:150200.4.15.1:noarch", "libboost_regex1_66_0": "1.66.0:150200.12.7.1:x86_64", "libefivar1": "37:6.12.1:x86_64", "binutils": "2.45:150100.7.57.1:x86_64", "cloud-init-config-suse": "23.3:lp156.3.9:x86_64", "release-notes-openSUSE": "15.6.20240123.1b6f9fd:lp156.1.1:noarch", "dos2unix": "7.4.0:1.19:x86_64", "libHX28": "3.22:1.26:x86_64", "libedit0": "3.1.snap20150325:2.12:x86_64", "libgdbm4": "1.12:1.418:x86_64", "liblzo2-2": "2.10:2.22:x86_64", "libnfnetlink0": "1.0.1:2.11:x86_64", "libsmi2": "0.4.8:1.29:x86_64", "libwrap0": "7.6:1.433:x86_64", "pigz": "2.3.3:1.28:x86_64", "yast2-trans-stats": "2.19.0:1.28:noarch", "libnsl2": "1.2.0:2.44:x86_64", "liblogging0": "1.0.6:3.21:x86_64", "yp-tools": "4.2.2:3.16:x86_64", "catatonit": "0.2.0:150500.3.3.1:x86_64", "liblmdb-0_9_30": "0.9.30:150500.3.2.1:x86_64", "vim-data-common": "9.2.0530:150500.20.52.1:noarch", "deltarpm": "3.6.5:150000.5.6.3:x86_64", "file": "5.32:7.14.1:x86_64", "libdialog14": "1.3:3.3.7:x86_64", "libmaxminddb0": "1.4.3:150000.1.8.1:x86_64", "libruby2_5-2_5": "2.5.9:150000.4.54.1:x86_64", "cronie": "1.5.7:150400.84.3.1:x86_64", "chrony": "4.1:150400.21.8.1:x86_64", "python3-cryptography": "3.3.2:150400.26.1:x86_64", "syslog-service": "2.0:150300.13.3.1:noarch", "python3-urllib3": "1.25.10:150300.4.27.1:noarch", "docker-buildx": "0.11.2:bp156.1.12:x86_64", "nfs-client": "2.6.4:150600.28.19.1:x86_64", "openssh-server": "9.6p1:150600.6.42.1:x86_64", "nfs-kernel-server": "2.6.4:150600.28.19.1:x86_64", "openssh": "9.6p1:150600.6.42.1:x86_64", "yast2": "4.6.8:150600.1.1:x86_64", "yast2-support": "4.6.0:150600.1.2:noarch", "yast2-slp": "4.6.0:150600.1.5:x86_64", "yast2-printer": "4.6.0:150600.1.4:x86_64", "yast2-nfs-server": "4.6.0:150600.1.2:noarch", "yast2-iscsi-lio-server": "4.6.0:150600.1.2:noarch", "yast2-tftp-server": "4.6.0:150600.1.2:noarch", "python3-jsonschema": "3.2.0:150200.9.5.1:noarch", "python3-salt": "3006.0:150500.4.75.1:x86_64", "salt-minion": "3006.0:150500.4.75.1:x86_64", "python3-oauthlib": "2.0.6:150000.3.6.1:noarch", "yast2-storage-ng": "4.6.18:150600.3.3.2:x86_64", "yast2-network": "4.6.11:150600.3.6.1:noarch", "yast2-country": "4.6.7:150600.3.3.2:x86_64", "yast2-bootloader": "4.6.7:lp156.1.2:x86_64", "yast2-online-update-frontend": "4.6.2:150600.1.2:noarch", "yast2-samba-client": "4.6.1:150600.1.2:noarch", "yast2-nis-client": "4.6.0:150600.1.5:x86_64", "yast2-http-server": "4.6.1:150600.1.2:noarch", "yast2-nis-server": "4.6.0:150600.1.2:noarch", "yast2-dhcp-server": "4.6.0:150600.1.2:noarch", "yast2-kdump": "4.6.3:150600.3.3.2:x86_64", "yast2-installation": "4.6.14:150600.3.6.1:noarch", "yast2-samba-server": "4.6.0:150600.1.2:noarch", "yast2-ftp-server": "4.6.0:150600.1.2:noarch", "autoyast2-installation": "4.6.6:150600.1.2:noarch", "yast2-registration": "4.6.3:150600.3.6.2:noarch", "libfmt8": "8.0.1:150400.1.8:x86_64", "libndctl6": "78:150600.1.10:x86_64", "rdma-core": "49.1:150600.2.5:x86_64", "libpmem1": "1.11.1:150400.1.10:x86_64", "libmlx5-1": "49.1:150600.2.5:x86_64", "libmlx4-1": "49.1:150600.2.5:x86_64", "libefa1": "49.1:150600.2.5:x86_64", "librdmacm1": "49.1:150600.2.5:x86_64", "librbd1": "16.2.13.66+g54799ee0666:150400.3.11.1:x86_64", "libsha1detectcoll1": "1.0.3:2.18:x86_64", "libopencsd1": "1.4.0:150600.1.5:x86_64", "libopencsd_c_api1": "1.4.0:150600.1.5:x86_64", "perf": "6.4.0.git38565.b555487b73:150600.3.20.1:x86_64", "stress-ng": "0.17.04:bp156.1.1:x86_64", "libXpm4": "3.5.12:150000.3.10.1:x86_64", "libdrm2": "2.4.118:150600.1.4:x86_64", "libjbig2": "2.1:150000.3.5.1:x86_64", "libmpfr6": "4.0.2:3.3.1:x86_64", "libmpxwrappers2": "8.2.1+r264010:150000.1.6.4:x86_64", "libsepol1": "3.1:150400.1.70:x86_64", "libvulkan1": "1.3.275.0:150600.1.2:x86_64", "libwayland-server0": "1.22.0:150600.1.6:x86_64", "libxshmfence1": "1.2:1.23:x86_64", "linux-glibc-devel": "6.4:150600.2.17:x86_64", "make": "4.2.1:7.3.2:x86_64", "pciutils": "3.13.0:150300.13.12.1:x86_64", "perl-CPAN-Changes": "0.400002:1.24:noarch", "libXi6": "1.7.9:3.2.1:x86_64", "perl-Encode-Locale": "1.05:1.24:noarch", "perl-XML-LibXML": "2.0132:150000.3.8.1:x86_64", "perl-IO-HTML": "1.001:1.24:noarch", "logrotate": "3.18.1:150400.3.10.1:x86_64", "perl-Net-SSLeay": "1.92:150600.1.2:x86_64", "libgirepository-1_0-1": "1.78.1:150600.2.3:x86_64", "perl-TimeDate": "2.30:3.9.1:noarch", "libatk-bridge-2_0-0": "2.50.0:150600.1.2:x86_64", "perl-URI": "1.73:1.16:noarch", "ca-certificates-mozilla": "2.84:150200.44.1:noarch", "site-config": "0.2:bp156.3.1:x86_64", "aaa_base-extras": "84.87+git20180409.04c9dae:150300.10.28.2:x86_64", "system-user-wwwrun": "20170617:150400.24.2.1:noarch", "systemd": "254.27:150600.4.62.1:x86_64", "libdrm_nouveau2": "2.4.118:150600.1.4:x86_64", "wicked": "0.6.77:150600.11.15.1:x86_64", "libtiff5": "4.0.9:150000.45.41.1:x86_64", "ruby2.5-stdlib": "2.5.9:150000.4.54.1:x86_64", "libdrm_intel1": "2.4.118:150600.1.4:x86_64", "python3-base": "3.6.15:150300.10.118.1:x86_64", "perl-Pod-Coverage": "0.23:1.23:noarch", "python3": "3.6.15:150300.10.118.1:x86_64", "perl-HTTP-Date": "6.02:1.24:noarch", "python3-pytz": "2022.1:150300.3.9.1:noarch", "perl-Net-HTTP": "6.17:1.20:noarch", "python3-psutil": "5.9.1:150300.3.6.1:x86_64", "perl-HTTP-Message": "6.14:1.16:noarch", "sysconfig": "0.85.10:150200.15.1:x86_64", "perl-HTTP-Negotiate": "6.01:1.23:noarch", "python3-six": "1.14.0:150200.15.1:noarch", "perl-HTTP-Cookies": "6.04:1.20:noarch", "python3-Babel": "2.8.0:3.3.1:noarch", "expat": "2.7.1:150400.3.37.1:x86_64", "ruby2.5-rubygem-gem2rpm": "0.10.1:3.45:x86_64", "libLLVM17": "17.0.6:150600.3.7.1:x86_64", "python3-urwid": "2.0.1:1.15:x86_64", "libasan4": "7.5.0+r278197:150000.4.44.1:x86_64", "ruby2.5-rubygem-simpleidn": "0.0.9:1.17:x86_64", "libcilkrts5": "7.5.0+r278197:150000.4.44.1:x86_64", "ruby2.5-rubygem-ruby-augeas": "0.5.0:1.31:x86_64", "libitm1": "15.2.0+git10201:150000.1.9.1:x86_64", "ruby2.5-rubygem-fast_gettext": "1.6.0:1.18:x86_64", "libubsan0": "7.5.0+r278197:150000.4.44.1:x86_64", "ruby": "2.5:1.21:x86_64", "libxcb-dri2-0": "1.13:150000.3.11.1:x86_64", "python3-pycparser": "2.17:150000.3.5.1:noarch", "libxcb-glx0": "1.13:150000.3.11.1:x86_64", "python3-netifaces": "0.10.6:150000.3.2.1:x86_64", "libxcb-randr0": "1.13:150000.3.11.1:x86_64", "python3-iniconfig": "1.1.1:150000.1.13.1:noarch", "libxcb-sync1": "1.13:150000.3.11.1:x86_64", "python3-idna": "2.6:150000.3.6.1:noarch", "busybox": "1.37.0:150500.10.17.1:x86_64", "python3-chardet": "3.0.4:150000.5.6.1:noarch", "cpp7": "7.5.0+r278197:150000.4.44.1:x86_64", "python3-blinker": "1.4:150000.3.6.1:noarch", "libgbm1": "23.3.4:150600.83.3.1:x86_64", "python3-appdirs": "1.4.3:150000.3.3.1:noarch", "Mesa-dri": "23.3.4:150600.83.3.1:x86_64", "python3-Jinja2": "2.10.1:150000.3.21.1:noarch", "libstdc++6-devel-gcc7": "7.5.0+r278197:150000.4.44.1:x86_64", "python3-msgpack": "0.5.6:150100.3.3.1:x86_64", "postfix": "3.8.4:150600.3.3.1:x86_64", "python3-pyrsistent": "0.14.4:150100.3.4.1:x86_64", "php8-cli": "8.2.30:150600.3.25.1:x86_64", "python3-rpm": "4.14.3:150400.59.16.1:x86_64", "cpp": "7:3.9.1:x86_64", "python3-more-itertools": "8.10.0:150400.10.1:noarch", "perl-LWP-Protocol-https": "6.06:150000.3.3.1:noarch", "cifs-utils": "6.15:150400.3.21.1:x86_64", "gcc": "7:3.9.1:x86_64", "ruby2.5-rubygem-nokogiri": "1.8.5:150400.14.6.1:x86_64", "php8": "8.2.30:150600.3.25.1:x86_64", "python3-zypp-plugin": "0.6.5:150600.18.8.1:noarch", "perl-XML-Parser": "2.44:150000.3.3.1:x86_64", "python3-M2Crypto": "0.44.0:150600.19.3.1:x86_64", "Mesa-demo-x": "8.3.0:150000.3.6.1:x86_64", "kmod": "29:150600.13.3.1:x86_64", "Mesa": "23.3.4:150600.83.3.1:x86_64", "dracut": "059+suse.563.gb5b26e30:150600.3.26.2:x86_64", "php8-iconv": "8.2.30:150600.3.25.1:x86_64", "rsync": "3.2.7:150600.3.21.1:x86_64", "php8-openssl": "8.2.30:150600.3.25.1:x86_64", "haveged": "1.9.14:150600.11.6.1:x86_64", "php8-sqlite": "8.2.30:150600.3.25.1:x86_64", "apparmor-parser": "3.1.7:150600.5.15.1:x86_64", "php8-xmlreader": "8.2.30:150600.3.25.1:x86_64", "lvm2": "2.03.22:150600.3.9.3:x86_64", "php8-gd": "8.2.30:150600.3.25.1:x86_64", "libsuseconnect": "1.21.1:150600.3.18.1:x86_64", "php8-zip": "8.2.30:150600.3.25.1:x86_64", "suseconnect-ruby-bindings": "1.21.1:150600.3.18.1:x86_64", "php8-posix": "8.2.30:150600.3.25.1:x86_64", "python3-apipkg": "2.1.0:150500.1.1:noarch", "php8-curl": "8.2.30:150600.3.25.1:x86_64", "scout": "0.2.7+20230124.b4e3468:150500.1.1:noarch", "perl-Net-DBus": "1.1.0:1.30:x86_64", "scout-command-not-found": "0.2.7+20230124.b4e3468:150500.1.1:noarch", "phoronix-test-suite": "10.8.4:bp156.4.2:noarch", "yast2-ruby-bindings": "4.6.2:150600.1.5:x86_64", "sharutils": "4.15.2:150600.17.3:x86_64", "fonts-config": "20200609+git0.42e2b1b:150600.18.2:noarch", "metamail": "2.7.19:bp156.5.6:x86_64", "yast2-transfer": "4.6.0:150600.1.5:x86_64", "sysstat": "12.0.2:150000.3.51.1:x86_64", "libstorage-ng-ruby": "4.5.201:150600.1.3:x86_64", "lshw-lang": "B.02.20:150200.3.18.2:noarch", "python3-cffi": "1.13.2:150200.3.5.1:x86_64", "iperf": "3.19.1:150000.3.15.1:x86_64", "ruby2.5-rubygem-cheetah": "0.5.2:1.33:x86_64", "python3-zipp": "0.6.0:150100.3.8.1:noarch", "python3-importlib-metadata": "1.5.0:150100.3.8.1:noarch", "rpcbind": "0.2.3:5.9.2:x86_64", "python3-pyzmq": "17.1.2:150000.3.8.1:x86_64", "libpolkit-agent-1-0": "121:150500.3.11.1:x86_64", "polkit": "121:150500.3.11.1:x86_64", "cron": "4.2:150400.84.3.1:x86_64", "libsodium23": "1.0.18:150000.4.14.1:x86_64", "boost-license1_66_0": "1.66.0:150200.12.7.1:noarch", "audit": "3.0.6:150400.4.16.1:x86_64", "libyaml-0-2": "0.1.7:150000.3.4.1:x86_64", "liblzma5": "5.4.1:150600.3.6.1:x86_64", "python3-passlib": "1.7.4:150300.3.2.1:noarch", "psmisc": "23.0:150000.6.25.1:x86_64", "libjitterentropy3": "3.4.1:150000.1.12.1:x86_64", "yast2-country-data": "4.6.7:150600.3.3.2:x86_64", "terminfo": "6.1:150000.5.33.1:x86_64", "libverto1": "0.2.6:3.20:x86_64", "rsyslog": "8.2406.0:150600.12.10.1:x86_64", "libfreetype6": "2.10.4:150000.4.25.1:x86_64", "libboost_thread1_66_0": "1.66.0:150200.12.7.1:x86_64", "python3-targetcli-fb": "2.1.54:150600.11.2:noarch", "libmetalink3": "0.1.3:150000.3.2.1:x86_64", "perl-base": "5.26.1:150300.17.20.1:x86_64", "yast2-squid": "4.6.0:150600.1.5:x86_64", "pam": "1.3.0:150000.6.86.1:x86_64", "libmagic1": "5.32:7.14.1:x86_64", "yast2-pam": "4.6.0:150600.1.2:noarch", "dialog": "1.3:3.3.7:x86_64", "libselinux1": "3.5:150600.3.3.1:x86_64", "yast2-audit-laf": "4.6.0:150600.1.2:noarch", "libx86emu3": "3.1:1.23:x86_64", "info": "6.5:4.17:x86_64", "python3-PyJWT": "2.4.0:150200.3.14.1:noarch", "libfido2-1": "1.13.0:150600.10.3:x86_64", "diffutils": "3.6:4.3.1:x86_64", "docker": "29.4.0_ce:150000.253.1:x86_64", "mokutil": "0.5.0:150600.8.3:x86_64", "libsolv-tools-base": "0.7.39:150600.8.24.1:x86_64", "yast2-firewall": "4.6.1:150600.3.3.2:noarch", "yast2-logs": "4.6.8:150600.1.1:x86_64", "openSUSE-release-dvd": "15.6:lp156.417.4.1:x86_64", "cloud-init": "23.3:lp156.3.9:x86_64", "parted": "3.2:150300.21.3.1:x86_64", "libfa1": "1.14.1:150600.3.3.1:x86_64", "yast2-nfs-client": "4.6.2:150600.1.2:noarch", "libavahi-client3": "0.8:150600.15.18.1:x86_64", "libgmp10": "6.1.2:4.9.1:x86_64", "yast2-ldap": "4.6.0:150600.1.5:x86_64", "ethtool": "6.4:150600.7.3.2:x86_64", "libpopt0": "1.16:3.22:x86_64", "yast2-dns-server": "4.6.0:150600.1.2:noarch", "crash": "8.0.4:150600.4.6.2:x86_64", "libcap2": "2.63:150400.3.6.1:x86_64", "yast2-users": "4.6.6:150600.3.3.5:x86_64", "pam-config": "1.1:150600.16.8.1:x86_64", "libunistring2": "0.9.10:1.1:x86_64", "yast2-mail": "4.6.0:150600.1.2:noarch", "libsubid5": "4.17.2:150600.17.18.1:x86_64", "libacl1": "2.2.52:4.3.1:x86_64", "yast2-add-on": "4.6.2:150600.1.2:noarch", "shadow": "4.17.2:150600.17.18.1:x86_64", "libglib-2_0-0": "2.78.6:150600.4.35.1:x86_64", "sysuser-shadow": "3.2:150400.3.5.3:noarch", "libdw1": "0.185:150400.5.8.3:x86_64", "system-group-kvm": "20170617:150400.24.2.1:noarch", "glibc-locale-base": "2.38:150600.14.49.1:x86_64", "pmdk": "1.11.1:150400.1.10:x86_64", "libp11-kit0": "0.23.22:150500.8.3.1:x86_64", "libzypp": "17.38.13:150600.3.92.1:x86_64", "libibverbs1": "49.1:150600.2.5:x86_64", "p11-kit-tools": "0.23.22:150500.8.3.1:x86_64", "libbsd0": "0.8.7:150600.16.2:x86_64", "libmana1": "49.1:150600.2.5:x86_64", "expect": "5.45.4:3.3.1:x86_64", "libprotobuf-c1": "1.5.0:150600.1.4:x86_64", "librados2": "16.2.13.66+g54799ee0666:150400.3.11.1:x86_64", "perl-Parse-RecDescent": "1.967015:1.22:x86_64", "libtdb1": "1.4.9:150600.1.4:x86_64", "git-core": "2.51.0:150600.3.15.1:x86_64", "liblockdev1": "1.0.3_git201003141408:1.97:x86_64", "openssl": "3.1.4:150600.2.1:noarch", "libtraceevent1": "1.8.4:150500.11.8.1:x86_64", "perl-X500-DN": "0.29:1.22:x86_64", "yast2-nfs-common": "4.6.0:150600.1.2:noarch", "libXfixes3": "6.0.0:150400.1.4:x86_64", "tcpdump": "4.99.1:150600.7.3:x86_64", "libtevent0": "0.15.0:150600.1.3:x86_64", "libisl15": "0.18:1.443:x86_64", "yast2-perl-bindings": "4.6.0:150600.1.5:x86_64", "libinih0": "53:150400.1.7:x86_64", "libmpx2": "8.2.1+r264010:150000.1.6.4:x86_64", "util-linux": "2.39.3:150600.4.21.1:x86_64", "liburing2": "2.1:150400.2.4:x86_64", "libtsan0": "11.3.0+git1637:150000.1.11.2:x86_64", "samba-client-libs": "4.19.8+git.473.51d12fd320c:150600.3.26.1:x86_64", "libip4tc2": "1.8.7:1.1:x86_64", "libxcrypt-devel": "4.4.15:150300.4.7.1:x86_64", "grub2-i386-pc": "2.12:150600.8.52.1:noarch", "findutils": "4.8.0:150300.3.3.2:x86_64", "m4": "1.4.18:4.3.1:x86_64", "ca-certificates": "2+git20240416.98ae794:150300.4.3.3:noarch", "libpci3": "3.13.0:150300.13.12.1:x86_64", "perl-Devel-Symdump": "2.18:1.24:noarch", "screen": "4.6.2:150000.5.8.1:x86_64", "yast2-schema": "4.3.31:150300.3.20.3:x86_64", "perl-LWP-MediaTypes": "6.02:1.25:noarch", "girepository-1_0": "1.78.1:150600.2.3:x86_64", "augeas": "1.14.1:150600.3.3.1:x86_64", "perl-Try-Tiny": "0.30:1.17:noarch", "at-spi2-core": "2.50.0:150600.1.2:x86_64", "libaio1": "0.3.113:150600.15.3.1:x86_64", "system-user-mail": "20170617:150400.24.2.1:noarch", "libopenssl1_1": "1.1.1w:150600.5.32.1:x86_64", "libbpf1": "1.2.2:150600.3.6.2:x86_64", "libdrm_amdgpu1": "2.4.118:150600.1.4:x86_64", "wicked-service": "0.6.77:150600.11.15.1:x86_64", "libhavege2": "1.9.14:150600.11.6.1:x86_64", "autoconf": "2.69:1.445:noarch", "libpython3_6m1_0": "3.6.15:150300.10.118.1:x86_64", "libnl-config": "3.9.0:150600.15.4.4:noarch", "perl-WWW-RobotRules": "6.02:1.23:noarch", "python3-pyparsing": "2.4.7:150300.3.3.1:noarch", "libuuid1": "2.39.3:150600.4.21.1:x86_64", "perl-File-Listing": "6.04:1.23:noarch", "sysconfig-netconfig": "0.85.10:150200.15.1:x86_64", "mdadm": "4.3+36.g12cb7035:150600.3.23.1:x86_64", "Mesa-libglapi0": "23.3.4:150600.83.3.1:x86_64", "python3-packaging": "21.3:150200.3.6.1:noarch", "pkg-config": "0.29.2:150600.15.6.3:x86_64", "libX11-xcb1": "1.8.7:150600.3.6.1:x86_64", "python3-MarkupSafe": "1.0:1.29:x86_64", "timezone": "2026b:150600.91.9.1:x86_64", "libgomp1": "15.2.0+git10201:150000.1.9.1:x86_64", "ruby2.5-rubygem-mini_portile2": "2.3.0:1.27:x86_64", "librdkafka1": "0.11.6:150600.16.3.1:x86_64", "libwebp7": "1.0.3:150200.3.14.1:x86_64", "python3-pyserial": "3.4:150000.3.4.1:noarch", "libhogweed6": "3.9.1:150600.3.2.1:x86_64", "libxcb-present0": "1.13:150000.3.11.1:x86_64", "python3-jsonpointer": "1.14:150000.3.2.1:noarch", "libcryptsetup12": "2.7.0:150600.3.3.1:x86_64", "libxcb-xfixes0": "1.13:150000.3.11.1:x86_64", "python3-distro": "1.5.0:3.5.1:noarch", "cryptsetup": "2.7.0:150600.3.3.1:x86_64", "perl-HTML-Parser": "3.830.0:150000.3.3.1:x86_64", "python3-asn1crypto": "0.24.0:150000.3.5.1:noarch", "groff": "1.22.4:150400.5.2.1:x86_64", "busybox-ed": "1.37.0:150500.7.11.1:noarch", "python3-contextvars": "2.4:150000.1.3.1:noarch", "libeconf0": "0.5.2:150400.3.6.1:x86_64", "gcc7-c++": "7.5.0+r278197:150000.4.44.1:x86_64", "python3-jsonpatch": "1.23:150100.3.5.1:noarch", "strace": "5.14:150400.3.3.2:x86_64", "perl-libwww-perl": "6.31:1.17:noarch", "python3-gobject": "3.42.2:150400.10.23:x86_64", "gzip": "1.10:150200.10.1:x86_64", "gcc-c++": "7:3.9.1:x86_64", "python3-setuptools": "44.1.1:150400.9.15.1:noarch", "libctf-nobfd0": "2.45:150100.7.57.1:x86_64", "Mesa-libEGL1": "23.3.4:150600.83.3.1:x86_64", "suse-module-tools": "15.6.14:150600.3.17.1:x86_64", "branding-openSUSE": "15.6.20240408:lp156.1.2:noarch", "Mesa-libGL1": "23.3.4:150600.83.3.1:x86_64", "suseconnect-ng": "1.21.1:150600.3.18.1:x86_64", "attr": "2.4.47:2.19:x86_64", "php8-pdo": "8.2.30:150600.3.25.1:x86_64", "cyrus-sasl-saslauthd": "2.1.28:150600.7.14.1:x86_64", "libXau6": "1.0.8:1.26:x86_64", "php8-xmlwriter": "8.2.30:150600.3.25.1:x86_64", "kernel-default": "6.4.0:150600.23.118.1:x86_64", "libldapcpp1": "0.3.1:1.33:x86_64", "php8-sockets": "8.2.30:150600.3.25.1:x86_64", "dracut-kiwi-oem-repart": "10.2.33:150600.14.10.2:x86_64", "libnscd1": "2.0.2:3.21:x86_64", "perl-XML-Twig": "3.52:3.3.1:noarch", "irqbalance": "1.9.2:150500.1.3:x86_64", "lsscsi": "0.28:1.24:x86_64", "libsensors4": "3.5.0:4.6.1:x86_64", "python3-dbus-python": "1.2.16:150600.3.2:x86_64", "zip": "3.0:2.22:x86_64", "procmail": "3.22:2.34:x86_64", "yast2-hardware-detection": "4.6.0:150600.1.5:x86_64", "tcpd": "7.6:1.433:x86_64", "libiperf0": "3.19.1:150000.3.15.1:x86_64", "ruby2.5-rubygem-cfa": "1.0.2:1.33:x86_64", "libduktape206": "2.6.0:150500.4.5.1:x86_64", "python3-py": "1.10.0:150100.5.15.1:noarch", "iputils": "20221126:150500.3.14.1:x86_64", "dhcp": "4.3.6.P1:150000.6.22.1:x86_64", "keyutils": "1.6.3:5.6.1:x86_64", "libpolkit-gobject-1-0": "121:150500.3.11.1:x86_64", "libpipeline1": "1.4.1:150000.3.2.1:x86_64"} Linux 6.4.0.150600.23.118.default #1 SMP PREEMPT_DYNAMIC Wed Jun 17 15:20:04 UTC 2026 (353f7fd) x86_64 x86_64 GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"gcc (SUSE Linux) 7.5.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "70500", "CONFIG_CC_IS_CLANG": "not set", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_IS_LLVM": "not set", "CONFIG_AS_VERSION": "24500", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24500", "CONFIG_LD_IS_LLD": "not set", "CONFIG_LLD_VERSION": "0", "CONFIG_RUST_IS_AVAILABLE": "not set", "CONFIG_CC_CAN_LINK": "y", "CONFIG_CC_CAN_LINK_STATIC": "not set", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "not set", "CONFIG_TOOLS_SUPPORT_RELR": "not set", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_PAHOLE_VERSION": "125", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-150600.23.118-default\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "y", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "y", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_GENERIC_IRQ_INJECTION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_GENERIC_IRQ_CHIP": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "not set", "CONFIG_NO_HZ_FULL": "y", "CONFIG_CONTEXT_TRACKING_USER": "y", "CONFIG_CONTEXT_TRACKING_USER_FORCE": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "y", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_USERMODE_DRIVER": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "y", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "y", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "not set", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "y", "CONFIG_VIRT_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "y", "CONFIG_PSI_DEFAULT_DISABLED": "y", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_NEED_SRCU_NMI_SAFE": "not set", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_RCU_NOCB_CPU": "y", "CONFIG_RCU_NOCB_CPU_DEFAULT_ALL": "not set", "CONFIG_RCU_LAZY": "not set", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "18", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "15", "CONFIG_PRINTK_INDEX": "y", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC11_NO_ARRAY_BOUNDS": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_NUMA_BALANCING": "y", "CONFIG_NUMA_BALANCING_DEFAULT_ENABLED": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_KMEM": "y", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "y", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "y", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CGROUP_HUGETLB": "y", "CONFIG_CPUSETS": "y", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "y", "CONFIG_CGROUP_DEBUG": "not set", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "y", "CONFIG_BOOT_CONFIG_FORCE": "not set", "CONFIG_BOOT_CONFIG_EMBED": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "y", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_BASE_FULL": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "y", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_KALLSYMS_BASE_RELATIVE": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_DEBUG_RSEQ": "not set", "CONFIG_EMBEDDED": "not set", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_GUEST_PERF_EVENTS": "y", "CONFIG_PC104": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "y", "CONFIG_TRACEPOINTS": "y", "CONFIG_CRASH_CORE": "y", "CONFIG_KEXEC_CORE": "y", "CONFIG_HAVE_IMA_KEXEC": "y", "CONFIG_KEXEC": "y", "CONFIG_KEXEC_FILE": "y", "CONFIG_KEXEC_SIG": "y", "CONFIG_KEXEC_SIG_FORCE": "not set", "CONFIG_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_KEXEC_JUMP": "not set", "CONFIG_CRASH_DUMP": "y", "CONFIG_CRASH_HOTPLUG": "y", "CONFIG_CRASH_MAX_MEMORY_RANGES": "8192", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_DYNAMIC_PHYSICAL_MASK": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_FEATURE_NAMES": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_MPPARSE": "y", "CONFIG_GOLDFISH": "not set", "CONFIG_X86_CPU_RESCTRL": "y", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_NUMACHIP": "not set", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_UV": "y", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "y", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_XXL": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "y", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "y", "CONFIG_XEN_PV": "y", "CONFIG_XEN_512GB": "not set", "CONFIG_XEN_PV_SMP": "y", "CONFIG_XEN_PV_DOM0": "y", "CONFIG_XEN_PVHVM": "y", "CONFIG_XEN_PVHVM_SMP": "y", "CONFIG_XEN_PVHVM_GUEST": "y", "CONFIG_XEN_SAVE_RESTORE": "y", "CONFIG_XEN_DEBUG_FS": "y", "CONFIG_XEN_PVH": "y", "CONFIG_XEN_DOM0": "y", "CONFIG_XEN_PV_MSR_SAFE": "y", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "y", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "y", "CONFIG_ACRN_GUEST": "y", "CONFIG_INTEL_TDX_GUEST": "y", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "not set", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "y", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_TSC": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_PROCESSOR_SELECT": "not set", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "y", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "y", "CONFIG_NR_CPUS_RANGE_BEGIN": "8192", "CONFIG_NR_CPUS_RANGE_END": "8192", "CONFIG_NR_CPUS_DEFAULT": "8192", "CONFIG_NR_CPUS": "8192", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "y", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "y", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "m", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "m", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "y", "CONFIG_VM86": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "m", "CONFIG_X86_CPUID": "m", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_X86_MEM_ENCRYPT": "y", "CONFIG_AMD_MEM_ENCRYPT": "y", "CONFIG_NUMA": "y", "CONFIG_AMD_NUMA": "y", "CONFIG_X86_64_ACPI_NUMA": "y", "CONFIG_NUMA_EMU": "y", "CONFIG_NODES_SHIFT": "10", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_MEMORY_PROBE": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY_DEVICE": "y", "CONFIG_X86_PMEM_LEGACY": "m", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_ARCH_USES_PG_UNCACHED": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "not set", "CONFIG_X86_CET": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_X86_INTEL_TSX_MODE_OFF": "not set", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "y", "CONFIG_X86_SGX": "y", "CONFIG_X86_USER_SHADOW_STACK": "y", "CONFIG_INTEL_TDX_HOST": "y", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "y", "CONFIG_EFI_FAKE_MEMMAP": "not set", "CONFIG_EFI_RUNTIME_MAP": "y", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "y", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "not set", "CONFIG_HZ": "250", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SELECTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0xa", "CONFIG_ADDRESS_MASKING": "not set", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_BOOTPARAM_HOTPLUG_CPU0": "not set", "CONFIG_DEBUG_HOTPLUG_CPU0": "not set", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_LIVEPATCH": "y", "CONFIG_LIVEPATCH_IPA_CLONES": "y", "CONFIG_CC_HAS_SLS": "not set", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_SPECULATION_MITIGATIONS": "y", "CONFIG_PAGE_TABLE_ISOLATION": "y", "CONFIG_RETPOLINE": "y", "CONFIG_RETHUNK": "y", "CONFIG_CPU_UNRET_ENTRY": "y", "CONFIG_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_CPU_IBPB_ENTRY": "y", "CONFIG_CPU_IBRS_ENTRY": "y", "CONFIG_CPU_SRSO": "y", "CONFIG_GDS_FORCE_MITIGATION": "not set", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_MITIGATION_VMSCAPE": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_ARCH_HIBERNATION_HEADER": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_SUSPEND_SKIP_SYNC": "not set", "CONFIG_HIBERNATE_CALLBACKS": "y", "CONFIG_HIBERNATION": "y", "CONFIG_HIBERNATE_VERIFICATION": "y", "CONFIG_HIBERNATE_VERIFICATION_FORCE": "not set", "CONFIG_HIBERNATION_SNAPSHOT_DEV": "y", "CONFIG_PM_STD_PARTITION": "\\"\\"", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_DPM_WATCHDOG": "y", "CONFIG_DPM_WATCHDOG_TIMEOUT": "60", "CONFIG_PM_TRACE": "y", "CONFIG_PM_TRACE_RTC": "y", "CONFIG_PM_CLK": "y", "CONFIG_PM_GENERIC_DOMAINS": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_PM_GENERIC_DOMAINS_SLEEP": "y", "CONFIG_ENERGY_MODEL": "y", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_TABLE_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "y", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "m", "CONFIG_ACPI_AC": "m", "CONFIG_ACPI_BATTERY": "m", "CONFIG_ACPI_BUTTON": "m", "CONFIG_ACPI_TINY_POWER_BUTTON": "m", "CONFIG_ACPI_TINY_POWER_BUTTON_SIGNAL": "38", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "m", "CONFIG_ACPI_TAD": "m", "CONFIG_ACPI_DOCK": "y", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_IPMI": "m", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "m", "CONFIG_ACPI_THERMAL": "m", "CONFIG_ACPI_PLATFORM_PROFILE": "m", "CONFIG_ACPI_CUSTOM_DSDT_FILE": "\\"\\"", "CONFIG_ACPI_CUSTOM_DSDT": "not set", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "y", "CONFIG_ACPI_PCI_SLOT": "y", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_MEMORY": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "m", "CONFIG_ACPI_HED": "y", "CONFIG_ACPI_CUSTOM_METHOD": "not set", "CONFIG_ACPI_BGRT": "y", "CONFIG_ACPI_REDUCED_HARDWARE_ONLY": "not set", "CONFIG_ACPI_NFIT": "m", "CONFIG_NFIT_SECURITY_DEBUG": "not set", "CONFIG_ACPI_NUMA": "y", "CONFIG_ACPI_HMAT": "y", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "y", "CONFIG_ACPI_APEI_GHES": "y", "CONFIG_ACPI_APEI_PCIEAER": "y", "CONFIG_ACPI_APEI_MEMORY_FAILURE": "y", "CONFIG_ACPI_APEI_EINJ": "m", "CONFIG_ACPI_APEI_ERST_DEBUG": "not set", "CONFIG_ACPI_DPTF": "y", "CONFIG_DPTF_POWER": "m", "CONFIG_DPTF_PCH_FIVR": "m", "CONFIG_ACPI_WATCHDOG": "y", "CONFIG_ACPI_EXTLOG": "m", "CONFIG_ACPI_ADXL": "y", "CONFIG_ACPI_CONFIGFS": "m", "CONFIG_ACPI_PFRUT": "m", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "y", "CONFIG_PMIC_OPREGION": "y", "CONFIG_XPOWER_PMIC_OPREGION": "y", "CONFIG_BXT_WC_PMIC_OPREGION": "y", "CONFIG_TPS68470_PMIC_OPREGION": "y", "CONFIG_ACPI_VIOT": "y", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "not set", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "m", "CONFIG_CPU_FREQ_GOV_USERSPACE": "m", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "m", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "m", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "m", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "m", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "m", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_X86_SPEEDSTEP_LIB": "not set", "CONFIG_CPUFREQ_ARCH_CUR_FREQ": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "y", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "y", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "m", "CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED": "not set", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_PCI_XEN": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_PCI_CNB20LE_QUIRK": "not set", "CONFIG_ISA_BUS": "not set", "CONFIG_ISA_DMA_API": "y", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_HAVE_KVM": "y", "CONFIG_KVM_COMMON": "y", "CONFIG_HAVE_KVM_PFNCACHE": "y", "CONFIG_HAVE_KVM_IRQCHIP": "y", "CONFIG_HAVE_KVM_IRQ_ROUTING": "y", "CONFIG_HAVE_KVM_DIRTY_RING": "y", "CONFIG_HAVE_KVM_DIRTY_RING_TSO": "y", "CONFIG_HAVE_KVM_DIRTY_RING_ACQ_REL": "y", "CONFIG_KVM_MMIO": "y", "CONFIG_KVM_ASYNC_PF": "y", "CONFIG_HAVE_KVM_MSI": "y", "CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT": "y", "CONFIG_KVM_VFIO": "y", "CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT": "y", "CONFIG_KVM_COMPAT": "y", "CONFIG_HAVE_KVM_IRQ_BYPASS": "y", "CONFIG_HAVE_KVM_NO_POLL": "y", "CONFIG_KVM_XFER_TO_GUEST_WORK": "y", "CONFIG_HAVE_KVM_PM_NOTIFIER": "y", "CONFIG_KVM_GENERIC_HARDWARE_ENABLING": "y", "CONFIG_KVM_GENERIC_MMU_NOTIFIER": "y", "CONFIG_KVM_GENERIC_MEMORY_ATTRIBUTES": "y", "CONFIG_KVM_PRIVATE_MEM": "y", "CONFIG_KVM_GENERIC_PRIVATE_MEM": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "m", "CONFIG_KVM_WERROR": "not set", "CONFIG_KVM_SW_PROTECTED_VM": "y", "CONFIG_KVM_INTEL": "m", "CONFIG_X86_SGX_KVM": "y", "CONFIG_KVM_AMD": "m", "CONFIG_KVM_AMD_SEV": "y", "CONFIG_KVM_SMM": "y", "CONFIG_KVM_HYPERV": "y", "CONFIG_KVM_XEN": "not set", "CONFIG_KVM_PROVE_MMU": "not set", "CONFIG_KVM_EXTERNAL_WRITE_TRACKING": "y", "CONFIG_KVM_MAX_NR_VCPUS": "4096", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "y", "CONFIG_STATIC_KEYS_SELFTEST": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_64BIT_ALIGNED_ACCESS": "not set", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_ARCH_WANT_PMD_MKWRITE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_HAVE_RELIABLE_STACKTRACE": "y", "CONFIG_HAVE_ARCH_HASH": "not set", "CONFIG_ISA_BUS_API": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_EPHEMERAL_INODES": "not set", "CONFIG_CPU_NO_EFFICIENT_FFS": "not set", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "y", "CONFIG_ARCH_OPTIONAL_KERNEL_RWX": "not set", "CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_ARCH_HAS_CC_PLATFORM": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_HAVE_ARCH_NODE_DEV_GROUP": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_BASE_SMALL": "0", "CONFIG_MODULE_SIG_FORMAT": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUGFS": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "y", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "y", "CONFIG_MODVERSIONS": "y", "CONFIG_ASM_MODVERSIONS": "y", "CONFIG_MODULE_SRCVERSION_ALL": "y", "CONFIG_MODULE_SIG": "y", "CONFIG_MODULE_SIG_FORCE": "not set", "CONFIG_MODULE_SIG_ALL": "not set", "CONFIG_MODULE_SIG_SHA1": "not set", "CONFIG_MODULE_SIG_SHA224": "not set", "CONFIG_MODULE_SIG_SHA256": "y", "CONFIG_MODULE_SIG_SHA384": "not set", "CONFIG_MODULE_SIG_SHA512": "not set", "CONFIG_MODULE_SIG_HASH": "\\"sha256\\"", "CONFIG_MODULE_COMPRESS_NONE": "y", "CONFIG_MODULE_COMPRESS_GZIP": "not set", "CONFIG_MODULE_COMPRESS_XZ": "not set", "CONFIG_MODULE_COMPRESS_ZSTD": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_RQ_ALLOC_TIME": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "y", "CONFIG_BLK_DEV_INTEGRITY": "y", "CONFIG_BLK_DEV_INTEGRITY_T10": "m", "CONFIG_BLK_DEV_ZONED": "y", "CONFIG_BLK_DEV_THROTTLING": "y", "CONFIG_BLK_DEV_THROTTLING_LOW": "not set", "CONFIG_BLK_WBT": "y", "CONFIG_BLK_WBT_MQ": "y", "CONFIG_BLK_CGROUP_IOLATENCY": "y", "CONFIG_BLK_CGROUP_FC_APPID": "y", "CONFIG_BLK_CGROUP_IOCOST": "y", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_DEBUG_FS_ZONED": "y", "CONFIG_BLK_SED_OPAL": "y", "CONFIG_BLK_INLINE_ENCRYPTION": "y", "CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK": "y", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "y", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "y", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "y", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "y", "CONFIG_UNIXWARE_DISKLABEL": "y", "CONFIG_LDM_PARTITION": "y", "CONFIG_LDM_DEBUG": "not set", "CONFIG_SGI_PARTITION": "y", "CONFIG_ULTRIX_PARTITION": "y", "CONFIG_SUN_PARTITION": "y", "CONFIG_KARMA_PARTITION": "y", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "y", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_PREEMPT_NOTIFIERS": "y", "CONFIG_PADATA": "y", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_ZPOOL": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "y", "CONFIG_ZSWAP_DEFAULT_ON": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO": "y", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT": "\\"lzo\\"", "CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD": "y", "CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD": "not set", "CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC": "not set", "CONFIG_ZSWAP_ZPOOL_DEFAULT": "\\"zbud\\"", "CONFIG_ZBUD": "y", "CONFIG_Z3FOLD": "m", "CONFIG_ZSMALLOC": "y", "CONFIG_ZSMALLOC_STAT": "not set", "CONFIG_ZSMALLOC_CHAIN_SIZE": "8", "CONFIG_SLAB": "not set", "CONFIG_SLUB": "y", "CONFIG_SLUB_TINY": "not set", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "y", "CONFIG_SLAB_FREELIST_HARDENED": "y", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "y", "CONFIG_COMPAT_BRK": "not set", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_VMEMMAP": "y", "CONFIG_HAVE_FAST_GUP": "y", "CONFIG_ARCH_KEEP_MEMBLOCK": "y", "CONFIG_NUMA_KEEP_MEMINFO": "y", "CONFIG_MEMORY_ISOLATION": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_HAVE_BOOTMEM_INFO_NODE": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE": "y", "CONFIG_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE": "not set", "CONFIG_MEMORY_HOTREMOVE": "y", "CONFIG_MHP_MEMMAP_ON_MEMORY": "y", "CONFIG_SPLIT_PTLOCK_CPUS": "4", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_DEVICE_MIGRATION": "y", "CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION": "y", "CONFIG_ARCH_ENABLE_THP_MIGRATION": "y", "CONFIG_HUGETLB_PAGE_SIZE_VARIABLE": "not set", "CONFIG_CONTIG_ALLOC": "y", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "y", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "65536", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "y", "CONFIG_HWPOISON_INJECT": "m", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "y", "CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS": "y", "CONFIG_TRANSPARENT_HUGEPAGE_MADVISE": "not set", "CONFIG_THP_SWAP": "y", "CONFIG_READ_ONLY_THP_FOR_FS": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_USE_PERCPU_NUMA_NODE_ID": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_FRONTSWAP": "y", "CONFIG_CMA": "y", "CONFIG_CMA_DEBUG": "not set", "CONFIG_CMA_DEBUGFS": "not set", "CONFIG_CMA_SYSFS": "not set", "CONFIG_CMA_AREAS": "19", "CONFIG_MEM_SOFT_DIRTY": "y", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "y", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ARCH_HAS_ZONE_DMA_SET": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_ZONE_DEVICE": "y", "CONFIG_HMM_MIRROR": "y", "CONFIG_GET_FREE_REGION": "y", "CONFIG_DEVICE_PRIVATE": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MAPPING_DIRTY_HELPERS": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "y", "CONFIG_USERFAULTFD": "y", "CONFIG_HAVE_ARCH_USERFAULTFD_WP": "y", "CONFIG_HAVE_ARCH_USERFAULTFD_MINOR": "y", "CONFIG_PTE_MARKER_UFFD_WP": "y", "CONFIG_LRU_GEN": "y", "CONFIG_LRU_GEN_ENABLED": "not set", "CONFIG_LRU_GEN_STATS": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_WANT_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_NET_REDIRECT": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_PACKET": "m", "CONFIG_PACKET_DIAG": "m", "CONFIG_UNIX": "y", "CONFIG_UNIX_SCM": "y", "CONFIG_AF_UNIX_OOB": "not set", "CONFIG_UNIX_DIAG": "m", "CONFIG_TLS": "m", "CONFIG_TLS_DEVICE": "y", "CONFIG_TLS_TOE": "y", "CONFIG_XFRM": "y", "CONFIG_XFRM_OFFLOAD": "y", "CONFIG_XFRM_ALGO": "m", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "m", "CONFIG_XFRM_INTERFACE": "m", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "m", "CONFIG_XFRM_ESP": "m", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XFRM_ESPINTCP": "y", "CONFIG_SMC": "m", "CONFIG_SMC_DIAG": "m", "CONFIG_XDP_SOCKETS": "y", "CONFIG_XDP_SOCKETS_DIAG": "m", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "not set", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "m", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "y", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "m", "CONFIG_NET_UDP_TUNNEL": "m", "CONFIG_NET_FOU": "m", "CONFIG_NET_FOU_IP_TUNNELS": "y", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "m", "CONFIG_INET_ESPINTCP": "y", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "m", "CONFIG_INET_DIAG": "m", "CONFIG_INET_TCP_DIAG": "m", "CONFIG_INET_UDP_DIAG": "m", "CONFIG_INET_RAW_DIAG": "m", "CONFIG_INET_DIAG_DESTROY": "y", "CONFIG_TCP_CONG_ADVANCED": "y", "CONFIG_TCP_CONG_BIC": "m", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_TCP_CONG_WESTWOOD": "m", "CONFIG_TCP_CONG_HTCP": "m", "CONFIG_TCP_CONG_HSTCP": "m", "CONFIG_TCP_CONG_HYBLA": "m", "CONFIG_TCP_CONG_VEGAS": "m", "CONFIG_TCP_CONG_NV": "m", "CONFIG_TCP_CONG_SCALABLE": "m", "CONFIG_TCP_CONG_LP": "m", "CONFIG_TCP_CONG_VENO": "m", "CONFIG_TCP_CONG_YEAH": "m", "CONFIG_TCP_CONG_ILLINOIS": "m", "CONFIG_TCP_CONG_DCTCP": "m", "CONFIG_TCP_CONG_CDG": "m", "CONFIG_TCP_CONG_BBR": "m", "CONFIG_DEFAULT_CUBIC": "y", "CONFIG_DEFAULT_RENO": "not set", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_MD5SIG": "y", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "y", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "m", "CONFIG_INET6_ESP": "m", "CONFIG_INET6_ESP_OFFLOAD": "m", "CONFIG_INET6_ESPINTCP": "y", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "m", "CONFIG_IPV6_ILA": "m", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "m", "CONFIG_IPV6_SIT": "m", "CONFIG_IPV6_SIT_6RD": "y", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "m", "CONFIG_IPV6_FOU": "m", "CONFIG_IPV6_FOU_TUNNEL": "m", "CONFIG_IPV6_MULTIPLE_TABLES": "y", "CONFIG_IPV6_SUBTREES": "y", "CONFIG_IPV6_MROUTE": "y", "CONFIG_IPV6_MROUTE_MULTIPLE_TABLES": "y", "CONFIG_IPV6_PIMSM_V2": "y", "CONFIG_IPV6_SEG6_LWTUNNEL": "y", "CONFIG_IPV6_SEG6_HMAC": "y", "CONFIG_IPV6_SEG6_BPF": "y", "CONFIG_IPV6_RPL_LWTUNNEL": "y", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "y", "CONFIG_MPTCP": "y", "CONFIG_INET_MPTCP_DIAG": "m", "CONFIG_MPTCP_IPV6": "y", "CONFIG_NETWORK_SECMARK": "y", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "m", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "m", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "m", "CONFIG_NETFILTER_NETLINK_ACCT": "m", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "m", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_SECMARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "y", "CONFIG_NF_CONNTRACK_PROCFS": "y", "CONFIG_NF_CONNTRACK_EVENTS": "y", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "y", "CONFIG_NF_CONNTRACK_LABELS": "y", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "m", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "m", "CONFIG_NF_CT_NETLINK_HELPER": "m", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "y", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "m", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "m", "CONFIG_NFT_FIB_INET": "m", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "m", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "m", "CONFIG_NFT_DUP_NETDEV": "m", "CONFIG_NFT_FWD_NETDEV": "m", "CONFIG_NFT_FIB_NETDEV": "m", "CONFIG_NFT_REJECT_NETDEV": "m", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "y", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_SET": "m", "CONFIG_NETFILTER_XT_TARGET_AUDIT": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CONNSECMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "m", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "m", "CONFIG_NETFILTER_XT_TARGET_LED": "m", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "m", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "m", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "m", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "m", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_SECMARK": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "m", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "m", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "m", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "m", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "m", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "m", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "m", "CONFIG_NETFILTER_XT_MATCH_IPVS": "m", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "m", "CONFIG_NETFILTER_XT_MATCH_OSF": "m", "CONFIG_NETFILTER_XT_MATCH_OWNER": "m", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "m", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "m", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "m", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "m", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "m", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "m", "CONFIG_IP_SET_MAX": "256", "CONFIG_IP_SET_BITMAP_IP": "m", "CONFIG_IP_SET_BITMAP_IPMAC": "m", "CONFIG_IP_SET_BITMAP_PORT": "m", "CONFIG_IP_SET_HASH_IP": "m", "CONFIG_IP_SET_HASH_IPMARK": "m", "CONFIG_IP_SET_HASH_IPPORT": "m", "CONFIG_IP_SET_HASH_IPPORTIP": "m", "CONFIG_IP_SET_HASH_IPPORTNET": "m", "CONFIG_IP_SET_HASH_IPMAC": "m", "CONFIG_IP_SET_HASH_MAC": "m", "CONFIG_IP_SET_HASH_NETPORTNET": "m", "CONFIG_IP_SET_HASH_NET": "m", "CONFIG_IP_SET_HASH_NETNET": "m", "CONFIG_IP_SET_HASH_NETPORT": "m", "CONFIG_IP_SET_HASH_NETIFACE": "m", "CONFIG_IP_SET_LIST_SET": "m", "CONFIG_IP_VS": "m", "CONFIG_IP_VS_IPV6": "y", "CONFIG_IP_VS_DEBUG": "not set", "CONFIG_IP_VS_TAB_BITS": "12", "CONFIG_IP_VS_PROTO_TCP": "y", "CONFIG_IP_VS_PROTO_UDP": "y", "CONFIG_IP_VS_PROTO_AH_ESP": "y", "CONFIG_IP_VS_PROTO_ESP": "y", "CONFIG_IP_VS_PROTO_AH": "y", "CONFIG_IP_VS_PROTO_SCTP": "y", "CONFIG_IP_VS_RR": "m", "CONFIG_IP_VS_WRR": "m", "CONFIG_IP_VS_LC": "m", "CONFIG_IP_VS_WLC": "m", "CONFIG_IP_VS_FO": "m", "CONFIG_IP_VS_OVF": "m", "CONFIG_IP_VS_LBLC": "m", "CONFIG_IP_VS_LBLCR": "m", "CONFIG_IP_VS_DH": "m", "CONFIG_IP_VS_SH": "m", "CONFIG_IP_VS_MH": "m", "CONFIG_IP_VS_SED": "m", "CONFIG_IP_VS_NQ": "m", "CONFIG_IP_VS_TWOS": "m", "CONFIG_IP_VS_SH_TAB_BITS": "8", "CONFIG_IP_VS_MH_TAB_INDEX": "12", "CONFIG_IP_VS_FTP": "m", "CONFIG_IP_VS_NFCT": "y", "CONFIG_IP_VS_PE_SIP": "m", "CONFIG_NF_DEFRAG_IPV4": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "m", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "m", "CONFIG_NFT_FIB_IPV4": "m", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "m", "CONFIG_NF_LOG_ARP": "m", "CONFIG_NF_LOG_IPV4": "m", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_SNMP_BASIC": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "m", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "m", "CONFIG_NFT_FIB_IPV6": "m", "CONFIG_NF_DUP_IPV6": "m", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "m", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "m", "CONFIG_IP6_NF_MATCH_RPFILTER": "m", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "m", "CONFIG_IP6_NF_TARGET_HL": "m", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "m", "CONFIG_IP6_NF_TARGET_SYNPROXY": "m", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "m", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "m", "CONFIG_IP6_NF_TARGET_NPT": "m", "CONFIG_NF_DEFRAG_IPV6": "m", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "m", "CONFIG_NFT_BRIDGE_REJECT": "m", "CONFIG_NF_CONNTRACK_BRIDGE": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_BPFILTER": "y", "CONFIG_BPFILTER_UMH": "m", "CONFIG_IP_DCCP": "m", "CONFIG_INET_DCCP_DIAG": "m", "CONFIG_IP_DCCP_CCID2_DEBUG": "not set", "CONFIG_IP_DCCP_CCID3": "y", "CONFIG_IP_DCCP_CCID3_DEBUG": "not set", "CONFIG_IP_DCCP_TFRC_LIB": "y", "CONFIG_IP_DCCP_DEBUG": "not set", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "m", "CONFIG_RDS_RDMA": "m", "CONFIG_RDS_TCP": "m", "CONFIG_RDS_DEBUG": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_IB": "not set", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "m", "CONFIG_ATM_CLIP": "m", "CONFIG_ATM_CLIP_NO_ICMP": "not set", "CONFIG_ATM_LANE": "m", "CONFIG_ATM_MPOA": "m", "CONFIG_ATM_BR2684": "m", "CONFIG_ATM_BR2684_IPFILTER": "not set", "CONFIG_L2TP": "m", "CONFIG_L2TP_DEBUGFS": "m", "CONFIG_L2TP_V3": "y", "CONFIG_L2TP_IP": "m", "CONFIG_L2TP_ETH": "m", "CONFIG_STP": "m", "CONFIG_GARP": "m", "CONFIG_MRP": "m", "CONFIG_BRIDGE": "m", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "y", "CONFIG_BRIDGE_CFM": "y", "CONFIG_NET_DSA": "m", "CONFIG_NET_DSA_TAG_NONE": "m", "CONFIG_NET_DSA_TAG_AR9331": "m", "CONFIG_NET_DSA_TAG_BRCM_COMMON": "m", "CONFIG_NET_DSA_TAG_BRCM": "m", "CONFIG_NET_DSA_TAG_BRCM_LEGACY": "m", "CONFIG_NET_DSA_TAG_BRCM_PREPEND": "m", "CONFIG_NET_DSA_TAG_HELLCREEK": "m", "CONFIG_NET_DSA_TAG_GSWIP": "m", "CONFIG_NET_DSA_TAG_DSA_COMMON": "m", "CONFIG_NET_DSA_TAG_DSA": "m", "CONFIG_NET_DSA_TAG_EDSA": "m", "CONFIG_NET_DSA_TAG_MTK": "m", "CONFIG_NET_DSA_TAG_KSZ": "m", "CONFIG_NET_DSA_TAG_OCELOT": "m", "CONFIG_NET_DSA_TAG_OCELOT_8021Q": "m", "CONFIG_NET_DSA_TAG_QCA": "m", "CONFIG_NET_DSA_TAG_RTL4_A": "m", "CONFIG_NET_DSA_TAG_RTL8_4": "m", "CONFIG_NET_DSA_TAG_RZN1_A5PSW": "m", "CONFIG_NET_DSA_TAG_LAN9303": "m", "CONFIG_NET_DSA_TAG_SJA1105": "m", "CONFIG_NET_DSA_TAG_TRAILER": "m", "CONFIG_NET_DSA_TAG_XRS700X": "m", "CONFIG_VLAN_8021Q": "m", "CONFIG_VLAN_8021Q_GVRP": "y", "CONFIG_VLAN_8021Q_MVRP": "y", "CONFIG_LLC": "m", "CONFIG_LLC2": "m", "CONFIG_ATALK": "not set", "CONFIG_X25": "m", "CONFIG_LAPB": "m", "CONFIG_PHONET": "m", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "m", "CONFIG_6LOWPAN_GHC_UDP": "m", "CONFIG_6LOWPAN_GHC_ICMPV6": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "m", "CONFIG_IEEE802154": "m", "CONFIG_IEEE802154_NL802154_EXPERIMENTAL": "not set", "CONFIG_IEEE802154_SOCKET": "m", "CONFIG_IEEE802154_6LOWPAN": "m", "CONFIG_MAC802154": "m", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "m", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "m", "CONFIG_NET_SCH_ETF": "m", "CONFIG_NET_SCH_MQPRIO_LIB": "m", "CONFIG_NET_SCH_TAPRIO": "m", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "m", "CONFIG_NET_SCH_MQPRIO": "m", "CONFIG_NET_SCH_SKBPRIO": "m", "CONFIG_NET_SCH_CHOKE": "m", "CONFIG_NET_SCH_QFQ": "m", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "m", "CONFIG_NET_SCH_FQ": "m", "CONFIG_NET_SCH_HHF": "m", "CONFIG_NET_SCH_PIE": "m", "CONFIG_NET_SCH_FQ_PIE": "m", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "m", "CONFIG_NET_SCH_ETS": "m", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "m", "CONFIG_NET_CLS_ROUTE4": "m", "CONFIG_NET_CLS_FW": "m", "CONFIG_NET_CLS_U32": "m", "CONFIG_CLS_U32_PERF": "y", "CONFIG_CLS_U32_MARK": "y", "CONFIG_NET_CLS_FLOW": "m", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "m", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "m", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "m", "CONFIG_NET_EMATCH_NBYTE": "m", "CONFIG_NET_EMATCH_U32": "m", "CONFIG_NET_EMATCH_META": "m", "CONFIG_NET_EMATCH_TEXT": "m", "CONFIG_NET_EMATCH_CANID": "m", "CONFIG_NET_EMATCH_IPSET": "m", "CONFIG_NET_EMATCH_IPT": "m", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "m", "CONFIG_GACT_PROB": "y", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "m", "CONFIG_NET_ACT_IPT": "m", "CONFIG_NET_ACT_NAT": "m", "CONFIG_NET_ACT_PEDIT": "m", "CONFIG_NET_ACT_SIMP": "m", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "m", "CONFIG_NET_ACT_MPLS": "m", "CONFIG_NET_ACT_VLAN": "m", "CONFIG_NET_ACT_BPF": "m", "CONFIG_NET_ACT_CONNMARK": "m", "CONFIG_NET_ACT_CTINFO": "m", "CONFIG_NET_ACT_SKBMOD": "m", "CONFIG_NET_ACT_IFE": "m", "CONFIG_NET_ACT_TUNNEL_KEY": "m", "CONFIG_NET_ACT_CT": "m", "CONFIG_NET_ACT_GATE": "m", "CONFIG_NET_IFE_SKBMARK": "m", "CONFIG_NET_IFE_SKBPRIO": "m", "CONFIG_NET_IFE_SKBTCINDEX": "m", "CONFIG_NET_TC_SKB_EXT": "y", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "y", "CONFIG_DNS_RESOLVER": "m", "CONFIG_BATMAN_ADV": "m", "CONFIG_BATMAN_ADV_BATMAN_V": "y", "CONFIG_BATMAN_ADV_BLA": "y", "CONFIG_BATMAN_ADV_DAT": "y", "CONFIG_BATMAN_ADV_NC": "y", "CONFIG_BATMAN_ADV_MCAST": "y", "CONFIG_BATMAN_ADV_DEBUG": "y", "CONFIG_BATMAN_ADV_TRACING": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_OPENVSWITCH_GENEVE": "m", "CONFIG_VSOCKETS": "m", "CONFIG_VSOCKETS_DIAG": "m", "CONFIG_VSOCKETS_LOOPBACK": "m", "CONFIG_VMWARE_VMCI_VSOCKETS": "m", "CONFIG_VIRTIO_VSOCKETS": "m", "CONFIG_VIRTIO_VSOCKETS_COMMON": "m", "CONFIG_HYPERV_VSOCKETS": "m", "CONFIG_NETLINK_DIAG": "m", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "m", "CONFIG_MPLS_IPTUNNEL": "m", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "m", "CONFIG_NET_SWITCHDEV": "y", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "m", "CONFIG_QRTR_SMD": "m", "CONFIG_QRTR_TUN": "m", "CONFIG_QRTR_MHI": "m", "CONFIG_NET_NCSI": "y", "CONFIG_NCSI_OEM_CMD_GET_MAC": "y", "CONFIG_NCSI_OEM_CMD_KEEP_PHY": "y", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "y", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "y", "CONFIG_HAMRADIO": "y", "CONFIG_AX25": "m", "CONFIG_AX25_DAMA_SLAVE": "y", "CONFIG_NETROM": "m", "CONFIG_ROSE": "m", "CONFIG_MKISS": "m", "CONFIG_6PACK": "m", "CONFIG_BPQETHER": "m", "CONFIG_BAYCOM_SER_FDX": "m", "CONFIG_BAYCOM_SER_HDX": "m", "CONFIG_BAYCOM_PAR": "m", "CONFIG_YAM": "m", "CONFIG_CAN": "m", "CONFIG_CAN_RAW": "m", "CONFIG_CAN_BCM": "m", "CONFIG_CAN_GW": "m", "CONFIG_CAN_J1939": "m", "CONFIG_CAN_ISOTP": "m", "CONFIG_BT": "m", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_HS": "y", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "y", "CONFIG_BT_MSFTEXT": "y", "CONFIG_BT_AOSPEXT": "y", "CONFIG_BT_DEBUGFS": "not set", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_INTEL": "m", "CONFIG_BT_BCM": "m", "CONFIG_BT_RTL": "m", "CONFIG_BT_QCA": "m", "CONFIG_BT_MTK": "m", "CONFIG_BT_HCIBTUSB": "m", "CONFIG_BT_HCIBTUSB_AUTOSUSPEND": "y", "CONFIG_BT_HCIBTUSB_POLL_SYNC": "y", "CONFIG_BT_HCIBTUSB_BCM": "y", "CONFIG_BT_HCIBTUSB_MTK": "y", "CONFIG_BT_HCIBTUSB_RTL": "y", "CONFIG_BT_HCIBTSDIO": "m", "CONFIG_BT_HCIUART": "m", "CONFIG_BT_HCIUART_SERDEV": "y", "CONFIG_BT_HCIUART_H4": "y", "CONFIG_BT_HCIUART_NOKIA": "m", "CONFIG_BT_HCIUART_BCSP": "y", "CONFIG_BT_HCIUART_ATH3K": "y", "CONFIG_BT_HCIUART_LL": "y", "CONFIG_BT_HCIUART_3WIRE": "y", "CONFIG_BT_HCIUART_INTEL": "y", "CONFIG_BT_HCIUART_BCM": "y", "CONFIG_BT_HCIUART_RTL": "y", "CONFIG_BT_HCIUART_QCA": "y", "CONFIG_BT_HCIUART_AG6XX": "y", "CONFIG_BT_HCIUART_MRVL": "y", "CONFIG_BT_HCIBCM203X": "m", "CONFIG_BT_HCIBCM4377": "m", "CONFIG_BT_HCIBPA10X": "m", "CONFIG_BT_HCIBFUSB": "m", "CONFIG_BT_HCIVHCI": "m", "CONFIG_BT_MRVL": "m", "CONFIG_BT_MRVL_SDIO": "m", "CONFIG_BT_ATH3K": "m", "CONFIG_BT_MTKSDIO": "m", "CONFIG_BT_MTKUART": "m", "CONFIG_BT_HCIRSI": "m", "CONFIG_BT_VIRTIO": "m", "CONFIG_BT_NXPUART": "m", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "m", "CONFIG_STREAM_PARSER": "y", "CONFIG_MCTP": "y", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WIRELESS_EXT": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_WEXT_SPY": "y", "CONFIG_WEXT_PRIV": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_CERTIFICATION_ONUS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_CFG80211_WEXT_EXPORT": "y", "CONFIG_LIB80211": "m", "CONFIG_LIB80211_CRYPT_WEP": "m", "CONFIG_LIB80211_CRYPT_CCMP": "m", "CONFIG_LIB80211_CRYPT_TKIP": "m", "CONFIG_LIB80211_DEBUG": "not set", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "y", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_DEBUGFS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "m", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "m", "CONFIG_NET_9P": "m", "CONFIG_NET_9P_FD": "m", "CONFIG_NET_9P_VIRTIO": "m", "CONFIG_NET_9P_XEN": "m", "CONFIG_NET_9P_RDMA": "m", "CONFIG_NET_9P_DEBUG": "not set", "CONFIG_CAIF": "m", "CONFIG_CAIF_DEBUG": "not set", "CONFIG_CAIF_NETDEV": "m", "CONFIG_CAIF_USB": "m", "CONFIG_CEPH_LIB": "m", "CONFIG_CEPH_LIB_PRETTYDEBUG": "y", "CONFIG_CEPH_LIB_USE_DNS_RESOLVER": "not set", "CONFIG_NFC": "m", "CONFIG_NFC_DIGITAL": "m", "CONFIG_NFC_NCI": "m", "CONFIG_NFC_NCI_SPI": "not set", "CONFIG_NFC_NCI_UART": "m", "CONFIG_NFC_HCI": "m", "CONFIG_NFC_SHDLC": "y", "CONFIG_NFC_TRF7970A": "not set", "CONFIG_NFC_MEI_PHY": "m", "CONFIG_NFC_SIM": "m", "CONFIG_NFC_PORT100": "m", "CONFIG_NFC_VIRTUAL_NCI": "m", "CONFIG_NFC_FDP": "m", "CONFIG_NFC_FDP_I2C": "m", "CONFIG_NFC_PN544": "m", "CONFIG_NFC_PN544_I2C": "m", "CONFIG_NFC_PN544_MEI": "m", "CONFIG_NFC_PN533": "m", "CONFIG_NFC_PN533_USB": "m", "CONFIG_NFC_PN533_I2C": "m", "CONFIG_NFC_PN532_UART": "m", "CONFIG_NFC_MICROREAD": "m", "CONFIG_NFC_MICROREAD_I2C": "m", "CONFIG_NFC_MICROREAD_MEI": "m", "CONFIG_NFC_MRVL": "m", "CONFIG_NFC_MRVL_USB": "m", "CONFIG_NFC_MRVL_UART": "m", "CONFIG_NFC_MRVL_I2C": "m", "CONFIG_NFC_ST21NFCA": "m", "CONFIG_NFC_ST21NFCA_I2C": "m", "CONFIG_NFC_ST_NCI": "m", "CONFIG_NFC_ST_NCI_I2C": "m", "CONFIG_NFC_ST_NCI_SPI": "m", "CONFIG_NFC_NXP_NCI": "m", "CONFIG_NFC_NXP_NCI_I2C": "m", "CONFIG_NFC_S3FWRN5": "m", "CONFIG_NFC_S3FWRN5_I2C": "m", "CONFIG_NFC_S3FWRN82_UART": "m", "CONFIG_NFC_ST95HF": "m", "CONFIG_PSAMPLE": "m", "CONFIG_NET_IFE": "m", "CONFIG_LWTUNNEL": "y", "CONFIG_LWTUNNEL_BPF": "y", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_SOCK_VALIDATE_XMIT": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "y", "CONFIG_FAILOVER": "m", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_EISA": "y", "CONFIG_EISA": "not set", "CONFIG_HAVE_PCI": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "y", "CONFIG_PCIEAER": "y", "CONFIG_PCIEAER_INJECT": "m", "CONFIG_PCIE_ECRC": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_DPC": "y", "CONFIG_PCIE_PTM": "y", "CONFIG_PCIE_EDR": "y", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "y", "CONFIG_PCI_PF_STUB": "m", "CONFIG_XEN_PCIDEV_FRONTEND": "m", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_DOE": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_P2PDMA": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_PCI_HYPERV": "m", "CONFIG_PCIE_BUS_TUNE_OFF": "not set", "CONFIG_PCIE_BUS_DEFAULT": "y", "CONFIG_PCIE_BUS_SAFE": "not set", "CONFIG_PCIE_BUS_PERFORMANCE": "not set", "CONFIG_PCIE_BUS_PEER2PEER": "not set", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "y", "CONFIG_HOTPLUG_PCI_ACPI_IBM": "m", "CONFIG_HOTPLUG_PCI_CPCI": "y", "CONFIG_HOTPLUG_PCI_CPCI_ZT5550": "m", "CONFIG_HOTPLUG_PCI_CPCI_GENERIC": "m", "CONFIG_HOTPLUG_PCI_SHPC": "y", "CONFIG_VMD": "m", "CONFIG_PCI_HYPERV_INTERFACE": "m", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCIE_DW_PLAT_EP": "not set", "CONFIG_PCI_ENDPOINT": "y", "CONFIG_PCI_ENDPOINT_CONFIGFS": "not set", "CONFIG_PCI_EPF_TEST": "m", "CONFIG_PCI_EPF_NTB": "m", "CONFIG_PCI_EPF_VNTB": "m", "CONFIG_PCI_SW_SWITCHTEC": "m", "CONFIG_CXL_BUS": "m", "CONFIG_CXL_PCI": "m", "CONFIG_CXL_MEM_RAW_COMMANDS": "not set", "CONFIG_CXL_ACPI": "m", "CONFIG_CXL_PMEM": "m", "CONFIG_CXL_MEM": "m", "CONFIG_CXL_PORT": "m", "CONFIG_CXL_SUSPEND": "y", "CONFIG_CXL_REGION": "y", "CONFIG_CXL_REGION_INVALIDATION_TEST": "not set", "CONFIG_PCCARD": "m", "CONFIG_PCMCIA": "not set", "CONFIG_CARDBUS": "y", "CONFIG_YENTA": "m", "CONFIG_YENTA_O2": "y", "CONFIG_YENTA_RICOH": "y", "CONFIG_YENTA_TI": "y", "CONFIG_YENTA_ENE_TUNE": "y", "CONFIG_YENTA_TOSHIBA": "y", "CONFIG_RAPIDIO": "m", "CONFIG_RAPIDIO_TSI721": "m", "CONFIG_RAPIDIO_DISC_TIMEOUT": "30", "CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS": "y", "CONFIG_RAPIDIO_DMA_ENGINE": "y", "CONFIG_RAPIDIO_DEBUG": "y", "CONFIG_RAPIDIO_ENUM_BASIC": "m", "CONFIG_RAPIDIO_CHMAN": "m", "CONFIG_RAPIDIO_MPORT_CDEV": "m", "CONFIG_RAPIDIO_CPS_XX": "m", "CONFIG_RAPIDIO_CPS_GEN2": "m", "CONFIG_RAPIDIO_RXS_GEN3": "m", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "y", "CONFIG_UEVENT_HELPER_PATH": "\\"\\"", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "not set", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_FW_LOADER_DEBUG": "y", "CONFIG_FW_LOADER_PAGED_BUF": "y", "CONFIG_FW_LOADER_SYSFS": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "y", "CONFIG_FW_LOADER_USER_HELPER_FALLBACK": "not set", "CONFIG_FW_LOADER_COMPRESS": "y", "CONFIG_FW_LOADER_COMPRESS_XZ": "y", "CONFIG_FW_LOADER_COMPRESS_ZSTD": "y", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "y", "CONFIG_WANT_DEV_COREDUMP": "y", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_HMEM_REPORTING": "y", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_SYS_HYPERVISOR": "y", "CONFIG_GENERIC_CPU_DEVICES": "not set", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_SOC_BUS": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_REGMAP_SPI": "m", "CONFIG_REGMAP_SPMI": "m", "CONFIG_REGMAP_W1": "m", "CONFIG_REGMAP_MMIO": "m", "CONFIG_REGMAP_IRQ": "y", "CONFIG_REGMAP_SOUNDWIRE": "m", "CONFIG_REGMAP_SOUNDWIRE_MBQ": "m", "CONFIG_REGMAP_SCCB": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "m", "CONFIG_MHI_BUS_DEBUG": "y", "CONFIG_MHI_BUS_PCI_GENERIC": "m", "CONFIG_MHI_BUS_EP": "m", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "m", "CONFIG_EDD_OFF": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "m", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT_FIND": "y", "CONFIG_ISCSI_IBFT": "m", "CONFIG_FW_CFG_SYSFS": "m", "CONFIG_FW_CFG_SYSFS_CMDLINE": "y", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "y", "CONFIG_FW_CS_DSP": "m", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_VARS_PSTORE": "m", "CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE": "y", "CONFIG_EFI_SOFT_RESERVE": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "m", "CONFIG_EFI_CAPSULE_LOADER": "m", "CONFIG_EFI_TEST": "not set", "CONFIG_EFI_DEV_PATH_PARSER": "y", "CONFIG_APPLE_PROPERTIES": "y", "CONFIG_RESET_ATTACK_MITIGATION": "y", "CONFIG_EFI_RCI2_TABLE": "y", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "y", "CONFIG_UNACCEPTED_MEMORY": "y", "CONFIG_EFI_EMBEDDED_FIRMWARE": "y", "CONFIG_EFI_SECRET_KEY": "y", "CONFIG_UEFI_CPER": "y", "CONFIG_UEFI_CPER_X86": "y", "CONFIG_GNSS": "m", "CONFIG_GNSS_SERIAL": "m", "CONFIG_GNSS_MTK_SERIAL": "m", "CONFIG_GNSS_SIRF_SERIAL": "m", "CONFIG_GNSS_UBX_SERIAL": "m", "CONFIG_GNSS_USB": "m", "CONFIG_MTD": "m", "CONFIG_MTD_TESTS": "m", "CONFIG_MTD_AR7_PARTS": "m", "CONFIG_MTD_CMDLINE_PARTS": "not set", "CONFIG_MTD_REDBOOT_PARTS": "m", "CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK": "-1", "CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED": "not set", "CONFIG_MTD_REDBOOT_PARTS_READONLY": "not set", "CONFIG_MTD_BLKDEVS": "m", "CONFIG_MTD_BLOCK": "m", "CONFIG_MTD_BLOCK_RO": "m", "CONFIG_FTL": "m", "CONFIG_NFTL": "m", "CONFIG_NFTL_RW": "y", "CONFIG_INFTL": "m", "CONFIG_RFD_FTL": "m", "CONFIG_SSFDC": "m", "CONFIG_SM_FTL": "not set", "CONFIG_MTD_OOPS": "m", "CONFIG_MTD_PSTORE": "m", "CONFIG_MTD_SWAP": "m", "CONFIG_MTD_PARTITIONED_MASTER": "y", "CONFIG_MTD_CFI": "m", "CONFIG_MTD_JEDECPROBE": "m", "CONFIG_MTD_GEN_PROBE": "m", "CONFIG_MTD_CFI_ADV_OPTIONS": "y", "CONFIG_MTD_CFI_NOSWAP": "y", "CONFIG_MTD_CFI_BE_BYTE_SWAP": "not set", "CONFIG_MTD_CFI_LE_BYTE_SWAP": "not set", "CONFIG_MTD_CFI_GEOMETRY": "y", "CONFIG_MTD_MAP_BANK_WIDTH_1": "y", "CONFIG_MTD_MAP_BANK_WIDTH_2": "y", "CONFIG_MTD_MAP_BANK_WIDTH_4": "y", "CONFIG_MTD_MAP_BANK_WIDTH_8": "y", "CONFIG_MTD_MAP_BANK_WIDTH_16": "y", "CONFIG_MTD_MAP_BANK_WIDTH_32": "y", "CONFIG_MTD_CFI_I1": "y", "CONFIG_MTD_CFI_I2": "y", "CONFIG_MTD_CFI_I4": "y", "CONFIG_MTD_CFI_I8": "y", "CONFIG_MTD_OTP": "y", "CONFIG_MTD_CFI_INTELEXT": "m", "CONFIG_MTD_CFI_AMDSTD": "m", "CONFIG_MTD_CFI_STAA": "m", "CONFIG_MTD_CFI_UTIL": "m", "CONFIG_MTD_RAM": "m", "CONFIG_MTD_ROM": "m", "CONFIG_MTD_ABSENT": "m", "CONFIG_MTD_COMPLEX_MAPPINGS": "y", "CONFIG_MTD_PHYSMAP": "m", "CONFIG_MTD_PHYSMAP_COMPAT": "y", "CONFIG_MTD_PHYSMAP_START": "0x8000000", "CONFIG_MTD_PHYSMAP_LEN": "0", "CONFIG_MTD_PHYSMAP_BANKWIDTH": "2", "CONFIG_MTD_PHYSMAP_GPIO_ADDR": "y", "CONFIG_MTD_SBC_GXX": "m", "CONFIG_MTD_AMD76XROM": "m", "CONFIG_MTD_ICHXROM": "m", "CONFIG_MTD_ESB2ROM": "m", "CONFIG_MTD_CK804XROM": "m", "CONFIG_MTD_SCB2_FLASH": "m", "CONFIG_MTD_NETtel": "m", "CONFIG_MTD_L440GX": "m", "CONFIG_MTD_PCI": "m", "CONFIG_MTD_INTEL_VR_NOR": "m", "CONFIG_MTD_PLATRAM": "m", "CONFIG_MTD_PMC551": "m", "CONFIG_MTD_PMC551_BUGFIX": "y", "CONFIG_MTD_PMC551_DEBUG": "not set", "CONFIG_MTD_DATAFLASH": "not set", "CONFIG_MTD_MCHP23K256": "not set", "CONFIG_MTD_MCHP48L640": "not set", "CONFIG_MTD_SST25L": "not set", "CONFIG_MTD_SLRAM": "m", "CONFIG_MTD_PHRAM": "m", "CONFIG_MTD_MTDRAM": "m", "CONFIG_MTDRAM_TOTAL_SIZE": "4096", "CONFIG_MTDRAM_ERASE_SIZE": "128", "CONFIG_MTD_BLOCK2MTD": "m", "CONFIG_MTD_DOCG3": "m", "CONFIG_BCH_CONST_M": "14", "CONFIG_BCH_CONST_T": "4", "CONFIG_MTD_NAND_CORE": "m", "CONFIG_MTD_ONENAND": "m", "CONFIG_MTD_ONENAND_VERIFY_WRITE": "y", "CONFIG_MTD_ONENAND_GENERIC": "m", "CONFIG_MTD_ONENAND_OTP": "y", "CONFIG_MTD_ONENAND_2X_PROGRAM": "y", "CONFIG_MTD_RAW_NAND": "m", "CONFIG_MTD_NAND_DENALI_PCI": "not set", "CONFIG_MTD_NAND_OMAP_BCH_BUILD": "not set", "CONFIG_MTD_NAND_CAFE": "m", "CONFIG_MTD_NAND_MXIC": "m", "CONFIG_MTD_NAND_GPIO": "m", "CONFIG_MTD_NAND_PLATFORM": "m", "CONFIG_MTD_NAND_ARASAN": "m", "CONFIG_MTD_SM_COMMON": "m", "CONFIG_MTD_NAND_NANDSIM": "m", "CONFIG_MTD_NAND_RICOH": "m", "CONFIG_MTD_NAND_DISKONCHIP": "m", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED": "y", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS": "0", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_HIGH": "y", "CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE": "y", "CONFIG_MTD_SPI_NAND": "m", "CONFIG_MTD_NAND_ECC": "y", "CONFIG_MTD_NAND_ECC_SW_HAMMING": "y", "CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC": "not set", "CONFIG_MTD_NAND_ECC_SW_BCH": "y", "CONFIG_MTD_NAND_ECC_MXIC": "not set", "CONFIG_MTD_LPDDR": "m", "CONFIG_MTD_QINFO_PROBE": "m", "CONFIG_MTD_SPI_NOR": "m", "CONFIG_MTD_SPI_NOR_USE_4K_SECTORS": "y", "CONFIG_MTD_SPI_NOR_SWP_DISABLE": "not set", "CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE": "y", "CONFIG_MTD_SPI_NOR_SWP_KEEP": "not set", "CONFIG_MTD_UBI": "m", "CONFIG_MTD_UBI_WL_THRESHOLD": "4096", "CONFIG_MTD_UBI_BEB_LIMIT": "20", "CONFIG_MTD_UBI_FASTMAP": "not set", "CONFIG_MTD_UBI_GLUEBI": "m", "CONFIG_MTD_UBI_BLOCK": "not set", "CONFIG_MTD_HYPERBUS": "m", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "m", "CONFIG_PARPORT_PC_FIFO": "y", "CONFIG_PARPORT_PC_SUPERIO": "y", "CONFIG_PARPORT_GSC": "not set", "CONFIG_PARPORT_1284": "y", "CONFIG_PARPORT_NOT_PC": "y", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "not set", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "m", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "m", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "m", "CONFIG_ZRAM": "m", "CONFIG_ZRAM_DEF_COMP_LZORLE": "y", "CONFIG_ZRAM_DEF_COMP_ZSTD": "not set", "CONFIG_ZRAM_DEF_COMP_LZ4": "not set", "CONFIG_ZRAM_DEF_COMP_LZO": "not set", "CONFIG_ZRAM_DEF_COMP_LZ4HC": "not set", "CONFIG_ZRAM_DEF_COMP_842": "not set", "CONFIG_ZRAM_DEF_COMP": "\\"lzo-rle\\"", "CONFIG_ZRAM_WRITEBACK": "y", "CONFIG_ZRAM_TRACK_ENTRY_ACTIME": "not set", "CONFIG_ZRAM_MEMORY_TRACKING": "not set", "CONFIG_ZRAM_MULTI_COMP": "y", "CONFIG_BLK_DEV_COW_COMMON": "not set", "CONFIG_BLK_DEV_LOOP": "m", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "m", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "131072", "CONFIG_CDROM_PKTCDVD": "m", "CONFIG_CDROM_PKTCDVD_BUFFERS": "8", "CONFIG_CDROM_PKTCDVD_WCACHE": "y", "CONFIG_ATA_OVER_ETH": "m", "CONFIG_XEN_BLKDEV_FRONTEND": "m", "CONFIG_XEN_BLKDEV_BACKEND": "m", "CONFIG_VIRTIO_BLK": "m", "CONFIG_BLK_DEV_RBD": "m", "CONFIG_BLK_DEV_UBLK": "m", "CONFIG_BLKDEV_UBLK_LEGACY_OPCODES": "y", "CONFIG_BLK_DEV_RNBD": "y", "CONFIG_BLK_DEV_RNBD_CLIENT": "m", "CONFIG_BLK_DEV_RNBD_SERVER": "m", "CONFIG_NVME_KEYRING": "m", "CONFIG_NVME_AUTH": "m", "CONFIG_NVME_CORE": "m", "CONFIG_BLK_DEV_NVME": "m", "CONFIG_NVME_MULTIPATH": "y", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "y", "CONFIG_NVME_FABRICS": "m", "CONFIG_NVME_RDMA": "m", "CONFIG_NVME_FC": "m", "CONFIG_NVME_TCP": "m", "CONFIG_NVME_TCP_TLS": "y", "CONFIG_NVME_HOST_AUTH": "y", "CONFIG_NVME_TARGET": "m", "CONFIG_NVME_TARGET_PASSTHRU": "y", "CONFIG_NVME_TARGET_LOOP": "m", "CONFIG_NVME_TARGET_RDMA": "m", "CONFIG_NVME_TARGET_FC": "m", "CONFIG_NVME_TARGET_FCLOOP": "m", "CONFIG_NVME_TARGET_TCP": "m", "CONFIG_NVME_TARGET_TCP_TLS": "y", "CONFIG_NVME_TARGET_AUTH": "y", "CONFIG_SENSORS_LIS3LV02D": "m", "CONFIG_AD525X_DPOT": "m", "CONFIG_AD525X_DPOT_I2C": "m", "CONFIG_AD525X_DPOT_SPI": "not set", "CONFIG_DUMMY_IRQ": "m", "CONFIG_IBM_ASM": "m", "CONFIG_PHANTOM": "m", "CONFIG_TIFM_CORE": "m", "CONFIG_TIFM_7XX1": "m", "CONFIG_ICS932S401": "m", "CONFIG_ENCLOSURE_SERVICES": "m", "CONFIG_SGI_XP": "m", "CONFIG_HP_ILO": "m", "CONFIG_SGI_GRU": "m", "CONFIG_SGI_GRU_DEBUG": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "m", "CONFIG_SENSORS_TSL2550": "m", "CONFIG_SENSORS_BH1770": "m", "CONFIG_SENSORS_APDS990X": "m", "CONFIG_HMC6352": "m", "CONFIG_DS1682": "m", "CONFIG_VMWARE_BALLOON": "m", "CONFIG_LATTICE_ECP3_CONFIG": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "m", "CONFIG_PCI_ENDPOINT_TEST": "m", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_MISC_RTSX": "m", "CONFIG_C2PORT": "m", "CONFIG_C2PORT_DURAMAR_2150": "m", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_AT25": "not set", "CONFIG_EEPROM_LEGACY": "m", "CONFIG_EEPROM_MAX6875": "m", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_93XX46": "not set", "CONFIG_EEPROM_IDT_89HPESX": "m", "CONFIG_EEPROM_EE1004": "m", "CONFIG_CB710_CORE": "m", "CONFIG_CB710_DEBUG": "not set", "CONFIG_CB710_DEBUG_ASSUMPTIONS": "y", "CONFIG_TI_ST": "m", "CONFIG_SENSORS_LIS3_I2C": "m", "CONFIG_ALTERA_STAPL": "m", "CONFIG_INTEL_MEI": "m", "CONFIG_INTEL_MEI_ME": "m", "CONFIG_INTEL_MEI_TXE": "m", "CONFIG_INTEL_MEI_GSC": "m", "CONFIG_INTEL_MEI_HDCP": "m", "CONFIG_INTEL_MEI_PXP": "m", "CONFIG_INTEL_MEI_GSC_PROXY": "m", "CONFIG_VMWARE_VMCI": "m", "CONFIG_GENWQE": "m", "CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY": "0", "CONFIG_ECHO": "m", "CONFIG_BCM_VK": "m", "CONFIG_BCM_VK_TTY": "y", "CONFIG_MISC_ALCOR_PCI": "m", "CONFIG_MISC_RTSX_PCI": "m", "CONFIG_MISC_RTSX_USB": "m", "CONFIG_UACCE": "m", "CONFIG_PVPANIC": "y", "CONFIG_PVPANIC_MMIO": "m", "CONFIG_PVPANIC_PCI": "m", "CONFIG_GP_PCI1XXXX": "m", "CONFIG_SCSI_MOD": "m", "CONFIG_RAID_ATTRS": "m", "CONFIG_SCSI_COMMON": "m", "CONFIG_SCSI": "m", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_NETLINK": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "m", "CONFIG_CHR_DEV_ST": "m", "CONFIG_BLK_DEV_SR": "m", "CONFIG_CHR_DEV_SG": "m", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "m", "CONFIG_SCSI_ENCLOSURE": "m", "CONFIG_SCSI_CONSTANTS": "y", "CONFIG_SCSI_LOGGING": "y", "CONFIG_SCSI_SCAN_ASYNC": "y", "CONFIG_SCSI_SPI_ATTRS": "m", "CONFIG_SCSI_FC_ATTRS": "m", "CONFIG_SCSI_ISCSI_ATTRS": "m", "CONFIG_SCSI_SAS_ATTRS": "m", "CONFIG_SCSI_SAS_LIBSAS": "m", "CONFIG_SCSI_SAS_ATA": "y", "CONFIG_SCSI_SAS_HOST_SMP": "y", "CONFIG_SCSI_SRP_ATTRS": "m", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "m", "CONFIG_ISCSI_BOOT_SYSFS": "m", "CONFIG_SCSI_CXGB3_ISCSI": "m", "CONFIG_SCSI_CXGB4_ISCSI": "m", "CONFIG_SCSI_BNX2_ISCSI": "m", "CONFIG_SCSI_BNX2X_FCOE": "m", "CONFIG_BE2ISCSI": "m", "CONFIG_BLK_DEV_3W_XXXX_RAID": "m", "CONFIG_SCSI_HPSA": "m", "CONFIG_SCSI_3W_9XXX": "m", "CONFIG_SCSI_3W_SAS": "m", "CONFIG_SCSI_ACARD": "m", "CONFIG_SCSI_AACRAID": "m", "CONFIG_SCSI_AIC7XXX": "m", "CONFIG_AIC7XXX_CMDS_PER_DEVICE": "32", "CONFIG_AIC7XXX_RESET_DELAY_MS": "15000", "CONFIG_AIC7XXX_DEBUG_ENABLE": "not set", "CONFIG_AIC7XXX_DEBUG_MASK": "0", "CONFIG_AIC7XXX_REG_PRETTY_PRINT": "y", "CONFIG_SCSI_AIC79XX": "m", "CONFIG_AIC79XX_CMDS_PER_DEVICE": "32", "CONFIG_AIC79XX_RESET_DELAY_MS": "5000", "CONFIG_AIC79XX_DEBUG_ENABLE": "not set", "CONFIG_AIC79XX_DEBUG_MASK": "0", "CONFIG_AIC79XX_REG_PRETTY_PRINT": "y", "CONFIG_SCSI_AIC94XX": "m", "CONFIG_AIC94XX_DEBUG": "not set", "CONFIG_SCSI_MVSAS": "m", "CONFIG_SCSI_MVSAS_DEBUG": "not set", "CONFIG_SCSI_MVSAS_TASKLET": "y", "CONFIG_SCSI_MVUMI": "m", "CONFIG_SCSI_ADVANSYS": "m", "CONFIG_SCSI_ARCMSR": "m", "CONFIG_SCSI_ESAS2R": "m", "CONFIG_MEGARAID_NEWGEN": "y", "CONFIG_MEGARAID_MM": "m", "CONFIG_MEGARAID_MAILBOX": "m", "CONFIG_MEGARAID_LEGACY": "m", "CONFIG_MEGARAID_SAS": "m", "CONFIG_SCSI_MPT3SAS": "m", "CONFIG_SCSI_MPT2SAS_MAX_SGE": "128", "CONFIG_SCSI_MPT3SAS_MAX_SGE": "128", "CONFIG_SCSI_MPT2SAS": "m", "CONFIG_SCSI_MPI3MR": "m", "CONFIG_SCSI_SMARTPQI": "m", "CONFIG_SCSI_HPTIOP": "m", "CONFIG_SCSI_BUSLOGIC": "m", "CONFIG_SCSI_FLASHPOINT": "not set", "CONFIG_SCSI_MYRB": "m", "CONFIG_SCSI_MYRS": "m", "CONFIG_VMWARE_PVSCSI": "m", "CONFIG_XEN_SCSI_FRONTEND": "m", "CONFIG_HYPERV_STORAGE": "m", "CONFIG_LIBFC": "m", "CONFIG_LIBFCOE": "m", "CONFIG_FCOE": "m", "CONFIG_FCOE_FNIC": "m", "CONFIG_SCSI_SNIC": "m", "CONFIG_SCSI_SNIC_DEBUG_FS": "y", "CONFIG_SCSI_DMX3191D": "m", "CONFIG_SCSI_FDOMAIN": "m", "CONFIG_SCSI_FDOMAIN_PCI": "m", "CONFIG_SCSI_ISCI": "m", "CONFIG_SCSI_IPS": "m", "CONFIG_SCSI_INITIO": "m", "CONFIG_SCSI_INIA100": "m", "CONFIG_SCSI_PPA": "m", "CONFIG_SCSI_IMM": "m", "CONFIG_SCSI_IZIP_EPP16": "not set", "CONFIG_SCSI_IZIP_SLOW_CTR": "not set", "CONFIG_SCSI_STEX": "m", "CONFIG_SCSI_SYM53C8XX_2": "m", "CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE": "1", "CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS": "16", "CONFIG_SCSI_SYM53C8XX_MAX_TAGS": "64", "CONFIG_SCSI_SYM53C8XX_MMIO": "y", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "m", "CONFIG_SCSI_QLA_FC": "m", "CONFIG_TCM_QLA2XXX": "m", "CONFIG_TCM_QLA2XXX_DEBUG": "not set", "CONFIG_SCSI_QLA_ISCSI": "m", "CONFIG_QEDI": "m", "CONFIG_QEDF": "m", "CONFIG_SCSI_LPFC": "m", "CONFIG_SCSI_LPFC_DEBUG_FS": "not set", "CONFIG_SCSI_EFCT": "m", "CONFIG_SCSI_DC395x": "m", "CONFIG_SCSI_AM53C974": "m", "CONFIG_SCSI_WD719X": "m", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "m", "CONFIG_SCSI_PM8001": "m", "CONFIG_SCSI_BFA_FC": "m", "CONFIG_SCSI_VIRTIO": "m", "CONFIG_SCSI_CHELSIO_FCOE": "m", "CONFIG_SCSI_DH": "y", "CONFIG_SCSI_DH_RDAC": "m", "CONFIG_SCSI_DH_HP_SW": "m", "CONFIG_SCSI_DH_EMC": "m", "CONFIG_SCSI_DH_ALUA": "m", "CONFIG_ATA": "m", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "y", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "m", "CONFIG_SATA_MOBILE_LPM_POLICY": "0", "CONFIG_SATA_AHCI_PLATFORM": "m", "CONFIG_AHCI_DWC": "m", "CONFIG_SATA_INIC162X": "m", "CONFIG_SATA_ACARD_AHCI": "m", "CONFIG_SATA_SIL24": "m", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "m", "CONFIG_SATA_QSTOR": "m", "CONFIG_SATA_SX4": "m", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "m", "CONFIG_SATA_DWC": "not set", "CONFIG_SATA_MV": "m", "CONFIG_SATA_NV": "m", "CONFIG_SATA_PROMISE": "m", "CONFIG_SATA_SIL": "m", "CONFIG_SATA_SIS": "m", "CONFIG_SATA_SVW": "m", "CONFIG_SATA_ULI": "m", "CONFIG_SATA_VIA": "m", "CONFIG_SATA_VITESSE": "m", "CONFIG_PATA_ALI": "m", "CONFIG_PATA_AMD": "m", "CONFIG_PATA_ARTOP": "m", "CONFIG_PATA_ATIIXP": "m", "CONFIG_PATA_ATP867X": "m", "CONFIG_PATA_CMD64X": "m", "CONFIG_PATA_CYPRESS": "m", "CONFIG_PATA_EFAR": "m", "CONFIG_PATA_HPT366": "m", "CONFIG_PATA_HPT37X": "m", "CONFIG_PATA_HPT3X2N": "m", "CONFIG_PATA_HPT3X3": "m", "CONFIG_PATA_HPT3X3_DMA": "not set", "CONFIG_PATA_IT8213": "m", "CONFIG_PATA_IT821X": "m", "CONFIG_PATA_JMICRON": "m", "CONFIG_PATA_MARVELL": "m", "CONFIG_PATA_NETCELL": "m", "CONFIG_PATA_NINJA32": "m", "CONFIG_PATA_NS87415": "m", "CONFIG_PATA_OLDPIIX": "m", "CONFIG_PATA_OPTIDMA": "m", "CONFIG_PATA_PDC2027X": "m", "CONFIG_PATA_PDC_OLD": "m", "CONFIG_PATA_RADISYS": "m", "CONFIG_PATA_RDC": "m", "CONFIG_PATA_SCH": "m", "CONFIG_PATA_SERVERWORKS": "m", "CONFIG_PATA_SIL680": "m", "CONFIG_PATA_SIS": "m", "CONFIG_PATA_TOSHIBA": "m", "CONFIG_PATA_TRIFLEX": "m", "CONFIG_PATA_VIA": "m", "CONFIG_PATA_WINBOND": "m", "CONFIG_PATA_CMD640_PCI": "m", "CONFIG_PATA_MPIIX": "m", "CONFIG_PATA_NS87410": "m", "CONFIG_PATA_OPTI": "m", "CONFIG_PATA_RZ1000": "m", "CONFIG_PATA_PARPORT": "m", "CONFIG_PATA_PARPORT_ATEN": "m", "CONFIG_PATA_PARPORT_BPCK": "m", "CONFIG_PATA_PARPORT_BPCK6": "m", "CONFIG_PATA_PARPORT_COMM": "m", "CONFIG_PATA_PARPORT_DSTR": "m", "CONFIG_PATA_PARPORT_FIT2": "m", "CONFIG_PATA_PARPORT_FIT3": "m", "CONFIG_PATA_PARPORT_EPAT": "m", "CONFIG_PATA_PARPORT_EPATC8": "y", "CONFIG_PATA_PARPORT_EPIA": "m", "CONFIG_PATA_PARPORT_FRIQ": "m", "CONFIG_PATA_PARPORT_FRPW": "m", "CONFIG_PATA_PARPORT_KBIC": "m", "CONFIG_PATA_PARPORT_KTTI": "m", "CONFIG_PATA_PARPORT_ON20": "m", "CONFIG_PATA_PARPORT_ON26": "m", "CONFIG_PATA_ACPI": "m", "CONFIG_ATA_GENERIC": "m", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "m", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "m", "CONFIG_MD_RAID0": "m", "CONFIG_MD_RAID1": "m", "CONFIG_MD_RAID10": "m", "CONFIG_MD_RAID456": "m", "CONFIG_MD_MULTIPATH": "not set", "CONFIG_MD_FAULTY": "m", "CONFIG_MD_CLUSTER": "m", "CONFIG_BCACHE": "m", "CONFIG_BCACHE_DEBUG": "not set", "CONFIG_BCACHE_ASYNC_REGISTRATION": "y", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "m", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "m", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "m", "CONFIG_DM_CRYPT": "m", "CONFIG_DM_SNAPSHOT": "m", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "m", "CONFIG_DM_CACHE_SMQ": "m", "CONFIG_DM_WRITECACHE": "m", "CONFIG_DM_EBS": "m", "CONFIG_DM_ERA": "m", "CONFIG_DM_CLONE": "m", "CONFIG_DM_MIRROR": "m", "CONFIG_DM_LOG_USERSPACE": "m", "CONFIG_DM_RAID": "m", "CONFIG_DM_ZERO": "m", "CONFIG_DM_MULTIPATH": "m", "CONFIG_DM_MULTIPATH_QL": "m", "CONFIG_DM_MULTIPATH_ST": "m", "CONFIG_DM_MULTIPATH_HST": "m", "CONFIG_DM_MULTIPATH_IOA": "m", "CONFIG_DM_DELAY": "m", "CONFIG_DM_DUST": "m", "CONFIG_DM_UEVENT": "y", "CONFIG_DM_FLAKEY": "m", "CONFIG_DM_VERITY": "m", "CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG": "y", "CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING": "y", "CONFIG_DM_VERITY_FEC": "y", "CONFIG_DM_SWITCH": "m", "CONFIG_DM_LOG_WRITES": "m", "CONFIG_DM_INTEGRITY": "m", "CONFIG_DM_ZONED": "m", "CONFIG_DM_AUDIT": "y", "CONFIG_TARGET_CORE": "m", "CONFIG_TCM_IBLOCK": "m", "CONFIG_TCM_FILEIO": "m", "CONFIG_TCM_PSCSI": "m", "CONFIG_TCM_USER2": "m", "CONFIG_LOOPBACK_TARGET": "m", "CONFIG_TCM_FC": "m", "CONFIG_ISCSI_TARGET": "m", "CONFIG_ISCSI_TARGET_CXGB4": "m", "CONFIG_SBP_TARGET": "m", "CONFIG_REMOTE_TARGET": "m", "CONFIG_FUSION": "y", "CONFIG_FUSION_SPI": "m", "CONFIG_FUSION_FC": "m", "CONFIG_FUSION_SAS": "m", "CONFIG_FUSION_MAX_SGE": "128", "CONFIG_FUSION_CTL": "m", "CONFIG_FUSION_LAN": "m", "CONFIG_FUSION_LOGGING": "not set", "CONFIG_FIREWIRE": "m", "CONFIG_FIREWIRE_OHCI": "m", "CONFIG_FIREWIRE_SBP2": "m", "CONFIG_FIREWIRE_NET": "m", "CONFIG_FIREWIRE_NOSY": "m", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "m", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "m", "CONFIG_WIREGUARD_DEBUG": "not set", "CONFIG_EQUALIZER": "m", "CONFIG_NET_FC": "y", "CONFIG_IFB": "m", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "m", "CONFIG_MACVTAP": "m", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "m", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "m", "CONFIG_BAREUDP": "m", "CONFIG_GTP": "m", "CONFIG_AMT": "m", "CONFIG_MACSEC": "m", "CONFIG_NETCONSOLE": "m", "CONFIG_NETCONSOLE_DYNAMIC": "y", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_NTB_NETDEV": "m", "CONFIG_RIONET": "m", "CONFIG_RIONET_TX_SIZE": "128", "CONFIG_RIONET_RX_SIZE": "128", "CONFIG_TUN": "m", "CONFIG_TAP": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "m", "CONFIG_VIRTIO_NET": "m", "CONFIG_NLMON": "m", "CONFIG_NET_VRF": "m", "CONFIG_VSOCKMON": "m", "CONFIG_MHI_NET": "m", "CONFIG_SUNGEM_PHY": "m", "CONFIG_ARCNET": "not set", "CONFIG_ATM_DRIVERS": "y", "CONFIG_ATM_DUMMY": "m", "CONFIG_ATM_TCP": "m", "CONFIG_ATM_LANAI": "m", "CONFIG_ATM_ENI": "m", "CONFIG_ATM_ENI_DEBUG": "not set", "CONFIG_ATM_ENI_TUNE_BURST": "y", "CONFIG_ATM_ENI_BURST_TX_16W": "y", "CONFIG_ATM_ENI_BURST_TX_8W": "y", "CONFIG_ATM_ENI_BURST_TX_4W": "y", "CONFIG_ATM_ENI_BURST_TX_2W": "y", "CONFIG_ATM_ENI_BURST_RX_16W": "y", "CONFIG_ATM_ENI_BURST_RX_8W": "y", "CONFIG_ATM_ENI_BURST_RX_4W": "y", "CONFIG_ATM_ENI_BURST_RX_2W": "y", "CONFIG_ATM_NICSTAR": "m", "CONFIG_ATM_NICSTAR_USE_SUNI": "y", "CONFIG_ATM_NICSTAR_USE_IDT77105": "y", "CONFIG_ATM_IDT77252": "m", "CONFIG_ATM_IDT77252_DEBUG": "not set", "CONFIG_ATM_IDT77252_RCV_ALL": "not set", "CONFIG_ATM_IDT77252_USE_SUNI": "y", "CONFIG_ATM_IA": "m", "CONFIG_ATM_IA_DEBUG": "not set", "CONFIG_ATM_FORE200E": "m", "CONFIG_ATM_FORE200E_USE_TASKLET": "y", "CONFIG_ATM_FORE200E_TX_RETRY": "16", "CONFIG_ATM_FORE200E_DEBUG": "0", "CONFIG_ATM_HE": "m", "CONFIG_ATM_HE_USE_SUNI": "y", "CONFIG_ATM_SOLOS": "m", "CONFIG_CAIF_DRIVERS": "y", "CONFIG_CAIF_TTY": "m", "CONFIG_CAIF_VIRTIO": "m", "CONFIG_B53": "m", "CONFIG_B53_SPI_DRIVER": "not set", "CONFIG_B53_MDIO_DRIVER": "not set", "CONFIG_B53_MMAP_DRIVER": "not set", "CONFIG_B53_SRAB_DRIVER": "not set", "CONFIG_B53_SERDES": "not set", "CONFIG_NET_DSA_BCM_SF2": "m", "CONFIG_NET_DSA_LOOP": "m", "CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK": "m", "CONFIG_NET_DSA_LANTIQ_GSWIP": "m", "CONFIG_NET_DSA_MT7530": "m", "CONFIG_NET_DSA_MT7530_MDIO": "m", "CONFIG_NET_DSA_MT7530_MMIO": "m", "CONFIG_NET_DSA_MV88E6060": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_SPI": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_PTP": "y", "CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI": "m", "CONFIG_NET_DSA_MV88E6XXX": "m", "CONFIG_NET_DSA_MV88E6XXX_PTP": "y", "CONFIG_NET_DSA_MSCC_FELIX_DSA_LIB": "m", "CONFIG_NET_DSA_MSCC_OCELOT_EXT": "m", "CONFIG_NET_DSA_MSCC_SEVILLE": "m", "CONFIG_NET_DSA_AR9331": "m", "CONFIG_NET_DSA_QCA8K": "m", "CONFIG_NET_DSA_QCA8K_LEDS_SUPPORT": "y", "CONFIG_NET_DSA_SJA1105": "m", "CONFIG_NET_DSA_SJA1105_PTP": "y", "CONFIG_NET_DSA_SJA1105_TAS": "y", "CONFIG_NET_DSA_SJA1105_VL": "y", "CONFIG_NET_DSA_XRS700X": "m", "CONFIG_NET_DSA_XRS700X_I2C": "m", "CONFIG_NET_DSA_XRS700X_MDIO": "m", "CONFIG_NET_DSA_REALTEK": "m", "CONFIG_NET_DSA_REALTEK_RTL8365MB": "not set", "CONFIG_NET_DSA_REALTEK_RTL8366RB": "not set", "CONFIG_NET_DSA_SMSC_LAN9303": "m", "CONFIG_NET_DSA_SMSC_LAN9303_I2C": "m", "CONFIG_NET_DSA_SMSC_LAN9303_MDIO": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX_SPI": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM": "m", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "m", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "m", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "m", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "m", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "m", "CONFIG_ACENIC_OMIT_TIGON_I": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "m", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "m", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "m", "CONFIG_AMD_XGBE_DCB": "y", "CONFIG_AMD_XGBE_HAVE_ECC": "y", "CONFIG_PDS_CORE": "m", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "m", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_SPI_AX88796C": "m", "CONFIG_SPI_AX88796C_COMPRESSION": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "m", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "m", "CONFIG_B44_PCI_AUTOSELECT": "y", "CONFIG_B44_PCICORE_AUTOSELECT": "y", "CONFIG_B44_PCI": "y", "CONFIG_BCMGENET": "m", "CONFIG_BNX2": "m", "CONFIG_CNIC": "m", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "m", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_DCB": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "m", "CONFIG_LIQUIDIO": "m", "CONFIG_LIQUIDIO_VF": "m", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "m", "CONFIG_CHELSIO_T1_1G": "y", "CONFIG_CHELSIO_T3": "m", "CONFIG_CHELSIO_T4": "m", "CONFIG_CHELSIO_T4_DCB": "y", "CONFIG_CHELSIO_T4_FCOE": "y", "CONFIG_CHELSIO_T4VF": "m", "CONFIG_CHELSIO_LIB": "m", "CONFIG_CHELSIO_INLINE_CRYPTO": "y", "CONFIG_CRYPTO_DEV_CHELSIO_TLS": "m", "CONFIG_CHELSIO_IPSEC_INLINE": "m", "CONFIG_CHELSIO_TLS_DEVICE": "m", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "m", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DM9051": "m", "CONFIG_DNET": "m", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "y", "CONFIG_DE2104X": "m", "CONFIG_DE2104X_DSL": "0", "CONFIG_TULIP": "m", "CONFIG_TULIP_MWI": "not set", "CONFIG_TULIP_MMIO": "not set", "CONFIG_TULIP_NAPI": "y", "CONFIG_TULIP_NAPI_HW_MITIGATION": "y", "CONFIG_WINBOND_840": "m", "CONFIG_DM9102": "m", "CONFIG_ULI526X": "m", "CONFIG_PCMCIA_XIRCOM": "m", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "m", "CONFIG_SUNDANCE_MMIO": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "m", "CONFIG_BE2NET_HWMON": "y", "CONFIG_BE2NET_BE2": "y", "CONFIG_BE2NET_BE3": "y", "CONFIG_BE2NET_LANCER": "y", "CONFIG_BE2NET_SKYHAWK": "y", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "m", "CONFIG_TSNEP_SELFTESTS": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_CORE": "m", "CONFIG_FUN_ETH": "m", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "m", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "m", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "m", "CONFIG_E1000": "m", "CONFIG_E1000E": "m", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "m", "CONFIG_IGB_HWMON": "y", "CONFIG_IGB_DCA": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "m", "CONFIG_IXGBE_HWMON": "y", "CONFIG_IXGBE_DCA": "y", "CONFIG_IXGBE_DCB": "y", "CONFIG_IXGBE_IPSEC": "y", "CONFIG_IXGBEVF": "m", "CONFIG_IXGBEVF_IPSEC": "y", "CONFIG_I40E": "m", "CONFIG_I40E_DCB": "y", "CONFIG_IAVF": "m", "CONFIG_I40EVF": "m", "CONFIG_ICE": "m", "CONFIG_ICE_HWMON": "y", "CONFIG_ICE_SWITCHDEV": "y", "CONFIG_ICE_HWTS": "y", "CONFIG_FM10K": "m", "CONFIG_IGC": "m", "CONFIG_IDPF": "m", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_ADI": "y", "CONFIG_ADIN1110": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "y", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "m", "CONFIG_PRESTERA": "m", "CONFIG_PRESTERA_PCI": "m", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "m", "CONFIG_MLX4_EN_DCB": "y", "CONFIG_MLX4_CORE": "m", "CONFIG_MLX4_DEBUG": "y", "CONFIG_MLX4_CORE_GEN2": "y", "CONFIG_MLX5_CORE": "m", "CONFIG_MLX5_FPGA": "y", "CONFIG_MLX5_CORE_EN": "y", "CONFIG_MLX5_EN_ARFS": "y", "CONFIG_MLX5_EN_RXNFC": "y", "CONFIG_MLX5_MPFS": "y", "CONFIG_MLX5_ESWITCH": "y", "CONFIG_MLX5_BRIDGE": "y", "CONFIG_MLX5_CLS_ACT": "y", "CONFIG_MLX5_TC_CT": "y", "CONFIG_MLX5_TC_SAMPLE": "y", "CONFIG_MLX5_CORE_EN_DCB": "y", "CONFIG_MLX5_CORE_IPOIB": "y", "CONFIG_MLX5_MACSEC": "y", "CONFIG_MLX5_EN_IPSEC": "y", "CONFIG_MLX5_EN_TLS": "y", "CONFIG_MLX5_SW_STEERING": "y", "CONFIG_MLX5_SF": "y", "CONFIG_MLX5_SF_MANAGER": "y", "CONFIG_MLX5_DPLL": "m", "CONFIG_MLXSW_CORE": "m", "CONFIG_MLXSW_CORE_HWMON": "y", "CONFIG_MLXSW_CORE_THERMAL": "y", "CONFIG_MLXSW_PCI": "m", "CONFIG_MLXSW_I2C": "m", "CONFIG_MLXSW_SPECTRUM": "m", "CONFIG_MLXSW_SPECTRUM_DCB": "y", "CONFIG_MLXSW_MINIMAL": "m", "CONFIG_MLXFW": "m", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8842": "m", "CONFIG_KS8851": "not set", "CONFIG_KS8851_MLL": "m", "CONFIG_KSZ884X_PCI": "m", "CONFIG_NET_VENDOR_MICROCHIP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_MSCC_OCELOT_SWITCH_LIB": "m", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_MICROSOFT_MANA": "m", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "m", "CONFIG_MYRI10GE_DCA": "y", "CONFIG_FEALNX": "m", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "m", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "m", "CONFIG_NS83820": "m", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "m", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "m", "CONFIG_NFP_APP_FLOWER": "y", "CONFIG_NFP_APP_ABM_NIC": "y", "CONFIG_NFP_NET_IPSEC": "y", "CONFIG_NFP_DEBUG": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "m", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "m", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "m", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "m", "CONFIG_YELLOWFIN": "m", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "m", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "m", "CONFIG_QLCNIC": "m", "CONFIG_QLCNIC_SRIOV": "y", "CONFIG_QLCNIC_DCB": "y", "CONFIG_QLCNIC_HWMON": "y", "CONFIG_NETXEN_NIC": "m", "CONFIG_QED": "m", "CONFIG_QED_LL2": "y", "CONFIG_QED_SRIOV": "y", "CONFIG_QEDE": "m", "CONFIG_QED_RDMA": "y", "CONFIG_QED_ISCSI": "y", "CONFIG_QED_FCOE": "y", "CONFIG_QED_OOO": "y", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "m", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "m", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "m", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "not set", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "y", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_ROCKER": "m", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "m", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "m", "CONFIG_SIS190": "m", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "m", "CONFIG_SFC_MTD": "y", "CONFIG_SFC_MCDI_MON": "y", "CONFIG_SFC_SRIOV": "y", "CONFIG_SFC_MCDI_LOGGING": "y", "CONFIG_SFC_FALCON": "m", "CONFIG_SFC_FALCON_MTD": "y", "CONFIG_SFC_SIENA": "m", "CONFIG_SFC_SIENA_MTD": "y", "CONFIG_SFC_SIENA_MCDI_MON": "y", "CONFIG_SFC_SIENA_SRIOV": "y", "CONFIG_SFC_SIENA_MCDI_LOGGING": "y", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "m", "CONFIG_SMSC911X": "m", "CONFIG_SMSC911X_ARCH_HOOKS": "not set", "CONFIG_SMSC9420": "m", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "m", "CONFIG_STMMAC_SELFTESTS": "not set", "CONFIG_STMMAC_PLATFORM": "not set", "CONFIG_DWMAC_INTEL": "m", "CONFIG_STMMAC_PCI": "m", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "m", "CONFIG_SUNGEM": "m", "CONFIG_CASSINI": "m", "CONFIG_NIU": "m", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "m", "CONFIG_DWC_XLGMAC_PCI": "m", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "m", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "m", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_MSE102X": "m", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "m", "CONFIG_VIA_RHINE_MMIO": "y", "CONFIG_VIA_VELOCITY": "m", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_LIBWX": "m", "CONFIG_NGBE": "m", "CONFIG_TXGBE": "m", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "m", "CONFIG_WIZNET_W5300": "m", "CONFIG_WIZNET_BUS_DIRECT": "not set", "CONFIG_WIZNET_BUS_INDIRECT": "not set", "CONFIG_WIZNET_BUS_ANY": "y", "CONFIG_WIZNET_W5100_SPI": "m", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_AXI_EMAC": "m", "CONFIG_XILINX_LL_TEMAC": "m", "CONFIG_FDDI": "m", "CONFIG_DEFXX": "m", "CONFIG_SKFP": "m", "CONFIG_HIPPI": "y", "CONFIG_ROADRUNNER": "m", "CONFIG_ROADRUNNER_LARGE_RINGS": "not set", "CONFIG_NET_SB1000": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "y", "CONFIG_PHYLIB_LEDS": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "m", "CONFIG_AMD_PHY": "m", "CONFIG_ADIN_PHY": "m", "CONFIG_ADIN1100_PHY": "m", "CONFIG_AQUANTIA_PHY": "m", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "m", "CONFIG_BCM54140_PHY": "m", "CONFIG_BCM7XXX_PHY": "m", "CONFIG_BCM84881_PHY": "m", "CONFIG_BCM87XX_PHY": "m", "CONFIG_BCM_NET_PHYLIB": "m", "CONFIG_CICADA_PHY": "m", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "m", "CONFIG_ICPLUS_PHY": "m", "CONFIG_LXT_PHY": "m", "CONFIG_INTEL_XWAY_PHY": "m", "CONFIG_LSI_ET1011C_PHY": "m", "CONFIG_MARVELL_PHY": "m", "CONFIG_MARVELL_10G_PHY": "m", "CONFIG_MARVELL_88X2222_PHY": "m", "CONFIG_MAXLINEAR_GPHY": "m", "CONFIG_MEDIATEK_GE_PHY": "m", "CONFIG_MICREL_PHY": "m", "CONFIG_MICROCHIP_T1S_PHY": "m", "CONFIG_MICROCHIP_PHY": "m", "CONFIG_MICROCHIP_T1_PHY": "m", "CONFIG_MICROSEMI_PHY": "m", "CONFIG_MOTORCOMM_PHY": "m", "CONFIG_NATIONAL_PHY": "m", "CONFIG_NXP_CBTX_PHY": "m", "CONFIG_NXP_C45_TJA11XX_PHY": "m", "CONFIG_NXP_TJA11XX_PHY": "m", "CONFIG_NCN26000_PHY": "m", "CONFIG_AT803X_PHY": "m", "CONFIG_QSEMI_PHY": "m", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "m", "CONFIG_ROCKCHIP_PHY": "m", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "m", "CONFIG_TERANETICS_PHY": "m", "CONFIG_DP83822_PHY": "m", "CONFIG_DP83TC811_PHY": "m", "CONFIG_DP83848_PHY": "m", "CONFIG_DP83867_PHY": "m", "CONFIG_DP83869_PHY": "m", "CONFIG_DP83TD510_PHY": "m", "CONFIG_VITESSE_PHY": "m", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MICREL_KS8995MA": "not set", "CONFIG_PSE_CONTROLLER": "y", "CONFIG_PSE_REGULATOR": "m", "CONFIG_CAN_DEV": "m", "CONFIG_CAN_VCAN": "m", "CONFIG_CAN_VXCAN": "m", "CONFIG_CAN_NETLINK": "y", "CONFIG_CAN_CALC_BITTIMING": "y", "CONFIG_CAN_RX_OFFLOAD": "y", "CONFIG_CAN_CAN327": "m", "CONFIG_CAN_KVASER_PCIEFD": "m", "CONFIG_CAN_SLCAN": "m", "CONFIG_CAN_C_CAN": "m", "CONFIG_CAN_C_CAN_PLATFORM": "not set", "CONFIG_CAN_C_CAN_PCI": "m", "CONFIG_CAN_CC770": "not set", "CONFIG_CAN_CTUCANFD": "m", "CONFIG_CAN_CTUCANFD_PCI": "m", "CONFIG_CAN_IFI_CANFD": "m", "CONFIG_CAN_M_CAN": "m", "CONFIG_CAN_M_CAN_PCI": "m", "CONFIG_CAN_M_CAN_PLATFORM": "m", "CONFIG_CAN_M_CAN_TCAN4X5X": "m", "CONFIG_CAN_PEAK_PCIEFD": "m", "CONFIG_CAN_SJA1000": "m", "CONFIG_CAN_EMS_PCI": "m", "CONFIG_CAN_F81601": "m", "CONFIG_CAN_KVASER_PCI": "m", "CONFIG_CAN_PEAK_PCI": "m", "CONFIG_CAN_PEAK_PCIEC": "y", "CONFIG_CAN_PLX_PCI": "m", "CONFIG_CAN_SJA1000_ISA": "not set", "CONFIG_CAN_SJA1000_PLATFORM": "not set", "CONFIG_CAN_SOFTING": "m", "CONFIG_CAN_HI311X": "m", "CONFIG_CAN_MCP251X": "not set", "CONFIG_CAN_MCP251XFD": "m", "CONFIG_CAN_MCP251XFD_SANITY": "not set", "CONFIG_CAN_8DEV_USB": "m", "CONFIG_CAN_EMS_USB": "m", "CONFIG_CAN_ESD_USB": "m", "CONFIG_CAN_ETAS_ES58X": "m", "CONFIG_CAN_GS_USB": "m", "CONFIG_CAN_KVASER_USB": "m", "CONFIG_CAN_MCBA_USB": "m", "CONFIG_CAN_PEAK_USB": "m", "CONFIG_CAN_UCAN": "m", "CONFIG_CAN_DEBUG_DEVICES": "not set", "CONFIG_MCTP_SERIAL": "m", "CONFIG_MDIO_DEVICE": "m", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "m", "CONFIG_MDIO_BCM_UNIMAC": "m", "CONFIG_MDIO_GPIO": "m", "CONFIG_MDIO_I2C": "m", "CONFIG_MDIO_MVUSB": "m", "CONFIG_MDIO_MSCC_MIIM": "m", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "m", "CONFIG_PCS_LYNX": "m", "CONFIG_PCS_MTK_LYNXI": "m", "CONFIG_PLIP": "m", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "m", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOATM": "m", "CONFIG_PPPOE": "m", "CONFIG_PPTP": "m", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "m", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "m", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "m", "CONFIG_USB_NET_CDC_MBIM": "m", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "m", "CONFIG_USB_NET_SR9800": "m", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "m", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "m", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "y", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "m", "CONFIG_USB_NET_KALMIA": "m", "CONFIG_USB_NET_QMI_WWAN": "m", "CONFIG_USB_HSO": "m", "CONFIG_USB_NET_INT51X1": "m", "CONFIG_USB_CDC_PHONET": "m", "CONFIG_USB_IPHETH": "m", "CONFIG_USB_SIERRA_NET": "m", "CONFIG_USB_VL600": "m", "CONFIG_USB_NET_CH9200": "m", "CONFIG_USB_NET_AQC111": "m", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "m", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DEBUGFS": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "y", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "y", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "m", "CONFIG_ATH9K_HTC": "m", "CONFIG_ATH9K_HTC_DEBUGFS": "not set", "CONFIG_ATH9K_HWRNG": "y", "CONFIG_CARL9170": "m", "CONFIG_CARL9170_LEDS": "y", "CONFIG_CARL9170_DEBUGFS": "not set", "CONFIG_CARL9170_WPC": "y", "CONFIG_CARL9170_HWRNG": "y", "CONFIG_ATH6KL": "m", "CONFIG_ATH6KL_SDIO": "m", "CONFIG_ATH6KL_USB": "m", "CONFIG_ATH6KL_DEBUG": "not set", "CONFIG_ATH6KL_TRACING": "not set", "CONFIG_AR5523": "m", "CONFIG_WIL6210": "m", "CONFIG_WIL6210_ISR_COR": "y", "CONFIG_WIL6210_TRACING": "y", "CONFIG_WIL6210_DEBUGFS": "not set", "CONFIG_ATH10K": "m", "CONFIG_ATH10K_CE": "y", "CONFIG_ATH10K_PCI": "m", "CONFIG_ATH10K_SDIO": "m", "CONFIG_ATH10K_USB": "m", "CONFIG_ATH10K_DEBUG": "not set", "CONFIG_ATH10K_DEBUGFS": "not set", "CONFIG_ATH10K_TRACING": "not set", "CONFIG_WCN36XX": "m", "CONFIG_WCN36XX_DEBUGFS": "not set", "CONFIG_ATH11K": "m", "CONFIG_ATH11K_PCI": "m", "CONFIG_ATH11K_DEBUG": "not set", "CONFIG_ATH11K_DEBUGFS": "not set", "CONFIG_ATH11K_TRACING": "not set", "CONFIG_ATH12K": "m", "CONFIG_ATH12K_DEBUG": "not set", "CONFIG_ATH12K_TRACING": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_ATMEL": "m", "CONFIG_PCI_ATMEL": "m", "CONFIG_AT76C50X_USB": "m", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "m", "CONFIG_B43_BCMA": "y", "CONFIG_B43_SSB": "y", "CONFIG_B43_BUSES_BCMA_AND_SSB": "y", "CONFIG_B43_BUSES_BCMA": "not set", "CONFIG_B43_BUSES_SSB": "not set", "CONFIG_B43_PCI_AUTOSELECT": "y", "CONFIG_B43_PCICORE_AUTOSELECT": "y", "CONFIG_B43_SDIO": "y", "CONFIG_B43_BCMA_PIO": "y", "CONFIG_B43_PIO": "y", "CONFIG_B43_PHY_G": "y", "CONFIG_B43_PHY_N": "y", "CONFIG_B43_PHY_LP": "y", "CONFIG_B43_PHY_HT": "y", "CONFIG_B43_LEDS": "y", "CONFIG_B43_HWRNG": "y", "CONFIG_B43_DEBUG": "not set", "CONFIG_B43LEGACY": "m", "CONFIG_B43LEGACY_PCI_AUTOSELECT": "y", "CONFIG_B43LEGACY_PCICORE_AUTOSELECT": "y", "CONFIG_B43LEGACY_LEDS": "y", "CONFIG_B43LEGACY_HWRNG": "y", "CONFIG_B43LEGACY_DEBUG": "not set", "CONFIG_B43LEGACY_DMA": "y", "CONFIG_B43LEGACY_PIO": "y", "CONFIG_B43LEGACY_DMA_AND_PIO_MODE": "y", "CONFIG_B43LEGACY_DMA_MODE": "not set", "CONFIG_B43LEGACY_PIO_MODE": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMSMAC_LEDS": "y", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_CISCO": "y", "CONFIG_AIRO": "m", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "m", "CONFIG_IPW2100_MONITOR": "y", "CONFIG_IPW2100_DEBUG": "y", "CONFIG_IPW2200": "m", "CONFIG_IPW2200_MONITOR": "y", "CONFIG_IPW2200_RADIOTAP": "y", "CONFIG_IPW2200_PROMISCUOUS": "y", "CONFIG_IPW2200_QOS": "y", "CONFIG_IPW2200_DEBUG": "y", "CONFIG_LIBIPW": "m", "CONFIG_LIBIPW_DEBUG": "y", "CONFIG_IWLEGACY": "m", "CONFIG_IWL4965": "m", "CONFIG_IWL3945": "m", "CONFIG_IWLEGACY_DEBUG": "not set", "CONFIG_IWLEGACY_DEBUGFS": "not set", "CONFIG_IWLWIFI": "m", "CONFIG_IWLWIFI_LEDS": "y", "CONFIG_IWLDVM": "m", "CONFIG_IWLMVM": "m", "CONFIG_IWLWIFI_OPMODE_MODULAR": "y", "CONFIG_IWLWIFI_DEBUG": "y", "CONFIG_IWLWIFI_DEBUGFS": "y", "CONFIG_IWLWIFI_DEVICE_TRACING": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_HOSTAP": "m", "CONFIG_HOSTAP_FIRMWARE": "y", "CONFIG_HOSTAP_FIRMWARE_NVRAM": "y", "CONFIG_HOSTAP_PLX": "m", "CONFIG_HOSTAP_PCI": "m", "CONFIG_HERMES": "m", "CONFIG_HERMES_PRISM": "y", "CONFIG_HERMES_CACHE_FW_ON_INIT": "y", "CONFIG_PLX_HERMES": "m", "CONFIG_TMD_HERMES": "m", "CONFIG_NORTEL_HERMES": "m", "CONFIG_PCI_HERMES": "m", "CONFIG_ORINOCO_USB": "m", "CONFIG_P54_COMMON": "m", "CONFIG_P54_USB": "m", "CONFIG_P54_PCI": "m", "CONFIG_P54_SPI": "not set", "CONFIG_P54_LEDS": "y", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "m", "CONFIG_LIBERTAS_USB": "m", "CONFIG_LIBERTAS_SDIO": "m", "CONFIG_LIBERTAS_SPI": "not set", "CONFIG_LIBERTAS_DEBUG": "not set", "CONFIG_LIBERTAS_MESH": "y", "CONFIG_LIBERTAS_THINFIRM": "m", "CONFIG_LIBERTAS_THINFIRM_DEBUG": "not set", "CONFIG_LIBERTAS_THINFIRM_USB": "m", "CONFIG_MWIFIEX": "m", "CONFIG_MWIFIEX_SDIO": "m", "CONFIG_MWIFIEX_PCIE": "m", "CONFIG_MWIFIEX_USB": "m", "CONFIG_MWL8K": "m", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76_CORE": "m", "CONFIG_MT76_LEDS": "y", "CONFIG_MT76_USB": "m", "CONFIG_MT76_SDIO": "m", "CONFIG_MT76x02_LIB": "m", "CONFIG_MT76x02_USB": "m", "CONFIG_MT76_CONNAC_LIB": "m", "CONFIG_MT792x_LIB": "m", "CONFIG_MT792x_USB": "m", "CONFIG_MT76x0_COMMON": "m", "CONFIG_MT76x0U": "m", "CONFIG_MT76x0E": "m", "CONFIG_MT76x2_COMMON": "m", "CONFIG_MT76x2E": "m", "CONFIG_MT76x2U": "m", "CONFIG_MT7603E": "m", "CONFIG_MT7615_COMMON": "m", "CONFIG_MT7615E": "m", "CONFIG_MT7663_USB_SDIO_COMMON": "m", "CONFIG_MT7663U": "m", "CONFIG_MT7663S": "m", "CONFIG_MT7915E": "m", "CONFIG_MT7921_COMMON": "m", "CONFIG_MT7921E": "m", "CONFIG_MT7921S": "m", "CONFIG_MT7921U": "m", "CONFIG_MT7996E": "m", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WILC1000_SPI": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "m", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "m", "CONFIG_RT2500PCI": "m", "CONFIG_RT61PCI": "m", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "m", "CONFIG_RT73USB": "m", "CONFIG_RT2800USB": "m", "CONFIG_RT2800USB_RT33XX": "y", "CONFIG_RT2800USB_RT35XX": "y", "CONFIG_RT2800USB_RT3573": "y", "CONFIG_RT2800USB_RT53XX": "y", "CONFIG_RT2800USB_RT55XX": "y", "CONFIG_RT2800USB_UNKNOWN": "y", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB_USB": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_LIB_DEBUGFS": "not set", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "m", "CONFIG_RTL8187": "m", "CONFIG_RTL8187_LEDS": "y", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "m", "CONFIG_RTL8192SE": "m", "CONFIG_RTL8192DE": "m", "CONFIG_RTL8723AE": "m", "CONFIG_RTL8723BE": "m", "CONFIG_RTL8188EE": "m", "CONFIG_RTL8192EE": "m", "CONFIG_RTL8821AE": "m", "CONFIG_RTL8192CU": "m", "CONFIG_RTLWIFI": "m", "CONFIG_RTLWIFI_PCI": "m", "CONFIG_RTLWIFI_USB": "m", "CONFIG_RTLWIFI_DEBUG": "y", "CONFIG_RTL8192C_COMMON": "m", "CONFIG_RTL8723_COMMON": "m", "CONFIG_RTLBTCOEXIST": "m", "CONFIG_RTL8XXXU": "m", "CONFIG_RTL8XXXU_UNTESTED": "y", "CONFIG_RTW88": "m", "CONFIG_RTW88_CORE": "m", "CONFIG_RTW88_PCI": "m", "CONFIG_RTW88_SDIO": "m", "CONFIG_RTW88_USB": "m", "CONFIG_RTW88_8822B": "m", "CONFIG_RTW88_8822C": "m", "CONFIG_RTW88_8723D": "m", "CONFIG_RTW88_8821C": "m", "CONFIG_RTW88_8822BE": "m", "CONFIG_RTW88_8822BS": "m", "CONFIG_RTW88_8822BU": "m", "CONFIG_RTW88_8822CE": "m", "CONFIG_RTW88_8822CS": "m", "CONFIG_RTW88_8822CU": "m", "CONFIG_RTW88_8723DE": "m", "CONFIG_RTW88_8723DS": "not set", "CONFIG_RTW88_8723DU": "m", "CONFIG_RTW88_8821CE": "m", "CONFIG_RTW88_8821CS": "m", "CONFIG_RTW88_8821CU": "m", "CONFIG_RTW88_DEBUG": "not set", "CONFIG_RTW88_DEBUGFS": "not set", "CONFIG_RTW89": "m", "CONFIG_RTW89_CORE": "m", "CONFIG_RTW89_PCI": "m", "CONFIG_RTW89_8852A": "m", "CONFIG_RTW89_8852B": "m", "CONFIG_RTW89_8852C": "m", "CONFIG_RTW89_8851BE": "not set", "CONFIG_RTW89_8852AE": "m", "CONFIG_RTW89_8852BE": "m", "CONFIG_RTW89_8852CE": "m", "CONFIG_RTW89_DEBUGMSG": "not set", "CONFIG_RTW89_DEBUGFS": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "m", "CONFIG_RSI_DEBUGFS": "not set", "CONFIG_RSI_SDIO": "m", "CONFIG_RSI_USB": "m", "CONFIG_RSI_COEX": "y", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "m", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "m", "CONFIG_CW1200_WLAN_SDIO": "m", "CONFIG_CW1200_WLAN_SPI": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "m", "CONFIG_WL1251_SPI": "not set", "CONFIG_WL1251_SDIO": "m", "CONFIG_WL12XX": "m", "CONFIG_WL18XX": "m", "CONFIG_WLCORE": "m", "CONFIG_WLCORE_SDIO": "m", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_USB_ZD1201": "m", "CONFIG_ZD1211RW": "m", "CONFIG_ZD1211RW_DEBUG": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC": "m", "CONFIG_QTNFMAC_PCIE": "m", "CONFIG_USB_NET_RNDIS_WLAN": "m", "CONFIG_MAC80211_HWSIM": "m", "CONFIG_VIRT_WIFI": "m", "CONFIG_WAN": "y", "CONFIG_HDLC": "m", "CONFIG_HDLC_RAW": "m", "CONFIG_HDLC_RAW_ETH": "m", "CONFIG_HDLC_CISCO": "m", "CONFIG_HDLC_FR": "m", "CONFIG_HDLC_PPP": "m", "CONFIG_HDLC_X25": "m", "CONFIG_PCI200SYN": "m", "CONFIG_WANXL": "m", "CONFIG_PC300TOO": "m", "CONFIG_FARSYNC": "m", "CONFIG_LAPBETHER": "m", "CONFIG_IEEE802154_DRIVERS": "m", "CONFIG_IEEE802154_FAKELB": "m", "CONFIG_IEEE802154_AT86RF230": "not set", "CONFIG_IEEE802154_MRF24J40": "not set", "CONFIG_IEEE802154_CC2520": "not set", "CONFIG_IEEE802154_ATUSB": "not set", "CONFIG_IEEE802154_ADF7242": "m", "CONFIG_IEEE802154_CA8210": "m", "CONFIG_IEEE802154_CA8210_DEBUGFS": "not set", "CONFIG_IEEE802154_MCR20A": "m", "CONFIG_IEEE802154_HWSIM": "m", "CONFIG_WWAN": "y", "CONFIG_WWAN_DEBUGFS": "not set", "CONFIG_WWAN_HWSIM": "m", "CONFIG_MHI_WWAN_CTRL": "m", "CONFIG_MHI_WWAN_MBIM": "m", "CONFIG_RPMSG_WWAN_CTRL": "m", "CONFIG_IOSM": "m", "CONFIG_MTK_T7XX": "m", "CONFIG_XEN_NETDEV_FRONTEND": "m", "CONFIG_XEN_NETDEV_BACKEND": "m", "CONFIG_VMXNET3": "m", "CONFIG_FUJITSU_ES": "m", "CONFIG_USB4_NET": "m", "CONFIG_HYPERV_NET": "m", "CONFIG_NETDEVSIM": "m", "CONFIG_NET_FAILOVER": "m", "CONFIG_ISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "m", "CONFIG_INPUT_SPARSEKMAP": "m", "CONFIG_INPUT_MATRIXKMAP": "m", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "y", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "m", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADC": "not set", "CONFIG_KEYBOARD_ADP5588": "m", "CONFIG_KEYBOARD_ADP5589": "m", "CONFIG_KEYBOARD_APPLESPI": "m", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "m", "CONFIG_KEYBOARD_QT1070": "m", "CONFIG_KEYBOARD_QT2160": "m", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "m", "CONFIG_KEYBOARD_GPIO_POLLED": "m", "CONFIG_KEYBOARD_TCA6416": "m", "CONFIG_KEYBOARD_TCA8418": "m", "CONFIG_KEYBOARD_MATRIX": "m", "CONFIG_KEYBOARD_LM8323": "m", "CONFIG_KEYBOARD_LM8333": "m", "CONFIG_KEYBOARD_MAX7359": "m", "CONFIG_KEYBOARD_MCS": "m", "CONFIG_KEYBOARD_MPR121": "m", "CONFIG_KEYBOARD_NEWTON": "m", "CONFIG_KEYBOARD_OPENCORES": "m", "CONFIG_KEYBOARD_PINEPHONE": "m", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "m", "CONFIG_KEYBOARD_IQS62X": "m", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "m", "CONFIG_KEYBOARD_CROS_EC": "m", "CONFIG_KEYBOARD_CYPRESS_SF": "m", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "y", "CONFIG_MOUSE_PS2_ELANTECH_SMBUS": "y", "CONFIG_MOUSE_PS2_SENTELIC": "y", "CONFIG_MOUSE_PS2_TOUCHKIT": "y", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "y", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "m", "CONFIG_MOUSE_APPLETOUCH": "m", "CONFIG_MOUSE_BCM5974": "m", "CONFIG_MOUSE_CYAPA": "m", "CONFIG_MOUSE_ELAN_I2C": "m", "CONFIG_MOUSE_ELAN_I2C_I2C": "y", "CONFIG_MOUSE_ELAN_I2C_SMBUS": "y", "CONFIG_MOUSE_VSXXXAA": "m", "CONFIG_MOUSE_GPIO": "m", "CONFIG_MOUSE_SYNAPTICS_I2C": "m", "CONFIG_MOUSE_SYNAPTICS_USB": "m", "CONFIG_INPUT_JOYSTICK": "y", "CONFIG_JOYSTICK_ANALOG": "not set", "CONFIG_JOYSTICK_A3D": "not set", "CONFIG_JOYSTICK_ADC": "m", "CONFIG_JOYSTICK_ADI": "not set", "CONFIG_JOYSTICK_COBRA": "not set", "CONFIG_JOYSTICK_GF2K": "not set", "CONFIG_JOYSTICK_GRIP": "not set", "CONFIG_JOYSTICK_GRIP_MP": "not set", "CONFIG_JOYSTICK_GUILLEMOT": "not set", "CONFIG_JOYSTICK_INTERACT": "not set", "CONFIG_JOYSTICK_SIDEWINDER": "not set", "CONFIG_JOYSTICK_TMDC": "not set", "CONFIG_JOYSTICK_IFORCE": "m", "CONFIG_JOYSTICK_IFORCE_USB": "m", "CONFIG_JOYSTICK_IFORCE_232": "m", "CONFIG_JOYSTICK_WARRIOR": "m", "CONFIG_JOYSTICK_MAGELLAN": "m", "CONFIG_JOYSTICK_SPACEORB": "m", "CONFIG_JOYSTICK_SPACEBALL": "m", "CONFIG_JOYSTICK_STINGER": "m", "CONFIG_JOYSTICK_TWIDJOY": "m", "CONFIG_JOYSTICK_ZHENHUA": "m", "CONFIG_JOYSTICK_DB9": "m", "CONFIG_JOYSTICK_GAMECON": "m", "CONFIG_JOYSTICK_TURBOGRAFX": "m", "CONFIG_JOYSTICK_AS5011": "m", "CONFIG_JOYSTICK_JOYDUMP": "not set", "CONFIG_JOYSTICK_XPAD": "m", "CONFIG_JOYSTICK_XPAD_FF": "y", "CONFIG_JOYSTICK_XPAD_LEDS": "y", "CONFIG_JOYSTICK_WALKERA0701": "m", "CONFIG_JOYSTICK_PSXPAD_SPI": "m", "CONFIG_JOYSTICK_PSXPAD_SPI_FF": "y", "CONFIG_JOYSTICK_PXRC": "m", "CONFIG_JOYSTICK_QWIIC": "m", "CONFIG_JOYSTICK_FSIA6B": "m", "CONFIG_JOYSTICK_SENSEHAT": "m", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "m", "CONFIG_TABLET_USB_AIPTEK": "m", "CONFIG_TABLET_USB_HANWANG": "m", "CONFIG_TABLET_USB_KBTAB": "m", "CONFIG_TABLET_USB_PEGASUS": "m", "CONFIG_TABLET_SERIAL_WACOM4": "m", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_ADS7846": "not set", "CONFIG_TOUCHSCREEN_AD7877": "not set", "CONFIG_TOUCHSCREEN_AD7879": "m", "CONFIG_TOUCHSCREEN_AD7879_I2C": "m", "CONFIG_TOUCHSCREEN_AD7879_SPI": "not set", "CONFIG_TOUCHSCREEN_ADC": "m", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "m", "CONFIG_TOUCHSCREEN_ATMEL_MXT_T37": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "m", "CONFIG_TOUCHSCREEN_BU21013": "m", "CONFIG_TOUCHSCREEN_BU21029": "m", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "m", "CONFIG_TOUCHSCREEN_CY8CTMA140": "m", "CONFIG_TOUCHSCREEN_CY8CTMG110": "m", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "m", "CONFIG_TOUCHSCREEN_CYTTSP_I2C": "m", "CONFIG_TOUCHSCREEN_CYTTSP_SPI": "not set", "CONFIG_TOUCHSCREEN_CYTTSP4_CORE": "m", "CONFIG_TOUCHSCREEN_CYTTSP4_I2C": "m", "CONFIG_TOUCHSCREEN_CYTTSP4_SPI": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "m", "CONFIG_TOUCHSCREEN_DYNAPRO": "m", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "m", "CONFIG_TOUCHSCREEN_EETI": "m", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "m", "CONFIG_TOUCHSCREEN_EXC3000": "m", "CONFIG_TOUCHSCREEN_FUJITSU": "m", "CONFIG_TOUCHSCREEN_GOODIX": "m", "CONFIG_TOUCHSCREEN_HIDEEP": "m", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "m", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "m", "CONFIG_TOUCHSCREEN_ILI210X": "m", "CONFIG_TOUCHSCREEN_ILITEK": "m", "CONFIG_TOUCHSCREEN_S6SY761": "m", "CONFIG_TOUCHSCREEN_GUNZE": "m", "CONFIG_TOUCHSCREEN_EKTF2127": "m", "CONFIG_TOUCHSCREEN_ELAN": "m", "CONFIG_TOUCHSCREEN_ELO": "m", "CONFIG_TOUCHSCREEN_WACOM_W8001": "m", "CONFIG_TOUCHSCREEN_WACOM_I2C": "m", "CONFIG_TOUCHSCREEN_MAX11801": "m", "CONFIG_TOUCHSCREEN_MCS5000": "m", "CONFIG_TOUCHSCREEN_MMS114": "m", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "m", "CONFIG_TOUCHSCREEN_MSG2638": "m", "CONFIG_TOUCHSCREEN_MTOUCH": "m", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "m", "CONFIG_TOUCHSCREEN_IMAGIS": "m", "CONFIG_TOUCHSCREEN_INEXIO": "m", "CONFIG_TOUCHSCREEN_MK712": "m", "CONFIG_TOUCHSCREEN_PENMOUNT": "m", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "m", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "m", "CONFIG_TOUCHSCREEN_TOUCHWIN": "m", "CONFIG_TOUCHSCREEN_PIXCIR": "m", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "m", "CONFIG_TOUCHSCREEN_WM97XX": "m", "CONFIG_TOUCHSCREEN_WM9705": "y", "CONFIG_TOUCHSCREEN_WM9712": "y", "CONFIG_TOUCHSCREEN_WM9713": "y", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "m", "CONFIG_TOUCHSCREEN_TSC_SERIO": "m", "CONFIG_TOUCHSCREEN_TSC200X_CORE": "m", "CONFIG_TOUCHSCREEN_TSC2004": "m", "CONFIG_TOUCHSCREEN_TSC2005": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "m", "CONFIG_TOUCHSCREEN_TSC2007_IIO": "y", "CONFIG_TOUCHSCREEN_RM_TS": "m", "CONFIG_TOUCHSCREEN_SILEAD": "m", "CONFIG_TOUCHSCREEN_SIS_I2C": "m", "CONFIG_TOUCHSCREEN_ST1232": "m", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "m", "CONFIG_TOUCHSCREEN_SURFACE3_SPI": "m", "CONFIG_TOUCHSCREEN_SX8654": "m", "CONFIG_TOUCHSCREEN_TPS6507X": "m", "CONFIG_TOUCHSCREEN_ZET6223": "m", "CONFIG_TOUCHSCREEN_ZFORCE": "m", "CONFIG_TOUCHSCREEN_COLIBRI_VF50": "m", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "m", "CONFIG_TOUCHSCREEN_IQS5XX": "m", "CONFIG_TOUCHSCREEN_ZINITIX": "m", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "m", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "m", "CONFIG_INPUT_AD714X_I2C": "m", "CONFIG_INPUT_AD714X_SPI": "not set", "CONFIG_INPUT_BMA150": "m", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "m", "CONFIG_INPUT_MMA8450": "m", "CONFIG_INPUT_APANEL": "m", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "m", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "m", "CONFIG_INPUT_ATI_REMOTE2": "m", "CONFIG_INPUT_KEYSPAN_REMOTE": "m", "CONFIG_INPUT_KXTJ9": "m", "CONFIG_INPUT_POWERMATE": "m", "CONFIG_INPUT_YEALINK": "m", "CONFIG_INPUT_CM109": "m", "CONFIG_INPUT_REGULATOR_HAPTIC": "m", "CONFIG_INPUT_AXP20X_PEK": "m", "CONFIG_INPUT_UINPUT": "m", "CONFIG_INPUT_PCF8574": "m", "CONFIG_INPUT_PWM_BEEPER": "m", "CONFIG_INPUT_PWM_VIBRA": "m", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "m", "CONFIG_INPUT_DA7280_HAPTICS": "m", "CONFIG_INPUT_DA9063_ONKEY": "m", "CONFIG_INPUT_ADXL34X": "m", "CONFIG_INPUT_ADXL34X_I2C": "m", "CONFIG_INPUT_ADXL34X_SPI": "not set", "CONFIG_INPUT_IMS_PCU": "m", "CONFIG_INPUT_IQS269A": "m", "CONFIG_INPUT_IQS626A": "m", "CONFIG_INPUT_IQS7222": "m", "CONFIG_INPUT_CMA3000": "m", "CONFIG_INPUT_CMA3000_I2C": "m", "CONFIG_INPUT_XEN_KBDDEV_FRONTEND": "m", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "m", "CONFIG_INPUT_SOC_BUTTON_ARRAY": "m", "CONFIG_INPUT_DRV260X_HAPTICS": "m", "CONFIG_INPUT_DRV2665_HAPTICS": "m", "CONFIG_INPUT_DRV2667_HAPTICS": "m", "CONFIG_RMI4_CORE": "m", "CONFIG_RMI4_I2C": "m", "CONFIG_RMI4_SPI": "m", "CONFIG_RMI4_SMB": "m", "CONFIG_RMI4_F03": "y", "CONFIG_RMI4_F03_SERIO": "m", "CONFIG_RMI4_2D_SENSOR": "y", "CONFIG_RMI4_F11": "y", "CONFIG_RMI4_F12": "y", "CONFIG_RMI4_F30": "y", "CONFIG_RMI4_F34": "y", "CONFIG_RMI4_F3A": "y", "CONFIG_RMI4_F54": "y", "CONFIG_RMI4_F55": "y", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "m", "CONFIG_SERIO_CT82C710": "m", "CONFIG_SERIO_PARKBD": "m", "CONFIG_SERIO_PCIPS2": "m", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "m", "CONFIG_SERIO_ALTERA_PS2": "m", "CONFIG_SERIO_PS2MULT": "m", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_HYPERV_KEYBOARD": "m", "CONFIG_SERIO_GPIO_PS2": "m", "CONFIG_USERIO": "m", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_HW_CONSOLE": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "y", "CONFIG_LEGACY_PTY_COUNT": "0", "CONFIG_LEGACY_TIOCSTI": "not set", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "not set", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "y", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_DMA": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "32", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "32", "CONFIG_SERIAL_8250_EXTENDED": "y", "CONFIG_SERIAL_8250_MANY_PORTS": "y", "CONFIG_SERIAL_8250_PCI1XXXX": "y", "CONFIG_SERIAL_8250_SHARE_IRQ": "y", "CONFIG_SERIAL_8250_DETECT_IRQ": "not set", "CONFIG_SERIAL_8250_RSA": "y", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_FSL": "not set", "CONFIG_SERIAL_8250_DFL": "m", "CONFIG_SERIAL_8250_DW": "y", "CONFIG_SERIAL_8250_RT288X": "y", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_MAX3100": "not set", "CONFIG_SERIAL_MAX310X": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "m", "CONFIG_SERIAL_LANTIQ": "m", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX_CORE": "m", "CONFIG_SERIAL_SC16IS7XX": "m", "CONFIG_SERIAL_SC16IS7XX_I2C": "y", "CONFIG_SERIAL_SC16IS7XX_SPI": "y", "CONFIG_SERIAL_ALTERA_JTAGUART": "m", "CONFIG_SERIAL_ALTERA_UART": "m", "CONFIG_SERIAL_ALTERA_UART_MAXPORTS": "4", "CONFIG_SERIAL_ALTERA_UART_BAUDRATE": "115200", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "m", "CONFIG_SERIAL_RP2_NR_UARTS": "32", "CONFIG_SERIAL_FSL_LPUART": "m", "CONFIG_SERIAL_FSL_LINFLEXUART": "m", "CONFIG_SERIAL_SPRD": "m", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "y", "CONFIG_MOXA_INTELLIO": "m", "CONFIG_MOXA_SMARTIO": "m", "CONFIG_SYNCLINK_GT": "m", "CONFIG_N_HDLC": "m", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "m", "CONFIG_NULL_TTY": "m", "CONFIG_HVC_DRIVER": "y", "CONFIG_HVC_IRQ": "y", "CONFIG_HVC_XEN": "y", "CONFIG_HVC_XEN_FRONTEND": "y", "CONFIG_RPMSG_TTY": "m", "CONFIG_SERIAL_DEV_BUS": "y", "CONFIG_SERIAL_DEV_CTRL_TTYPORT": "y", "CONFIG_TTY_PRINTK": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "m", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "m", "CONFIG_IPMI_DMI_DECODE": "y", "CONFIG_IPMI_PLAT_DATA": "y", "CONFIG_IPMI_PANIC_EVENT": "y", "CONFIG_IPMI_PANIC_STRING": "not set", "CONFIG_IPMI_DEVICE_INTERFACE": "m", "CONFIG_IPMI_SI": "m", "CONFIG_IPMI_SSIF": "m", "CONFIG_IPMI_WATCHDOG": "m", "CONFIG_IPMI_POWEROFF": "m", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "m", "CONFIG_HW_RANDOM_AMD": "m", "CONFIG_HW_RANDOM_BA431": "m", "CONFIG_HW_RANDOM_VIA": "m", "CONFIG_HW_RANDOM_VIRTIO": "m", "CONFIG_HW_RANDOM_XIPHERA": "m", "CONFIG_APPLICOM": "m", "CONFIG_MWAVE": "m", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "y", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "m", "CONFIG_UV_MMTIMER": "m", "CONFIG_TCG_TPM": "y", "CONFIG_HW_RANDOM_TPM": "y", "CONFIG_TCG_TIS_CORE": "y", "CONFIG_TCG_TIS": "y", "CONFIG_TCG_TIS_SPI": "m", "CONFIG_TCG_TIS_SPI_CR50": "y", "CONFIG_TCG_TIS_I2C": "m", "CONFIG_TCG_TIS_I2C_CR50": "m", "CONFIG_TCG_TIS_I2C_ATMEL": "m", "CONFIG_TCG_TIS_I2C_INFINEON": "m", "CONFIG_TCG_TIS_I2C_NUVOTON": "m", "CONFIG_TCG_NSC": "m", "CONFIG_TCG_ATMEL": "m", "CONFIG_TCG_INFINEON": "m", "CONFIG_TCG_XEN": "m", "CONFIG_TCG_CRB": "y", "CONFIG_TCG_VTPM_PROXY": "m", "CONFIG_TCG_TIS_ST33ZP24": "m", "CONFIG_TCG_TIS_ST33ZP24_I2C": "m", "CONFIG_TCG_TIS_ST33ZP24_SPI": "m", "CONFIG_TELCLOCK": "m", "CONFIG_CRASHER": "m", "CONFIG_XILLYBUS_CLASS": "m", "CONFIG_XILLYBUS": "m", "CONFIG_XILLYBUS_PCIE": "m", "CONFIG_XILLYUSB": "m", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_COMPAT": "not set", "CONFIG_I2C_CHARDEV": "m", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "m", "CONFIG_I2C_MUX_LTC4306": "m", "CONFIG_I2C_MUX_PCA9541": "m", "CONFIG_I2C_MUX_PCA954x": "m", "CONFIG_I2C_MUX_REG": "m", "CONFIG_I2C_MUX_MLXCPLD": "m", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "m", "CONFIG_I2C_ALGOBIT": "m", "CONFIG_I2C_ALGOPCA": "m", "CONFIG_I2C_CCGX_UCSI": "m", "CONFIG_I2C_ALI1535": "m", "CONFIG_I2C_ALI1563": "m", "CONFIG_I2C_ALI15X3": "m", "CONFIG_I2C_AMD756": "m", "CONFIG_I2C_AMD756_S4882": "m", "CONFIG_I2C_AMD8111": "m", "CONFIG_I2C_AMD_MP2": "m", "CONFIG_I2C_I801": "m", "CONFIG_I2C_ISCH": "m", "CONFIG_I2C_ISMT": "m", "CONFIG_I2C_PIIX4": "m", "CONFIG_I2C_NFORCE2": "m", "CONFIG_I2C_NFORCE2_S4985": "m", "CONFIG_I2C_NVIDIA_GPU": "m", "CONFIG_I2C_SIS5595": "m", "CONFIG_I2C_SIS630": "m", "CONFIG_I2C_SIS96X": "m", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "m", "CONFIG_I2C_SCMI": "m", "CONFIG_I2C_CBUS_GPIO": "m", "CONFIG_I2C_DESIGNWARE_CORE": "m", "CONFIG_I2C_DESIGNWARE_SLAVE": "not set", "CONFIG_I2C_DESIGNWARE_PLATFORM": "m", "CONFIG_I2C_DESIGNWARE_AMDPSP": "y", "CONFIG_I2C_DESIGNWARE_BAYTRAIL": "y", "CONFIG_I2C_DESIGNWARE_PCI": "m", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "m", "CONFIG_I2C_GPIO_FAULT_INJECTOR": "not set", "CONFIG_I2C_KEMPLD": "m", "CONFIG_I2C_OCORES": "m", "CONFIG_I2C_PCA_PLATFORM": "m", "CONFIG_I2C_PXA_PCI": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "m", "CONFIG_I2C_DLN2": "m", "CONFIG_I2C_CP2615": "m", "CONFIG_I2C_PARPORT": "m", "CONFIG_I2C_PCI1XXXX": "m", "CONFIG_I2C_ROBOTFUZZ_OSIF": "m", "CONFIG_I2C_TAOS_EVM": "m", "CONFIG_I2C_TINY_USB": "m", "CONFIG_I2C_VIPERBOARD": "m", "CONFIG_I2C_MLXCPLD": "m", "CONFIG_I2C_CROS_EC_TUNNEL": "m", "CONFIG_I2C_VIRTIO": "m", "CONFIG_I2C_STUB": "m", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "m", "CONFIG_CDNS_I3C_MASTER": "m", "CONFIG_DW_I3C_MASTER": "m", "CONFIG_SVC_I3C_MASTER": "m", "CONFIG_MIPI_I3C_HCI": "m", "CONFIG_SPI": "y", "CONFIG_SPI_DEBUG": "not set", "CONFIG_SPI_MASTER": "y", "CONFIG_SPI_MEM": "y", "CONFIG_SPI_ALTERA": "not set", "CONFIG_SPI_ALTERA_CORE": "m", "CONFIG_SPI_ALTERA_DFL": "m", "CONFIG_SPI_AXI_SPI_ENGINE": "not set", "CONFIG_SPI_BITBANG": "y", "CONFIG_SPI_BUTTERFLY": "not set", "CONFIG_SPI_CADENCE": "not set", "CONFIG_SPI_DESIGNWARE": "not set", "CONFIG_SPI_DLN2": "m", "CONFIG_SPI_GPIO": "not set", "CONFIG_SPI_INTEL": "m", "CONFIG_SPI_INTEL_PCI": "m", "CONFIG_SPI_INTEL_PLATFORM": "m", "CONFIG_SPI_LM70_LLP": "not set", "CONFIG_SPI_MICROCHIP_CORE": "m", "CONFIG_SPI_MICROCHIP_CORE_QSPI": "m", "CONFIG_SPI_LANTIQ_SSC": "not set", "CONFIG_SPI_OC_TINY": "not set", "CONFIG_SPI_PCI1XXXX": "not set", "CONFIG_SPI_PXA2XX": "m", "CONFIG_SPI_PXA2XX_PCI": "m", "CONFIG_SPI_SC18IS602": "not set", "CONFIG_SPI_SIFIVE": "not set", "CONFIG_SPI_MXIC": "not set", "CONFIG_SPI_XCOMM": "not set", "CONFIG_SPI_XILINX": "not set", "CONFIG_SPI_ZYNQMP_GQSPI": "not set", "CONFIG_SPI_AMD": "m", "CONFIG_SPI_MUX": "m", "CONFIG_SPI_SPIDEV": "not set", "CONFIG_SPI_LOOPBACK_TEST": "m", "CONFIG_SPI_TLE62X0": "not set", "CONFIG_SPI_SLAVE": "not set", "CONFIG_SPI_DYNAMIC": "y", "CONFIG_SPMI": "m", "CONFIG_SPMI_HISI3670": "not set", "CONFIG_HSI": "m", "CONFIG_HSI_BOARDINFO": "y", "CONFIG_HSI_CHAR": "m", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "m", "CONFIG_PPS_CLIENT_PARPORT": "m", "CONFIG_PPS_CLIENT_GPIO": "m", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "m", "CONFIG_PTP_1588_CLOCK_IDT82P33": "m", "CONFIG_PTP_1588_CLOCK_IDTCM": "m", "CONFIG_PTP_1588_CLOCK_VMW": "m", "CONFIG_PTP_1588_CLOCK_OCP": "m", "CONFIG_PTP_DFL_TOD": "m", "CONFIG_PINCTRL": "y", "CONFIG_PINMUX": "y", "CONFIG_PINCONF": "y", "CONFIG_GENERIC_PINCONF": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "y", "CONFIG_PINCTRL_CY8C95X0": "m", "CONFIG_PINCTRL_DA9062": "m", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_MADERA": "m", "CONFIG_PINCTRL_CS47L15": "y", "CONFIG_PINCTRL_CS47L35": "y", "CONFIG_PINCTRL_CS47L85": "y", "CONFIG_PINCTRL_CS47L90": "y", "CONFIG_PINCTRL_CS47L92": "y", "CONFIG_PINCTRL_BAYTRAIL": "y", "CONFIG_PINCTRL_CHERRYVIEW": "m", "CONFIG_PINCTRL_LYNXPOINT": "m", "CONFIG_PINCTRL_INTEL": "y", "CONFIG_PINCTRL_ALDERLAKE": "m", "CONFIG_PINCTRL_BROXTON": "m", "CONFIG_PINCTRL_CANNONLAKE": "m", "CONFIG_PINCTRL_CEDARFORK": "m", "CONFIG_PINCTRL_DENVERTON": "m", "CONFIG_PINCTRL_ELKHARTLAKE": "m", "CONFIG_PINCTRL_EMMITSBURG": "m", "CONFIG_PINCTRL_GEMINILAKE": "m", "CONFIG_PINCTRL_ICELAKE": "m", "CONFIG_PINCTRL_JASPERLAKE": "m", "CONFIG_PINCTRL_LAKEFIELD": "m", "CONFIG_PINCTRL_LEWISBURG": "m", "CONFIG_PINCTRL_METEORLAKE": "m", "CONFIG_PINCTRL_SUNRISEPOINT": "m", "CONFIG_PINCTRL_TIGERLAKE": "m", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_GPIOLIB_IRQCHIP": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_SYSFS": "y", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_GENERIC": "m", "CONFIG_GPIO_REGMAP": "m", "CONFIG_GPIO_MAX730X": "m", "CONFIG_GPIO_IDIO_16": "m", "CONFIG_GPIO_AMDPT": "m", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "m", "CONFIG_GPIO_GENERIC_PLATFORM": "m", "CONFIG_GPIO_ICH": "m", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_TANGIER": "m", "CONFIG_GPIO_VX855": "m", "CONFIG_GPIO_AMD_FCH": "m", "CONFIG_GPIO_I8255": "m", "CONFIG_GPIO_104_DIO_48E": "m", "CONFIG_GPIO_104_IDIO_16": "m", "CONFIG_GPIO_104_IDI_48": "m", "CONFIG_GPIO_F7188X": "m", "CONFIG_GPIO_GPIO_MM": "m", "CONFIG_GPIO_IT87": "m", "CONFIG_GPIO_SCH": "m", "CONFIG_GPIO_SCH311X": "m", "CONFIG_GPIO_WINBOND": "m", "CONFIG_GPIO_WS16C48": "m", "CONFIG_GPIO_FXL6408": "m", "CONFIG_GPIO_MAX7300": "m", "CONFIG_GPIO_MAX732X": "m", "CONFIG_GPIO_PCA953X": "m", "CONFIG_GPIO_PCA953X_IRQ": "y", "CONFIG_GPIO_PCA9570": "m", "CONFIG_GPIO_PCF857X": "m", "CONFIG_GPIO_TPIC2810": "m", "CONFIG_GPIO_DLN2": "m", "CONFIG_GPIO_ELKHARTLAKE": "m", "CONFIG_GPIO_KEMPLD": "m", "CONFIG_GPIO_LP3943": "m", "CONFIG_GPIO_MADERA": "m", "CONFIG_GPIO_TPS68470": "not set", "CONFIG_GPIO_TQMX86": "m", "CONFIG_GPIO_WHISKEY_COVE": "m", "CONFIG_GPIO_AMD8111": "m", "CONFIG_GPIO_ML_IOH": "m", "CONFIG_GPIO_PCI_IDIO_16": "m", "CONFIG_GPIO_PCIE_IDIO_24": "m", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_MAX3191X": "m", "CONFIG_GPIO_MAX7301": "not set", "CONFIG_GPIO_MC33880": "not set", "CONFIG_GPIO_PISOSR": "m", "CONFIG_GPIO_XRA1403": "not set", "CONFIG_GPIO_VIPERBOARD": "m", "CONFIG_GPIO_AGGREGATOR": "m", "CONFIG_GPIO_LATCH": "m", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "m", "CONFIG_GPIO_SIM": "m", "CONFIG_W1": "m", "CONFIG_W1_CON": "y", "CONFIG_W1_MASTER_MATROX": "m", "CONFIG_W1_MASTER_DS2490": "m", "CONFIG_W1_MASTER_DS2482": "m", "CONFIG_W1_MASTER_GPIO": "not set", "CONFIG_W1_MASTER_SGI": "m", "CONFIG_W1_SLAVE_THERM": "m", "CONFIG_W1_SLAVE_SMEM": "m", "CONFIG_W1_SLAVE_DS2405": "m", "CONFIG_W1_SLAVE_DS2408": "m", "CONFIG_W1_SLAVE_DS2408_READBACK": "y", "CONFIG_W1_SLAVE_DS2413": "m", "CONFIG_W1_SLAVE_DS2406": "m", "CONFIG_W1_SLAVE_DS2423": "m", "CONFIG_W1_SLAVE_DS2805": "m", "CONFIG_W1_SLAVE_DS2430": "m", "CONFIG_W1_SLAVE_DS2431": "m", "CONFIG_W1_SLAVE_DS2433": "m", "CONFIG_W1_SLAVE_DS2433_CRC": "y", "CONFIG_W1_SLAVE_DS2438": "m", "CONFIG_W1_SLAVE_DS250X": "m", "CONFIG_W1_SLAVE_DS2780": "m", "CONFIG_W1_SLAVE_DS2781": "m", "CONFIG_W1_SLAVE_DS28E04": "m", "CONFIG_W1_SLAVE_DS28E17": "m", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_GENERIC_ADC_BATTERY": "not set", "CONFIG_IP5XXX_POWER": "m", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "m", "CONFIG_BATTERY_CW2015": "m", "CONFIG_BATTERY_DS2760": "m", "CONFIG_BATTERY_DS2780": "m", "CONFIG_BATTERY_DS2781": "m", "CONFIG_BATTERY_DS2782": "m", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "m", "CONFIG_CHARGER_SBS": "m", "CONFIG_MANAGER_SBS": "m", "CONFIG_BATTERY_BQ27XXX": "m", "CONFIG_BATTERY_BQ27XXX_I2C": "m", "CONFIG_BATTERY_BQ27XXX_HDQ": "m", "CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM": "not set", "CONFIG_CHARGER_AXP20X": "m", "CONFIG_BATTERY_AXP20X": "m", "CONFIG_AXP20X_POWER": "m", "CONFIG_AXP288_CHARGER": "m", "CONFIG_AXP288_FUEL_GAUGE": "m", "CONFIG_BATTERY_MAX17040": "m", "CONFIG_BATTERY_MAX17042": "m", "CONFIG_BATTERY_MAX1721X": "m", "CONFIG_CHARGER_ISP1704": "m", "CONFIG_CHARGER_MAX8903": "m", "CONFIG_CHARGER_LP8727": "m", "CONFIG_CHARGER_GPIO": "m", "CONFIG_CHARGER_MANAGER": "y", "CONFIG_CHARGER_LT3651": "m", "CONFIG_CHARGER_LTC4162L": "m", "CONFIG_CHARGER_MAX77976": "m", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24190": "m", "CONFIG_CHARGER_BQ24257": "m", "CONFIG_CHARGER_BQ24735": "m", "CONFIG_CHARGER_BQ2515X": "m", "CONFIG_CHARGER_BQ25890": "m", "CONFIG_CHARGER_BQ25980": "m", "CONFIG_CHARGER_BQ256XX": "m", "CONFIG_CHARGER_SMB347": "m", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "m", "CONFIG_BATTERY_RT5033": "m", "CONFIG_CHARGER_RT9455": "m", "CONFIG_CHARGER_RT9467": "m", "CONFIG_CHARGER_RT9471": "m", "CONFIG_CHARGER_CROS_USBPD": "m", "CONFIG_CHARGER_CROS_PCHG": "m", "CONFIG_CHARGER_BD99954": "m", "CONFIG_CHARGER_WILCO": "m", "CONFIG_BATTERY_SURFACE": "m", "CONFIG_CHARGER_SURFACE": "m", "CONFIG_BATTERY_UG3105": "m", "CONFIG_HWMON": "y", "CONFIG_HWMON_VID": "m", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "m", "CONFIG_SENSORS_ABITUGURU3": "m", "CONFIG_SENSORS_AD7314": "not set", "CONFIG_SENSORS_AD7414": "m", "CONFIG_SENSORS_AD7418": "m", "CONFIG_SENSORS_ADM1025": "m", "CONFIG_SENSORS_ADM1026": "m", "CONFIG_SENSORS_ADM1029": "m", "CONFIG_SENSORS_ADM1031": "m", "CONFIG_SENSORS_ADM1177": "m", "CONFIG_SENSORS_ADM9240": "m", "CONFIG_SENSORS_ADT7X10": "m", "CONFIG_SENSORS_ADT7310": "not set", "CONFIG_SENSORS_ADT7410": "m", "CONFIG_SENSORS_ADT7411": "m", "CONFIG_SENSORS_ADT7462": "m", "CONFIG_SENSORS_ADT7470": "m", "CONFIG_SENSORS_ADT7475": "m", "CONFIG_SENSORS_AHT10": "m", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "m", "CONFIG_SENSORS_AS370": "m", "CONFIG_SENSORS_ASC7621": "m", "CONFIG_SENSORS_AXI_FAN_CONTROL": "m", "CONFIG_SENSORS_K8TEMP": "m", "CONFIG_SENSORS_K10TEMP": "m", "CONFIG_SENSORS_FAM15H_POWER": "m", "CONFIG_SENSORS_APPLESMC": "m", "CONFIG_SENSORS_ASB100": "m", "CONFIG_SENSORS_ATXP1": "m", "CONFIG_SENSORS_CORSAIR_CPRO": "m", "CONFIG_SENSORS_CORSAIR_PSU": "m", "CONFIG_SENSORS_DRIVETEMP": "m", "CONFIG_SENSORS_DS620": "m", "CONFIG_SENSORS_DS1621": "m", "CONFIG_SENSORS_DELL_SMM": "m", "CONFIG_I8K": "y", "CONFIG_SENSORS_I5K_AMB": "m", "CONFIG_SENSORS_F71805F": "m", "CONFIG_SENSORS_F71882FG": "m", "CONFIG_SENSORS_F75375S": "m", "CONFIG_SENSORS_FSCHMD": "m", "CONFIG_SENSORS_FTSTEUTATES": "m", "CONFIG_SENSORS_GL518SM": "m", "CONFIG_SENSORS_GL520SM": "m", "CONFIG_SENSORS_G760A": "m", "CONFIG_SENSORS_G762": "m", "CONFIG_SENSORS_HIH6130": "m", "CONFIG_SENSORS_IBMAEM": "m", "CONFIG_SENSORS_IBMPEX": "m", "CONFIG_SENSORS_IIO_HWMON": "not set", "CONFIG_SENSORS_I5500": "m", "CONFIG_SENSORS_CORETEMP": "m", "CONFIG_SENSORS_IT87": "m", "CONFIG_SENSORS_JC42": "m", "CONFIG_SENSORS_POWR1220": "m", "CONFIG_SENSORS_LINEAGE": "m", "CONFIG_SENSORS_LTC2945": "m", "CONFIG_SENSORS_LTC2947": "m", "CONFIG_SENSORS_LTC2947_I2C": "m", "CONFIG_SENSORS_LTC2947_SPI": "m", "CONFIG_SENSORS_LTC2990": "m", "CONFIG_SENSORS_LTC2992": "m", "CONFIG_SENSORS_LTC4151": "m", "CONFIG_SENSORS_LTC4215": "m", "CONFIG_SENSORS_LTC4222": "m", "CONFIG_SENSORS_LTC4245": "m", "CONFIG_SENSORS_LTC4260": "m", "CONFIG_SENSORS_LTC4261": "m", "CONFIG_SENSORS_MAX1111": "not set", "CONFIG_SENSORS_MAX127": "m", "CONFIG_SENSORS_MAX16065": "m", "CONFIG_SENSORS_MAX1619": "m", "CONFIG_SENSORS_MAX1668": "m", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31722": "m", "CONFIG_SENSORS_MAX31730": "m", "CONFIG_SENSORS_MAX31760": "m", "CONFIG_SENSORS_MAX6620": "m", "CONFIG_SENSORS_MAX6621": "m", "CONFIG_SENSORS_MAX6639": "m", "CONFIG_SENSORS_MAX6650": "m", "CONFIG_SENSORS_MAX6697": "m", "CONFIG_SENSORS_MAX31790": "m", "CONFIG_SENSORS_MC34VR500": "m", "CONFIG_SENSORS_MCP3021": "m", "CONFIG_SENSORS_MLXREG_FAN": "m", "CONFIG_SENSORS_TC654": "m", "CONFIG_SENSORS_TPS23861": "m", "CONFIG_SENSORS_MR75203": "m", "CONFIG_SENSORS_ADCXX": "not set", "CONFIG_SENSORS_LM63": "m", "CONFIG_SENSORS_LM70": "not set", "CONFIG_SENSORS_LM73": "m", "CONFIG_SENSORS_LM75": "m", "CONFIG_SENSORS_LM77": "m", "CONFIG_SENSORS_LM78": "m", "CONFIG_SENSORS_LM80": "m", "CONFIG_SENSORS_LM83": "m", "CONFIG_SENSORS_LM85": "m", "CONFIG_SENSORS_LM87": "m", "CONFIG_SENSORS_LM90": "m", "CONFIG_SENSORS_LM92": "m", "CONFIG_SENSORS_LM93": "m", "CONFIG_SENSORS_LM95234": "m", "CONFIG_SENSORS_LM95241": "m", "CONFIG_SENSORS_LM95245": "m", "CONFIG_SENSORS_PC87360": "m", "CONFIG_SENSORS_PC87427": "m", "CONFIG_SENSORS_NTC_THERMISTOR": "not set", "CONFIG_SENSORS_NCT6683": "m", "CONFIG_SENSORS_NCT6775_CORE": "m", "CONFIG_SENSORS_NCT6775": "m", "CONFIG_SENSORS_NCT6775_I2C": "m", "CONFIG_SENSORS_NCT7802": "m", "CONFIG_SENSORS_NCT7904": "m", "CONFIG_SENSORS_NPCM7XX": "m", "CONFIG_SENSORS_NZXT_KRAKEN2": "m", "CONFIG_SENSORS_NZXT_SMART2": "m", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "m", "CONFIG_SENSORS_PCF8591": "m", "CONFIG_PMBUS": "m", "CONFIG_SENSORS_PMBUS": "m", "CONFIG_SENSORS_ACBEL_FSG032": "m", "CONFIG_SENSORS_ADM1266": "m", "CONFIG_SENSORS_ADM1275": "m", "CONFIG_SENSORS_BEL_PFE": "m", "CONFIG_SENSORS_BPA_RS600": "m", "CONFIG_SENSORS_DELTA_AHE50DC_FAN": "m", "CONFIG_SENSORS_FSP_3Y": "m", "CONFIG_SENSORS_IBM_CFFPS": "m", "CONFIG_SENSORS_DPS920AB": "m", "CONFIG_SENSORS_INSPUR_IPSPS": "m", "CONFIG_SENSORS_IR35221": "not set", "CONFIG_SENSORS_IR36021": "m", "CONFIG_SENSORS_IR38064": "m", "CONFIG_SENSORS_IR38064_REGULATOR": "y", "CONFIG_SENSORS_IRPS5401": "m", "CONFIG_SENSORS_ISL68137": "m", "CONFIG_SENSORS_LM25066": "m", "CONFIG_SENSORS_LM25066_REGULATOR": "y", "CONFIG_SENSORS_LT7182S": "m", "CONFIG_SENSORS_LTC2978": "m", "CONFIG_SENSORS_LTC2978_REGULATOR": "y", "CONFIG_SENSORS_LTC3815": "m", "CONFIG_SENSORS_MAX15301": "m", "CONFIG_SENSORS_MAX16064": "m", "CONFIG_SENSORS_MAX16601": "m", "CONFIG_SENSORS_MAX20730": "m", "CONFIG_SENSORS_MAX20751": "m", "CONFIG_SENSORS_MAX31785": "m", "CONFIG_SENSORS_MAX34440": "m", "CONFIG_SENSORS_MAX8688": "m", "CONFIG_SENSORS_MP2888": "m", "CONFIG_SENSORS_MP2975": "m", "CONFIG_SENSORS_MP5023": "m", "CONFIG_SENSORS_MPQ7932_REGULATOR": "y", "CONFIG_SENSORS_MPQ7932": "m", "CONFIG_SENSORS_PIM4328": "m", "CONFIG_SENSORS_PLI1209BC": "m", "CONFIG_SENSORS_PLI1209BC_REGULATOR": "y", "CONFIG_SENSORS_PM6764TR": "m", "CONFIG_SENSORS_PXE1610": "m", "CONFIG_SENSORS_Q54SJ108A2": "m", "CONFIG_SENSORS_STPDDC60": "m", "CONFIG_SENSORS_TDA38640": "m", "CONFIG_SENSORS_TDA38640_REGULATOR": "y", "CONFIG_SENSORS_TPS40422": "m", "CONFIG_SENSORS_TPS53679": "m", "CONFIG_SENSORS_TPS546D24": "m", "CONFIG_SENSORS_UCD9000": "m", "CONFIG_SENSORS_UCD9200": "m", "CONFIG_SENSORS_XDPE152": "m", "CONFIG_SENSORS_XDPE122": "m", "CONFIG_SENSORS_XDPE122_REGULATOR": "y", "CONFIG_SENSORS_ZL6100": "m", "CONFIG_SENSORS_SBTSI": "m", "CONFIG_SENSORS_SBRMI": "m", "CONFIG_SENSORS_SHT15": "m", "CONFIG_SENSORS_SHT21": "m", "CONFIG_SENSORS_SHT3x": "m", "CONFIG_SENSORS_SHT4x": "m", "CONFIG_SENSORS_SHTC1": "m", "CONFIG_SENSORS_SIS5595": "m", "CONFIG_SENSORS_DME1737": "m", "CONFIG_SENSORS_EMC1403": "m", "CONFIG_SENSORS_EMC2103": "m", "CONFIG_SENSORS_EMC2305": "m", "CONFIG_SENSORS_EMC6W201": "m", "CONFIG_SENSORS_SMSC47M1": "m", "CONFIG_SENSORS_SMSC47M192": "m", "CONFIG_SENSORS_SMSC47B397": "m", "CONFIG_SENSORS_SCH56XX_COMMON": "m", "CONFIG_SENSORS_SCH5627": "m", "CONFIG_SENSORS_SCH5636": "m", "CONFIG_SENSORS_STTS751": "m", "CONFIG_SENSORS_SMM665": "m", "CONFIG_SENSORS_ADC128D818": "m", "CONFIG_SENSORS_ADS7828": "m", "CONFIG_SENSORS_ADS7871": "not set", "CONFIG_SENSORS_AMC6821": "m", "CONFIG_SENSORS_INA209": "m", "CONFIG_SENSORS_INA2XX": "m", "CONFIG_SENSORS_INA238": "m", "CONFIG_SENSORS_INA3221": "m", "CONFIG_SENSORS_TC74": "m", "CONFIG_SENSORS_THMC50": "m", "CONFIG_SENSORS_TMP102": "m", "CONFIG_SENSORS_TMP103": "m", "CONFIG_SENSORS_TMP108": "m", "CONFIG_SENSORS_TMP401": "m", "CONFIG_SENSORS_TMP421": "m", "CONFIG_SENSORS_TMP464": "m", "CONFIG_SENSORS_TMP513": "m", "CONFIG_SENSORS_VIA_CPUTEMP": "m", "CONFIG_SENSORS_VIA686A": "m", "CONFIG_SENSORS_VT1211": "m", "CONFIG_SENSORS_VT8231": "m", "CONFIG_SENSORS_W83773G": "m", "CONFIG_SENSORS_W83781D": "m", "CONFIG_SENSORS_W83791D": "m", "CONFIG_SENSORS_W83792D": "m", "CONFIG_SENSORS_W83793": "m", "CONFIG_SENSORS_W83795": "m", "CONFIG_SENSORS_W83795_FANCTRL": "not set", "CONFIG_SENSORS_W83L785TS": "m", "CONFIG_SENSORS_W83L786NG": "m", "CONFIG_SENSORS_W83627HF": "m", "CONFIG_SENSORS_W83627EHF": "m", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "m", "CONFIG_SENSORS_ATK0110": "m", "CONFIG_SENSORS_ASUS_WMI": "m", "CONFIG_SENSORS_ASUS_EC": "m", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "y", "CONFIG_THERMAL_STATISTICS": "y", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_ACPI": "y", "CONFIG_THERMAL_WRITABLE_TRIPS": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "y", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "y", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_GOV_POWER_ALLOCATOR": "not set", "CONFIG_DEVFREQ_THERMAL": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "m", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_IOSF_CORE": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "m", "CONFIG_INT340X_THERMAL": "m", "CONFIG_ACPI_THERMAL_REL": "m", "CONFIG_INT3406_THERMAL": "m", "CONFIG_PROC_THERMAL_MMIO_RAPL": "m", "CONFIG_INTEL_BXT_PMIC_THERMAL": "m", "CONFIG_INTEL_PCH_THERMAL": "m", "CONFIG_INTEL_TCC_COOLING": "m", "CONFIG_INTEL_HFI_THERMAL": "y", "CONFIG_GENERIC_ADC_THERMAL": "m", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "y", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "y", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_SEL": "m", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC": "m", "CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP": "y", "CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_SOFT_WATCHDOG_PRETIMEOUT": "y", "CONFIG_DA9062_WATCHDOG": "m", "CONFIG_WDAT_WDT": "m", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "m", "CONFIG_MLX_WDT": "m", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "m", "CONFIG_ADVANTECH_WDT": "m", "CONFIG_ADVANTECH_EC_WDT": "m", "CONFIG_ALIM1535_WDT": "m", "CONFIG_ALIM7101_WDT": "m", "CONFIG_EBC_C384_WDT": "m", "CONFIG_EXAR_WDT": "m", "CONFIG_F71808E_WDT": "m", "CONFIG_SP5100_TCO": "m", "CONFIG_SBC_FITPC2_WATCHDOG": "m", "CONFIG_EUROTECH_WDT": "m", "CONFIG_IB700_WDT": "m", "CONFIG_IBMASR": "m", "CONFIG_WAFER_WDT": "m", "CONFIG_I6300ESB_WDT": "m", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "m", "CONFIG_ITCO_VENDOR_SUPPORT": "y", "CONFIG_IT8712F_WDT": "m", "CONFIG_IT87_WDT": "m", "CONFIG_HP_WATCHDOG": "m", "CONFIG_HPWDT_NMI_DECODING": "y", "CONFIG_KEMPLD_WDT": "m", "CONFIG_SC1200_WDT": "m", "CONFIG_PC87413_WDT": "m", "CONFIG_NV_TCO": "m", "CONFIG_60XX_WDT": "m", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "m", "CONFIG_SMSC37B787_WDT": "m", "CONFIG_TQMX86_WDT": "m", "CONFIG_VIA_WDT": "m", "CONFIG_W83627HF_WDT": "m", "CONFIG_W83877F_WDT": "m", "CONFIG_W83977F_WDT": "m", "CONFIG_MACHZ_WDT": "m", "CONFIG_SBC_EPX_C3_WATCHDOG": "m", "CONFIG_INTEL_MEI_WDT": "m", "CONFIG_NI903X_WDT": "m", "CONFIG_NIC7018_WDT": "m", "CONFIG_SIEMENS_SIMATIC_IPC_WDT": "m", "CONFIG_MEN_A21_WDT": "m", "CONFIG_XEN_WDT": "m", "CONFIG_PCIPCWATCHDOG": "m", "CONFIG_WDTPCI": "m", "CONFIG_USBPCWATCHDOG": "m", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "m", "CONFIG_SSB_SPROM": "y", "CONFIG_SSB_BLOCKIO": "y", "CONFIG_SSB_PCIHOST_POSSIBLE": "y", "CONFIG_SSB_PCIHOST": "y", "CONFIG_SSB_B43_PCI_BRIDGE": "y", "CONFIG_SSB_SDIOHOST_POSSIBLE": "y", "CONFIG_SSB_SDIOHOST": "y", "CONFIG_SSB_DRIVER_PCICORE_POSSIBLE": "y", "CONFIG_SSB_DRIVER_PCICORE": "y", "CONFIG_SSB_DRIVER_GPIO": "y", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_BLOCKIO": "y", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "y", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_CORE": "m", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X": "m", "CONFIG_MFD_AXP20X_I2C": "m", "CONFIG_MFD_CROS_EC_DEV": "m", "CONFIG_MFD_MADERA": "m", "CONFIG_MFD_MADERA_I2C": "m", "CONFIG_MFD_MADERA_SPI": "m", "CONFIG_MFD_CS47L15": "y", "CONFIG_MFD_CS47L35": "y", "CONFIG_MFD_CS47L85": "y", "CONFIG_MFD_CS47L90": "y", "CONFIG_MFD_CS47L92": "y", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_SPI": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "m", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "m", "CONFIG_MFD_MC13XXX_SPI": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "m", "CONFIG_LPC_ICH": "m", "CONFIG_LPC_SCH": "m", "CONFIG_INTEL_SOC_PMIC_BXTWC": "m", "CONFIG_INTEL_SOC_PMIC_MRFLD": "m", "CONFIG_MFD_INTEL_LPSS": "m", "CONFIG_MFD_INTEL_LPSS_ACPI": "m", "CONFIG_MFD_INTEL_LPSS_PCI": "m", "CONFIG_MFD_INTEL_PMC_BXT": "m", "CONFIG_MFD_IQS62X": "m", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "m", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "m", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_OCELOT": "m", "CONFIG_EZX_PCAP": "not set", "CONFIG_MFD_VIPERBOARD": "m", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "m", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SIMPLE_MFD_I2C": "m", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "m", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "m", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "m", "CONFIG_TPS6507X": "m", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS65912_SPI": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "m", "CONFIG_MFD_LM3533": "m", "CONFIG_MFD_TQMX86": "m", "CONFIG_MFD_VX855": "m", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_ARIZONA_SPI": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM831X_SPI": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_RAVE_SP_CORE": "not set", "CONFIG_MFD_INTEL_M10_BMC_CORE": "not set", "CONFIG_MFD_INTEL_M10_BMC_SPI": "not set", "CONFIG_MFD_INTEL_M10_BMC_PMCI": "not set", "CONFIG_REGULATOR": "y", "CONFIG_REGULATOR_DEBUG": "not set", "CONFIG_REGULATOR_FIXED_VOLTAGE": "m", "CONFIG_REGULATOR_VIRTUAL_CONSUMER": "m", "CONFIG_REGULATOR_USERSPACE_CONSUMER": "m", "CONFIG_REGULATOR_88PG86X": "m", "CONFIG_REGULATOR_ACT8865": "m", "CONFIG_REGULATOR_AD5398": "m", "CONFIG_REGULATOR_ARIZONA_LDO1": "m", "CONFIG_REGULATOR_ARIZONA_MICSUPP": "m", "CONFIG_REGULATOR_AXP20X": "m", "CONFIG_REGULATOR_DA9062": "m", "CONFIG_REGULATOR_DA9210": "m", "CONFIG_REGULATOR_DA9211": "m", "CONFIG_REGULATOR_FAN53555": "m", "CONFIG_REGULATOR_GPIO": "m", "CONFIG_REGULATOR_ISL9305": "m", "CONFIG_REGULATOR_ISL6271A": "m", "CONFIG_REGULATOR_LM363X": "m", "CONFIG_REGULATOR_LP3971": "m", "CONFIG_REGULATOR_LP3972": "m", "CONFIG_REGULATOR_LP872X": "m", "CONFIG_REGULATOR_LP8755": "m", "CONFIG_REGULATOR_LTC3589": "m", "CONFIG_REGULATOR_LTC3676": "m", "CONFIG_REGULATOR_MAX1586": "m", "CONFIG_REGULATOR_MAX8649": "m", "CONFIG_REGULATOR_MAX8660": "m", "CONFIG_REGULATOR_MAX8893": "m", "CONFIG_REGULATOR_MAX8907": "m", "CONFIG_REGULATOR_MAX8952": "m", "CONFIG_REGULATOR_MAX20086": "m", "CONFIG_REGULATOR_MAX20411": "m", "CONFIG_REGULATOR_MAX77826": "m", "CONFIG_REGULATOR_MP8859": "m", "CONFIG_REGULATOR_MT6311": "m", "CONFIG_REGULATOR_MT6315": "m", "CONFIG_REGULATOR_PCA9450": "m", "CONFIG_REGULATOR_PV88060": "m", "CONFIG_REGULATOR_PV88080": "m", "CONFIG_REGULATOR_PV88090": "m", "CONFIG_REGULATOR_PWM": "m", "CONFIG_REGULATOR_QCOM_SPMI": "m", "CONFIG_REGULATOR_QCOM_USB_VBUS": "m", "CONFIG_REGULATOR_RT4801": "m", "CONFIG_REGULATOR_RT4803": "m", "CONFIG_REGULATOR_RT4831": "m", "CONFIG_REGULATOR_RT5190A": "m", "CONFIG_REGULATOR_RT5739": "m", "CONFIG_REGULATOR_RT5759": "m", "CONFIG_REGULATOR_RT6160": "m", "CONFIG_REGULATOR_RT6190": "m", "CONFIG_REGULATOR_RT6245": "m", "CONFIG_REGULATOR_RTQ2134": "m", "CONFIG_REGULATOR_RTMV20": "m", "CONFIG_REGULATOR_RTQ6752": "m", "CONFIG_REGULATOR_SLG51000": "m", "CONFIG_REGULATOR_TPS51632": "m", "CONFIG_REGULATOR_TPS62360": "m", "CONFIG_REGULATOR_TPS65023": "m", "CONFIG_REGULATOR_TPS6507X": "m", "CONFIG_REGULATOR_TPS65132": "m", "CONFIG_REGULATOR_TPS6524X": "m", "CONFIG_REGULATOR_TPS68470": "m", "CONFIG_REGULATOR_QCOM_LABIBB": "m", "CONFIG_RC_CORE": "m", "CONFIG_LIRC": "y", "CONFIG_RC_MAP": "m", "CONFIG_RC_DECODERS": "y", "CONFIG_IR_IMON_DECODER": "m", "CONFIG_IR_JVC_DECODER": "m", "CONFIG_IR_MCE_KBD_DECODER": "m", "CONFIG_IR_NEC_DECODER": "m", "CONFIG_IR_RC5_DECODER": "m", "CONFIG_IR_RC6_DECODER": "m", "CONFIG_IR_RCMM_DECODER": "m", "CONFIG_IR_SANYO_DECODER": "m", "CONFIG_IR_SHARP_DECODER": "m", "CONFIG_IR_SONY_DECODER": "m", "CONFIG_IR_XMP_DECODER": "m", "CONFIG_RC_DEVICES": "y", "CONFIG_IR_ENE": "m", "CONFIG_IR_FINTEK": "m", "CONFIG_IR_IGORPLUGUSB": "m", "CONFIG_IR_IGUANA": "m", "CONFIG_IR_IMON": "m", "CONFIG_IR_IMON_RAW": "m", "CONFIG_IR_ITE_CIR": "m", "CONFIG_IR_MCEUSB": "m", "CONFIG_IR_NUVOTON": "m", "CONFIG_IR_REDRAT3": "m", "CONFIG_IR_SERIAL": "m", "CONFIG_IR_SERIAL_TRANSMITTER": "y", "CONFIG_IR_STREAMZAP": "m", "CONFIG_IR_TOY": "m", "CONFIG_IR_TTUSBIR": "m", "CONFIG_IR_WINBOND_CIR": "m", "CONFIG_RC_ATI_REMOTE": "m", "CONFIG_RC_LOOPBACK": "m", "CONFIG_RC_XBOX_DVD": "m", "CONFIG_CEC_CORE": "m", "CONFIG_CEC_NOTIFIER": "y", "CONFIG_CEC_PIN": "y", "CONFIG_MEDIA_CEC_RC": "y", "CONFIG_CEC_PIN_ERROR_INJ": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "y", "CONFIG_CEC_CH7322": "m", "CONFIG_CEC_CROS_EC": "m", "CONFIG_CEC_GPIO": "m", "CONFIG_CEC_SECO": "m", "CONFIG_CEC_SECO_RC": "not set", "CONFIG_USB_PULSE8_CEC": "m", "CONFIG_USB_RAINSHADOW_CEC": "m", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "y", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "y", "CONFIG_MEDIA_RADIO_SUPPORT": "y", "CONFIG_MEDIA_SDR_SUPPORT": "y", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_DVB_CORE": "m", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_VIDEO_TUNER": "m", "CONFIG_V4L2_FLASH_LED_CLASS": "m", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_VIDEOBUF_GEN": "m", "CONFIG_VIDEOBUF_DMA_SG": "m", "CONFIG_MEDIA_CONTROLLER_DVB": "y", "CONFIG_DVB_MMAP": "not set", "CONFIG_DVB_NET": "y", "CONFIG_DVB_MAX_ADAPTERS": "8", "CONFIG_DVB_DYNAMIC_MINORS": "y", "CONFIG_DVB_DEMUX_SECTION_LOSS_LOG": "not set", "CONFIG_DVB_ULE_DEBUG": "not set", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "m", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "m", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "m", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "m", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_GO7007": "m", "CONFIG_VIDEO_GO7007_USB": "m", "CONFIG_VIDEO_GO7007_LOADER": "m", "CONFIG_VIDEO_GO7007_USB_S2250_BOARD": "m", "CONFIG_VIDEO_HDPVR": "m", "CONFIG_VIDEO_PVRUSB2": "m", "CONFIG_VIDEO_PVRUSB2_SYSFS": "y", "CONFIG_VIDEO_PVRUSB2_DVB": "y", "CONFIG_VIDEO_PVRUSB2_DEBUGIFC": "not set", "CONFIG_VIDEO_STK1160_COMMON": "m", "CONFIG_VIDEO_STK1160": "m", "CONFIG_VIDEO_AU0828": "m", "CONFIG_VIDEO_AU0828_V4L2": "y", "CONFIG_VIDEO_AU0828_RC": "y", "CONFIG_VIDEO_CX231XX": "m", "CONFIG_VIDEO_CX231XX_RC": "y", "CONFIG_VIDEO_CX231XX_ALSA": "m", "CONFIG_VIDEO_CX231XX_DVB": "m", "CONFIG_DVB_AS102": "m", "CONFIG_DVB_B2C2_FLEXCOP_USB": "m", "CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG": "not set", "CONFIG_DVB_USB_V2": "m", "CONFIG_DVB_USB_AF9015": "m", "CONFIG_DVB_USB_AF9035": "m", "CONFIG_DVB_USB_ANYSEE": "m", "CONFIG_DVB_USB_AU6610": "m", "CONFIG_DVB_USB_AZ6007": "m", "CONFIG_DVB_USB_CE6230": "m", "CONFIG_DVB_USB_DVBSKY": "m", "CONFIG_DVB_USB_EC168": "m", "CONFIG_DVB_USB_GL861": "m", "CONFIG_DVB_USB_LME2510": "m", "CONFIG_DVB_USB_MXL111SF": "m", "CONFIG_DVB_USB_RTL28XXU": "m", "CONFIG_DVB_USB_ZD1301": "m", "CONFIG_DVB_USB": "m", "CONFIG_DVB_USB_DEBUG": "not set", "CONFIG_DVB_USB_A800": "m", "CONFIG_DVB_USB_AF9005": "m", "CONFIG_DVB_USB_AF9005_REMOTE": "m", "CONFIG_DVB_USB_AZ6027": "m", "CONFIG_DVB_USB_CINERGY_T2": "m", "CONFIG_DVB_USB_CXUSB": "m", "CONFIG_DVB_USB_CXUSB_ANALOG": "y", "CONFIG_DVB_USB_DIB0700": "m", "CONFIG_DVB_USB_DIB3000MC": "m", "CONFIG_DVB_USB_DIBUSB_MB": "m", "CONFIG_DVB_USB_DIBUSB_MB_FAULTY": "not set", "CONFIG_DVB_USB_DIBUSB_MC": "m", "CONFIG_DVB_USB_DIGITV": "m", "CONFIG_DVB_USB_DTT200U": "m", "CONFIG_DVB_USB_DTV5100": "m", "CONFIG_DVB_USB_DW2102": "m", "CONFIG_DVB_USB_GP8PSK": "m", "CONFIG_DVB_USB_M920X": "m", "CONFIG_DVB_USB_NOVA_T_USB2": "m", "CONFIG_DVB_USB_OPERA1": "m", "CONFIG_DVB_USB_PCTV452E": "m", "CONFIG_DVB_USB_TECHNISAT_USB2": "m", "CONFIG_DVB_USB_TTUSB2": "m", "CONFIG_DVB_USB_UMT_010": "m", "CONFIG_DVB_USB_VP702X": "m", "CONFIG_DVB_USB_VP7045": "m", "CONFIG_SMS_USB_DRV": "m", "CONFIG_DVB_TTUSB_BUDGET": "m", "CONFIG_DVB_TTUSB_DEC": "m", "CONFIG_VIDEO_EM28XX": "m", "CONFIG_VIDEO_EM28XX_V4L2": "m", "CONFIG_VIDEO_EM28XX_ALSA": "m", "CONFIG_VIDEO_EM28XX_DVB": "m", "CONFIG_VIDEO_EM28XX_RC": "m", "CONFIG_USB_AIRSPY": "m", "CONFIG_USB_HACKRF": "m", "CONFIG_USB_MSI2500": "m", "CONFIG_MEDIA_PCI_SUPPORT": "y", "CONFIG_VIDEO_SOLO6X10": "m", "CONFIG_VIDEO_TW5864": "m", "CONFIG_VIDEO_TW68": "m", "CONFIG_VIDEO_TW686X": "m", "CONFIG_VIDEO_ZORAN": "m", "CONFIG_VIDEO_ZORAN_DC30": "y", "CONFIG_VIDEO_ZORAN_ZR36060": "y", "CONFIG_VIDEO_ZORAN_BUZ": "y", "CONFIG_VIDEO_ZORAN_DC10": "y", "CONFIG_VIDEO_ZORAN_LML33": "y", "CONFIG_VIDEO_ZORAN_LML33R10": "y", "CONFIG_VIDEO_ZORAN_AVS6EYES": "y", "CONFIG_VIDEO_DT3155": "m", "CONFIG_VIDEO_IVTV": "m", "CONFIG_VIDEO_IVTV_ALSA": "m", "CONFIG_VIDEO_FB_IVTV": "m", "CONFIG_VIDEO_FB_IVTV_FORCE_PAT": "not set", "CONFIG_VIDEO_HEXIUM_GEMINI": "m", "CONFIG_VIDEO_HEXIUM_ORION": "m", "CONFIG_VIDEO_MXB": "m", "CONFIG_VIDEO_BT848": "m", "CONFIG_DVB_BT8XX": "m", "CONFIG_VIDEO_COBALT": "not set", "CONFIG_VIDEO_CX18": "m", "CONFIG_VIDEO_CX18_ALSA": "m", "CONFIG_VIDEO_CX23885": "m", "CONFIG_MEDIA_ALTERA_CI": "m", "CONFIG_VIDEO_CX25821": "m", "CONFIG_VIDEO_CX25821_ALSA": "m", "CONFIG_VIDEO_CX88": "m", "CONFIG_VIDEO_CX88_ALSA": "m", "CONFIG_VIDEO_CX88_BLACKBIRD": "m", "CONFIG_VIDEO_CX88_DVB": "m", "CONFIG_VIDEO_CX88_ENABLE_VP3054": "y", "CONFIG_VIDEO_CX88_VP3054": "m", "CONFIG_VIDEO_CX88_MPEG": "m", "CONFIG_VIDEO_SAA7134": "m", "CONFIG_VIDEO_SAA7134_ALSA": "m", "CONFIG_VIDEO_SAA7134_RC": "y", "CONFIG_VIDEO_SAA7134_DVB": "m", "CONFIG_VIDEO_SAA7134_GO7007": "m", "CONFIG_VIDEO_SAA7164": "m", "CONFIG_DVB_B2C2_FLEXCOP_PCI": "m", "CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG": "not set", "CONFIG_DVB_DDBRIDGE": "m", "CONFIG_DVB_DDBRIDGE_MSIENABLE": "not set", "CONFIG_DVB_DM1105": "m", "CONFIG_MANTIS_CORE": "m", "CONFIG_DVB_MANTIS": "m", "CONFIG_DVB_HOPPER": "m", "CONFIG_DVB_NETUP_UNIDVB": "m", "CONFIG_DVB_NGENE": "m", "CONFIG_DVB_PLUTO2": "m", "CONFIG_DVB_PT1": "m", "CONFIG_DVB_PT3": "m", "CONFIG_DVB_SMIPCIE": "m", "CONFIG_DVB_BUDGET_CORE": "m", "CONFIG_DVB_BUDGET": "m", "CONFIG_DVB_BUDGET_CI": "m", "CONFIG_DVB_BUDGET_AV": "m", "CONFIG_IPU_BRIDGE": "m", "CONFIG_VIDEO_IPU3_CIO2": "m", "CONFIG_CIO2_BRIDGE": "y", "CONFIG_RADIO_ADAPTERS": "m", "CONFIG_RADIO_MAXIRADIO": "m", "CONFIG_RADIO_SAA7706H": "m", "CONFIG_RADIO_SHARK": "m", "CONFIG_RADIO_SHARK2": "m", "CONFIG_RADIO_SI4713": "m", "CONFIG_RADIO_TEA575X": "m", "CONFIG_RADIO_TEA5764": "m", "CONFIG_RADIO_TEF6862": "m", "CONFIG_RADIO_WL1273": "m", "CONFIG_USB_DSBR": "m", "CONFIG_USB_KEENE": "m", "CONFIG_USB_MA901": "m", "CONFIG_USB_MR800": "m", "CONFIG_USB_RAREMONO": "m", "CONFIG_RADIO_SI470X": "m", "CONFIG_USB_SI470X": "m", "CONFIG_I2C_SI470X": "not set", "CONFIG_USB_SI4713": "m", "CONFIG_PLATFORM_SI4713": "m", "CONFIG_I2C_SI4713": "m", "CONFIG_RADIO_WL128X": "m", "CONFIG_DVB_FIREDTV": "m", "CONFIG_DVB_FIREDTV_INPUT": "y", "CONFIG_MEDIA_COMMON_OPTIONS": "y", "CONFIG_CYPRESS_FIRMWARE": "m", "CONFIG_TTPCI_EEPROM": "m", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEO_CX2341X": "m", "CONFIG_VIDEO_TVEEPROM": "m", "CONFIG_DVB_B2C2_FLEXCOP": "m", "CONFIG_VIDEO_SAA7146": "m", "CONFIG_VIDEO_SAA7146_VV": "m", "CONFIG_SMS_SIANO_MDTV": "m", "CONFIG_SMS_SIANO_RC": "y", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_DMA_CONTIG": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_VIDEOBUF2_DMA_SG": "m", "CONFIG_VIDEOBUF2_DVB": "m", "CONFIG_MEDIA_ATTACH": "y", "CONFIG_VIDEO_IR_I2C": "m", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_APTINA_PLL": "m", "CONFIG_VIDEO_CCS_PLL": "m", "CONFIG_VIDEO_AR0521": "m", "CONFIG_VIDEO_HI556": "m", "CONFIG_VIDEO_HI846": "m", "CONFIG_VIDEO_HI847": "m", "CONFIG_VIDEO_IMX208": "m", "CONFIG_VIDEO_IMX214": "m", "CONFIG_VIDEO_IMX219": "m", "CONFIG_VIDEO_IMX258": "m", "CONFIG_VIDEO_IMX274": "m", "CONFIG_VIDEO_IMX290": "m", "CONFIG_VIDEO_IMX296": "m", "CONFIG_VIDEO_IMX319": "m", "CONFIG_VIDEO_IMX355": "m", "CONFIG_VIDEO_MAX9271_LIB": "m", "CONFIG_VIDEO_MT9M001": "m", "CONFIG_VIDEO_MT9M111": "m", "CONFIG_VIDEO_MT9P031": "m", "CONFIG_VIDEO_MT9T112": "m", "CONFIG_VIDEO_MT9V011": "m", "CONFIG_VIDEO_MT9V032": "m", "CONFIG_VIDEO_MT9V111": "m", "CONFIG_VIDEO_OG01A1B": "m", "CONFIG_VIDEO_OV02A10": "m", "CONFIG_VIDEO_OV08D10": "m", "CONFIG_VIDEO_OV08X40": "m", "CONFIG_VIDEO_OV13858": "m", "CONFIG_VIDEO_OV13B10": "m", "CONFIG_VIDEO_OV2640": "m", "CONFIG_VIDEO_OV2659": "m", "CONFIG_VIDEO_OV2680": "m", "CONFIG_VIDEO_OV2685": "m", "CONFIG_VIDEO_OV2740": "m", "CONFIG_VIDEO_OV4689": "m", "CONFIG_VIDEO_OV5647": "m", "CONFIG_VIDEO_OV5648": "m", "CONFIG_VIDEO_OV5670": "m", "CONFIG_VIDEO_OV5675": "m", "CONFIG_VIDEO_OV5693": "m", "CONFIG_VIDEO_OV5695": "m", "CONFIG_VIDEO_OV6650": "m", "CONFIG_VIDEO_OV7251": "m", "CONFIG_VIDEO_OV7640": "m", "CONFIG_VIDEO_OV7670": "m", "CONFIG_VIDEO_OV772X": "m", "CONFIG_VIDEO_OV7740": "m", "CONFIG_VIDEO_OV8856": "m", "CONFIG_VIDEO_OV8858": "m", "CONFIG_VIDEO_OV8865": "m", "CONFIG_VIDEO_OV9640": "m", "CONFIG_VIDEO_OV9650": "m", "CONFIG_VIDEO_OV9734": "m", "CONFIG_VIDEO_RDACM20": "m", "CONFIG_VIDEO_RDACM21": "m", "CONFIG_VIDEO_RJ54N1": "m", "CONFIG_VIDEO_S5C73M3": "m", "CONFIG_VIDEO_S5K5BAF": "m", "CONFIG_VIDEO_S5K6A3": "m", "CONFIG_VIDEO_CCS": "m", "CONFIG_VIDEO_ET8EK8": "m", "CONFIG_VIDEO_AD5820": "m", "CONFIG_VIDEO_AK7375": "m", "CONFIG_VIDEO_DW9714": "m", "CONFIG_VIDEO_DW9768": "m", "CONFIG_VIDEO_DW9807_VCM": "m", "CONFIG_VIDEO_ADP1653": "m", "CONFIG_VIDEO_LM3560": "m", "CONFIG_VIDEO_LM3646": "m", "CONFIG_VIDEO_CS3308": "m", "CONFIG_VIDEO_CS5345": "m", "CONFIG_VIDEO_CS53L32A": "m", "CONFIG_VIDEO_MSP3400": "m", "CONFIG_VIDEO_SONY_BTF_MPX": "m", "CONFIG_VIDEO_TDA1997X": "m", "CONFIG_VIDEO_TDA7432": "m", "CONFIG_VIDEO_TDA9840": "m", "CONFIG_VIDEO_TEA6415C": "m", "CONFIG_VIDEO_TEA6420": "m", "CONFIG_VIDEO_TLV320AIC23B": "m", "CONFIG_VIDEO_TVAUDIO": "m", "CONFIG_VIDEO_UDA1342": "m", "CONFIG_VIDEO_VP27SMPX": "m", "CONFIG_VIDEO_WM8739": "m", "CONFIG_VIDEO_WM8775": "m", "CONFIG_VIDEO_SAA6588": "m", "CONFIG_VIDEO_ADV7180": "m", "CONFIG_VIDEO_ADV7183": "m", "CONFIG_VIDEO_ADV7604": "m", "CONFIG_VIDEO_ADV7604_CEC": "y", "CONFIG_VIDEO_ADV7842": "m", "CONFIG_VIDEO_ADV7842_CEC": "y", "CONFIG_VIDEO_BT819": "m", "CONFIG_VIDEO_BT856": "m", "CONFIG_VIDEO_BT866": "m", "CONFIG_VIDEO_KS0127": "m", "CONFIG_VIDEO_ML86V7667": "m", "CONFIG_VIDEO_SAA7110": "m", "CONFIG_VIDEO_SAA711X": "m", "CONFIG_VIDEO_TC358743": "m", "CONFIG_VIDEO_TC358743_CEC": "y", "CONFIG_VIDEO_TC358746": "m", "CONFIG_VIDEO_TVP514X": "m", "CONFIG_VIDEO_TVP5150": "m", "CONFIG_VIDEO_TVP7002": "m", "CONFIG_VIDEO_TW2804": "m", "CONFIG_VIDEO_TW9903": "m", "CONFIG_VIDEO_TW9906": "m", "CONFIG_VIDEO_TW9910": "m", "CONFIG_VIDEO_VPX3220": "m", "CONFIG_VIDEO_SAA717X": "m", "CONFIG_VIDEO_CX25840": "m", "CONFIG_VIDEO_ADV7170": "m", "CONFIG_VIDEO_ADV7175": "m", "CONFIG_VIDEO_ADV7343": "m", "CONFIG_VIDEO_ADV7393": "m", "CONFIG_VIDEO_ADV7511": "m", "CONFIG_VIDEO_ADV7511_CEC": "y", "CONFIG_VIDEO_AK881X": "m", "CONFIG_VIDEO_SAA7127": "m", "CONFIG_VIDEO_SAA7185": "m", "CONFIG_VIDEO_THS8200": "m", "CONFIG_VIDEO_UPD64031A": "m", "CONFIG_VIDEO_UPD64083": "m", "CONFIG_VIDEO_SAA6752HS": "m", "CONFIG_SDR_MAX2175": "m", "CONFIG_VIDEO_I2C": "m", "CONFIG_VIDEO_M52790": "m", "CONFIG_VIDEO_ST_MIPID02": "not set", "CONFIG_VIDEO_THS7303": "m", "CONFIG_CXD2880_SPI_DRV": "m", "CONFIG_VIDEO_GS1662": "m", "CONFIG_MEDIA_TUNER": "m", "CONFIG_MEDIA_TUNER_E4000": "m", "CONFIG_MEDIA_TUNER_FC0011": "m", "CONFIG_MEDIA_TUNER_FC0012": "m", "CONFIG_MEDIA_TUNER_FC0013": "m", "CONFIG_MEDIA_TUNER_FC2580": "m", "CONFIG_MEDIA_TUNER_IT913X": "m", "CONFIG_MEDIA_TUNER_M88RS6000T": "m", "CONFIG_MEDIA_TUNER_MAX2165": "m", "CONFIG_MEDIA_TUNER_MC44S803": "m", "CONFIG_MEDIA_TUNER_MSI001": "m", "CONFIG_MEDIA_TUNER_MT2060": "m", "CONFIG_MEDIA_TUNER_MT2063": "m", "CONFIG_MEDIA_TUNER_MT20XX": "m", "CONFIG_MEDIA_TUNER_MT2131": "m", "CONFIG_MEDIA_TUNER_MT2266": "m", "CONFIG_MEDIA_TUNER_MXL301RF": "m", "CONFIG_MEDIA_TUNER_MXL5005S": "m", "CONFIG_MEDIA_TUNER_MXL5007T": "m", "CONFIG_MEDIA_TUNER_QM1D1B0004": "m", "CONFIG_MEDIA_TUNER_QM1D1C0042": "m", "CONFIG_MEDIA_TUNER_QT1010": "m", "CONFIG_MEDIA_TUNER_R820T": "m", "CONFIG_MEDIA_TUNER_SI2157": "m", "CONFIG_MEDIA_TUNER_SIMPLE": "m", "CONFIG_MEDIA_TUNER_TDA18212": "m", "CONFIG_MEDIA_TUNER_TDA18218": "m", "CONFIG_MEDIA_TUNER_TDA18250": "m", "CONFIG_MEDIA_TUNER_TDA18271": "m", "CONFIG_MEDIA_TUNER_TDA827X": "m", "CONFIG_MEDIA_TUNER_TDA8290": "m", "CONFIG_MEDIA_TUNER_TDA9887": "m", "CONFIG_MEDIA_TUNER_TEA5761": "m", "CONFIG_MEDIA_TUNER_TEA5767": "m", "CONFIG_MEDIA_TUNER_TUA9001": "m", "CONFIG_MEDIA_TUNER_XC2028": "m", "CONFIG_MEDIA_TUNER_XC4000": "m", "CONFIG_MEDIA_TUNER_XC5000": "m", "CONFIG_DVB_M88DS3103": "m", "CONFIG_DVB_MXL5XX": "m", "CONFIG_DVB_STB0899": "m", "CONFIG_DVB_STB6100": "m", "CONFIG_DVB_STV090x": "m", "CONFIG_DVB_STV0910": "m", "CONFIG_DVB_STV6110x": "m", "CONFIG_DVB_STV6111": "m", "CONFIG_DVB_DRXK": "m", "CONFIG_DVB_MN88472": "m", "CONFIG_DVB_MN88473": "m", "CONFIG_DVB_SI2165": "m", "CONFIG_DVB_TDA18271C2DD": "m", "CONFIG_DVB_CX24110": "m", "CONFIG_DVB_CX24116": "m", "CONFIG_DVB_CX24117": "m", "CONFIG_DVB_CX24120": "m", "CONFIG_DVB_CX24123": "m", "CONFIG_DVB_DS3000": "m", "CONFIG_DVB_MB86A16": "m", "CONFIG_DVB_MT312": "m", "CONFIG_DVB_S5H1420": "m", "CONFIG_DVB_SI21XX": "m", "CONFIG_DVB_STB6000": "m", "CONFIG_DVB_STV0288": "m", "CONFIG_DVB_STV0299": "m", "CONFIG_DVB_STV0900": "m", "CONFIG_DVB_STV6110": "m", "CONFIG_DVB_TDA10071": "m", "CONFIG_DVB_TDA10086": "m", "CONFIG_DVB_TDA8083": "m", "CONFIG_DVB_TDA8261": "m", "CONFIG_DVB_TDA826X": "m", "CONFIG_DVB_TS2020": "m", "CONFIG_DVB_TUA6100": "m", "CONFIG_DVB_TUNER_CX24113": "m", "CONFIG_DVB_TUNER_ITD1000": "m", "CONFIG_DVB_VES1X93": "m", "CONFIG_DVB_ZL10036": "m", "CONFIG_DVB_ZL10039": "m", "CONFIG_DVB_AF9013": "m", "CONFIG_DVB_AS102_FE": "m", "CONFIG_DVB_CX22700": "m", "CONFIG_DVB_CX22702": "m", "CONFIG_DVB_CXD2820R": "m", "CONFIG_DVB_CXD2841ER": "m", "CONFIG_DVB_DIB3000MB": "m", "CONFIG_DVB_DIB3000MC": "m", "CONFIG_DVB_DIB7000M": "m", "CONFIG_DVB_DIB7000P": "m", "CONFIG_DVB_DIB9000": "m", "CONFIG_DVB_DRXD": "m", "CONFIG_DVB_EC100": "m", "CONFIG_DVB_GP8PSK_FE": "m", "CONFIG_DVB_L64781": "m", "CONFIG_DVB_MT352": "m", "CONFIG_DVB_NXT6000": "m", "CONFIG_DVB_RTL2830": "m", "CONFIG_DVB_RTL2832": "m", "CONFIG_DVB_RTL2832_SDR": "m", "CONFIG_DVB_S5H1432": "m", "CONFIG_DVB_SI2168": "m", "CONFIG_DVB_SP887X": "m", "CONFIG_DVB_STV0367": "m", "CONFIG_DVB_TDA10048": "m", "CONFIG_DVB_TDA1004X": "m", "CONFIG_DVB_ZD1301_DEMOD": "m", "CONFIG_DVB_ZL10353": "m", "CONFIG_DVB_CXD2880": "m", "CONFIG_DVB_STV0297": "m", "CONFIG_DVB_TDA10021": "m", "CONFIG_DVB_TDA10023": "m", "CONFIG_DVB_VES1820": "m", "CONFIG_DVB_AU8522": "m", "CONFIG_DVB_AU8522_DTV": "m", "CONFIG_DVB_AU8522_V4L": "m", "CONFIG_DVB_BCM3510": "m", "CONFIG_DVB_LG2160": "m", "CONFIG_DVB_LGDT3305": "m", "CONFIG_DVB_LGDT3306A": "m", "CONFIG_DVB_LGDT330X": "m", "CONFIG_DVB_MXL692": "m", "CONFIG_DVB_NXT200X": "m", "CONFIG_DVB_OR51132": "m", "CONFIG_DVB_OR51211": "m", "CONFIG_DVB_S5H1409": "m", "CONFIG_DVB_S5H1411": "m", "CONFIG_DVB_DIB8000": "m", "CONFIG_DVB_MB86A20S": "m", "CONFIG_DVB_S921": "m", "CONFIG_DVB_MN88443X": "m", "CONFIG_DVB_TC90522": "m", "CONFIG_DVB_PLL": "m", "CONFIG_DVB_TUNER_DIB0070": "m", "CONFIG_DVB_TUNER_DIB0090": "m", "CONFIG_DVB_A8293": "m", "CONFIG_DVB_AF9033": "m", "CONFIG_DVB_ASCOT2E": "m", "CONFIG_DVB_ATBM8830": "m", "CONFIG_DVB_HELENE": "m", "CONFIG_DVB_HORUS3A": "m", "CONFIG_DVB_ISL6405": "m", "CONFIG_DVB_ISL6421": "m", "CONFIG_DVB_ISL6423": "m", "CONFIG_DVB_IX2505V": "m", "CONFIG_DVB_LGS8GL5": "m", "CONFIG_DVB_LGS8GXX": "m", "CONFIG_DVB_LNBH25": "m", "CONFIG_DVB_LNBH29": "m", "CONFIG_DVB_LNBP21": "m", "CONFIG_DVB_LNBP22": "m", "CONFIG_DVB_M88RS2000": "m", "CONFIG_DVB_TDA665x": "m", "CONFIG_DVB_DRX39XYJ": "m", "CONFIG_DVB_CXD2099": "m", "CONFIG_DVB_SP2": "m", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_VIDEO_CMDLINE": "y", "CONFIG_VIDEO_NOMODESET": "y", "CONFIG_AUXDISPLAY": "y", "CONFIG_CHARLCD": "m", "CONFIG_HD44780_COMMON": "m", "CONFIG_HD44780": "m", "CONFIG_KS0108": "m", "CONFIG_KS0108_PORT": "0x378", "CONFIG_KS0108_DELAY": "2", "CONFIG_CFAG12864B": "m", "CONFIG_CFAG12864B_RATE": "20", "CONFIG_IMG_ASCII_LCD": "not set", "CONFIG_HT16K33": "not set", "CONFIG_LCD2S": "not set", "CONFIG_PARPORT_PANEL": "m", "CONFIG_PANEL_PARPORT": "0", "CONFIG_PANEL_PROFILE": "5", "CONFIG_PANEL_CHANGE_MESSAGE": "not set", "CONFIG_CHARLCD_BL_OFF": "not set", "CONFIG_CHARLCD_BL_ON": "not set", "CONFIG_CHARLCD_BL_FLASH": "y", "CONFIG_PANEL": "m", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "y", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "y", "CONFIG_AGP_VIA": "y", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "y", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS": "not set", "CONFIG_DRM_DEBUG_MODESET_LOCK": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM": "not set", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "y", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_DP_AUX_CHARDEV": "y", "CONFIG_DRM_DP_CEC": "y", "CONFIG_DRM_TTM": "m", "CONFIG_DRM_EXEC": "m", "CONFIG_DRM_GPUVM": "m", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "m", "CONFIG_DRM_TTM_HELPER": "m", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_SUBALLOC_HELPER": "m", "CONFIG_DRM_SCHED": "m", "CONFIG_DRM_I2C_CH7006": "m", "CONFIG_DRM_I2C_SIL164": "m", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "m", "CONFIG_DRM_RADEON": "m", "CONFIG_DRM_RADEON_USERPTR": "y", "CONFIG_DRM_AMDGPU": "m", "CONFIG_DRM_AMDGPU_SI": "y", "CONFIG_DRM_AMDGPU_CIK": "y", "CONFIG_DRM_AMDGPU_USERPTR": "y", "CONFIG_DRM_AMDGPU_WERROR": "not set", "CONFIG_DRM_AMD_ACP": "y", "CONFIG_DRM_AMD_DC": "y", "CONFIG_DRM_AMD_DC_FP": "y", "CONFIG_DRM_AMD_DC_SI": "y", "CONFIG_DEBUG_KERNEL_DC": "not set", "CONFIG_DRM_AMD_SECURE_DISPLAY": "y", "CONFIG_HSA_AMD": "y", "CONFIG_HSA_AMD_SVM": "y", "CONFIG_HSA_AMD_P2P": "y", "CONFIG_DRM_NOUVEAU": "m", "CONFIG_NOUVEAU_DEBUG": "5", "CONFIG_NOUVEAU_DEBUG_DEFAULT": "3", "CONFIG_NOUVEAU_DEBUG_MMU": "not set", "CONFIG_NOUVEAU_DEBUG_PUSH": "not set", "CONFIG_DRM_NOUVEAU_BACKLIGHT": "y", "CONFIG_DRM_NOUVEAU_SVM": "y", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_GVT_KVMGT": "m", "CONFIG_DRM_I915_PXP": "y", "CONFIG_DRM_I915_WERROR": "not set", "CONFIG_DRM_I915_DEBUG": "not set", "CONFIG_DRM_I915_DEBUG_MMIO": "not set", "CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS": "not set", "CONFIG_DRM_I915_SW_FENCE_CHECK_DAG": "not set", "CONFIG_DRM_I915_DEBUG_GUC": "not set", "CONFIG_DRM_I915_SELFTEST": "not set", "CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS": "not set", "CONFIG_DRM_I915_DEBUG_VBLANK_EVADE": "not set", "CONFIG_DRM_I915_DEBUG_RUNTIME_PM": "not set", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_I915_GVT": "y", "CONFIG_DRM_VGEM": "m", "CONFIG_DRM_VKMS": "m", "CONFIG_DRM_VMWGFX": "m", "CONFIG_DRM_VMWGFX_MKSSTATS": "not set", "CONFIG_DRM_GMA500": "m", "CONFIG_DRM_UDL": "m", "CONFIG_DRM_AST": "m", "CONFIG_DRM_MGAG200": "m", "CONFIG_DRM_QXL": "m", "CONFIG_DRM_VIRTIO_GPU": "m", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_AUO_A030JTN01": "not set", "CONFIG_DRM_PANEL_ORISETECH_OTA5601A": "not set", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "m", "CONFIG_DRM_PANEL_WIDECHIPS_WS2401": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_LOONGSON": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "m", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "m", "CONFIG_DRM_PANEL_MIPI_DBI": "not set", "CONFIG_DRM_SIMPLEDRM": "y", "CONFIG_TINYDRM_HX8357D": "not set", "CONFIG_TINYDRM_ILI9163": "not set", "CONFIG_TINYDRM_ILI9225": "not set", "CONFIG_TINYDRM_ILI9341": "not set", "CONFIG_TINYDRM_ILI9486": "not set", "CONFIG_TINYDRM_MI0283QT": "not set", "CONFIG_TINYDRM_REPAPER": "not set", "CONFIG_TINYDRM_ST7586": "not set", "CONFIG_TINYDRM_ST7735R": "not set", "CONFIG_DRM_XEN": "y", "CONFIG_DRM_XEN_FRONTEND": "m", "CONFIG_DRM_VBOXVIDEO": "m", "CONFIG_DRM_GUD": "m", "CONFIG_DRM_SSD130X": "m", "CONFIG_DRM_SSD130X_I2C": "m", "CONFIG_DRM_SSD130X_SPI": "m", "CONFIG_DRM_HYPERV": "m", "CONFIG_DRM_LEGACY": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_DRM_LIB_RANDOM": "not set", "CONFIG_DRM_PRIVACY_SCREEN": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "y", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_LE80578": "not set", "CONFIG_FB_INTEL": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "m", "CONFIG_FB_VIRTUAL": "m", "CONFIG_XEN_FBDEV_FRONTEND": "m", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_HYPERV": "not set", "CONFIG_FB_SSD1307": "m", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "y", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYS_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_BACKLIGHT": "m", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "y", "CONFIG_LCD_CLASS_DEVICE": "m", "CONFIG_LCD_L4F00242T03": "not set", "CONFIG_LCD_LMS283GF05": "not set", "CONFIG_LCD_LTV350QV": "not set", "CONFIG_LCD_ILI922X": "not set", "CONFIG_LCD_ILI9320": "not set", "CONFIG_LCD_TDO24M": "not set", "CONFIG_LCD_VGG2432A4": "not set", "CONFIG_LCD_PLATFORM": "m", "CONFIG_LCD_AMS369FG06": "not set", "CONFIG_LCD_LMS501KF03": "not set", "CONFIG_LCD_HX8357": "not set", "CONFIG_LCD_OTM3225A": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "y", "CONFIG_BACKLIGHT_KTD253": "m", "CONFIG_BACKLIGHT_KTZ8866": "m", "CONFIG_BACKLIGHT_LM3533": "m", "CONFIG_BACKLIGHT_PWM": "m", "CONFIG_BACKLIGHT_APPLE": "m", "CONFIG_BACKLIGHT_QCOM_WLED": "m", "CONFIG_BACKLIGHT_RT4831": "m", "CONFIG_BACKLIGHT_SAHARA": "m", "CONFIG_BACKLIGHT_ADP8860": "m", "CONFIG_BACKLIGHT_ADP8870": "m", "CONFIG_BACKLIGHT_LM3630A": "m", "CONFIG_BACKLIGHT_LM3639": "m", "CONFIG_BACKLIGHT_LP855X": "m", "CONFIG_BACKLIGHT_GPIO": "m", "CONFIG_BACKLIGHT_LV5207LP": "m", "CONFIG_BACKLIGHT_BD6107": "m", "CONFIG_BACKLIGHT_ARCXCNN": "m", "CONFIG_VGASTATE": "not set", "CONFIG_VIDEOMODE_HELPERS": "y", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "y", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "y", "CONFIG_DRM_ACCEL_HABANALABS": "m", "CONFIG_DRM_ACCEL_IVPU": "m", "CONFIG_DRM_ACCEL_QAIC": "m", "CONFIG_SOUND": "m", "CONFIG_SOUND_OSS_CORE": "y", "CONFIG_SOUND_OSS_CORE_PRECLAIM": "not set", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_PCM_ELD": "y", "CONFIG_SND_DMAENGINE_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_UMP": "m", "CONFIG_SND_UMP_LEGACY_RAWMIDI": "y", "CONFIG_SND_COMPRESS_OFFLOAD": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "y", "CONFIG_SND_MIXER_OSS": "m", "CONFIG_SND_PCM_OSS": "m", "CONFIG_SND_PCM_OSS_PLUGINS": "y", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "y", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_VERBOSE_PRINTK": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "y", "CONFIG_SND_DEBUG_VERBOSE": "not set", "CONFIG_SND_PCM_XRUN_DEBUG": "y", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_CTL_DEBUG": "not set", "CONFIG_SND_JACK_INJECTION_DEBUG": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "m", "CONFIG_SND_SEQUENCER_OSS": "m", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "y", "CONFIG_SND_SEQ_UMP_CLIENT": "m", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_OPL4_LIB_SEQ": "not set", "CONFIG_SND_VX_LIB": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "m", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_VIRMIDI": "m", "CONFIG_SND_MTPAV": "m", "CONFIG_SND_MTS64": "m", "CONFIG_SND_SERIAL_U16550": "m", "CONFIG_SND_MPU401": "m", "CONFIG_SND_PORTMAN2X4": "m", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_SB_COMMON": "m", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "m", "CONFIG_SND_ALS300": "m", "CONFIG_SND_ALS4000": "m", "CONFIG_SND_ALI5451": "m", "CONFIG_SND_ASIHPI": "m", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "m", "CONFIG_SND_AU8820": "m", "CONFIG_SND_AU8830": "m", "CONFIG_SND_AW2": "m", "CONFIG_SND_AZT3328": "m", "CONFIG_SND_BT87X": "m", "CONFIG_SND_BT87X_OVERCLOCK": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "m", "CONFIG_SND_CS46XX": "m", "CONFIG_SND_CS46XX_NEW_DSP": "y", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "m", "CONFIG_SND_GINA20": "m", "CONFIG_SND_LAYLA20": "m", "CONFIG_SND_DARLA24": "m", "CONFIG_SND_GINA24": "m", "CONFIG_SND_LAYLA24": "m", "CONFIG_SND_MONA": "m", "CONFIG_SND_MIA": "m", "CONFIG_SND_ECHO3G": "m", "CONFIG_SND_INDIGO": "m", "CONFIG_SND_INDIGOIO": "m", "CONFIG_SND_INDIGODJ": "m", "CONFIG_SND_INDIGOIOX": "m", "CONFIG_SND_INDIGODJX": "m", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "m", "CONFIG_SND_ES1938": "m", "CONFIG_SND_ES1968": "m", "CONFIG_SND_ES1968_INPUT": "y", "CONFIG_SND_ES1968_RADIO": "y", "CONFIG_SND_FM801": "m", "CONFIG_SND_FM801_TEA575X_BOOL": "y", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "m", "CONFIG_SND_KORG1212": "m", "CONFIG_SND_LOLA": "m", "CONFIG_SND_LX6464ES": "m", "CONFIG_SND_MAESTRO3": "m", "CONFIG_SND_MAESTRO3_INPUT": "y", "CONFIG_SND_MIXART": "m", "CONFIG_SND_NM256": "m", "CONFIG_SND_PCXHR": "m", "CONFIG_SND_RIPTIDE": "m", "CONFIG_SND_RME32": "m", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "m", "CONFIG_SND_TRIDENT": "m", "CONFIG_SND_VIA82XX": "m", "CONFIG_SND_VIA82XX_MODEM": "m", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "m", "CONFIG_SND_YMFPCI": "m", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "y", "CONFIG_SND_HDA_RECONFIG": "y", "CONFIG_SND_HDA_INPUT_BEEP": "y", "CONFIG_SND_HDA_INPUT_BEEP_MODE": "1", "CONFIG_SND_HDA_PATCH_LOADER": "y", "CONFIG_SND_HDA_CIRRUS_SCODEC": "m", "CONFIG_SND_HDA_SCODEC_CS35L41": "m", "CONFIG_SND_HDA_CS_DSP_CONTROLS": "m", "CONFIG_SND_HDA_SCODEC_CS35L41_I2C": "m", "CONFIG_SND_HDA_SCODEC_CS35L41_SPI": "m", "CONFIG_SND_HDA_SCODEC_CS35L56": "m", "CONFIG_SND_HDA_SCODEC_CS35L56_I2C": "m", "CONFIG_SND_HDA_SCODEC_CS35L56_SPI": "m", "CONFIG_SND_HDA_SCODEC_TAS2781_I2C": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "m", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "1", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_EXT_CORE": "m", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_INTEL_BYT_PREFER_SOF": "y", "CONFIG_SND_SPI": "not set", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "y", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "m", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "m", "CONFIG_SND_USB_CAIAQ_INPUT": "y", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "m", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "m", "CONFIG_SND_USB_LINE6": "m", "CONFIG_SND_USB_POD": "m", "CONFIG_SND_USB_PODHD": "m", "CONFIG_SND_USB_TONEPORT": "m", "CONFIG_SND_USB_VARIAX": "m", "CONFIG_SND_FIREWIRE": "y", "CONFIG_SND_FIREWIRE_LIB": "m", "CONFIG_SND_DICE": "m", "CONFIG_SND_OXFW": "m", "CONFIG_SND_ISIGHT": "m", "CONFIG_SND_FIREWORKS": "m", "CONFIG_SND_BEBOB": "m", "CONFIG_SND_FIREWIRE_DIGI00X": "m", "CONFIG_SND_FIREWIRE_TASCAM": "m", "CONFIG_SND_FIREWIRE_MOTU": "m", "CONFIG_SND_FIREFACE": "m", "CONFIG_SND_SOC": "m", "CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM": "y", "CONFIG_SND_SOC_COMPRESS": "y", "CONFIG_SND_SOC_TOPOLOGY": "y", "CONFIG_SND_SOC_ACPI": "m", "CONFIG_SND_SOC_ADI": "m", "CONFIG_SND_SOC_ADI_AXI_I2S": "m", "CONFIG_SND_SOC_ADI_AXI_SPDIF": "m", "CONFIG_SND_SOC_AMD_ACP": "m", "CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH": "m", "CONFIG_SND_SOC_AMD_CZ_RT5645_MACH": "m", "CONFIG_SND_SOC_AMD_ST_ES8336_MACH": "m", "CONFIG_SND_SOC_AMD_ACP3x": "m", "CONFIG_SND_SOC_AMD_RV_RT5682_MACH": "m", "CONFIG_SND_SOC_AMD_RENOIR": "m", "CONFIG_SND_SOC_AMD_RENOIR_MACH": "m", "CONFIG_SND_SOC_AMD_ACP5x": "m", "CONFIG_SND_SOC_AMD_VANGOGH_MACH": "m", "CONFIG_SND_SOC_AMD_ACP6x": "m", "CONFIG_SND_SOC_AMD_YC_MACH": "m", "CONFIG_SND_AMD_ACP_CONFIG": "m", "CONFIG_SND_SOC_AMD_ACP_COMMON": "m", "CONFIG_SND_SOC_AMD_ACP_PDM": "m", "CONFIG_SND_SOC_AMD_ACP_LEGACY_COMMON": "m", "CONFIG_SND_SOC_AMD_ACP_I2S": "m", "CONFIG_SND_SOC_AMD_ACP_PCM": "m", "CONFIG_SND_SOC_AMD_ACP_PCI": "m", "CONFIG_SND_AMD_ASOC_RENOIR": "m", "CONFIG_SND_AMD_ASOC_REMBRANDT": "m", "CONFIG_SND_SOC_AMD_MACH_COMMON": "m", "CONFIG_SND_SOC_AMD_LEGACY_MACH": "m", "CONFIG_SND_SOC_AMD_SOF_MACH": "m", "CONFIG_SND_SOC_AMD_RPL_ACP6x": "m", "CONFIG_SND_SOC_AMD_PS": "m", "CONFIG_SND_SOC_AMD_PS_MACH": "m", "CONFIG_SND_ATMEL_SOC": "not set", "CONFIG_SND_BCM63XX_I2S_WHISTLER": "not set", "CONFIG_SND_DESIGNWARE_I2S": "m", "CONFIG_SND_DESIGNWARE_PCM": "y", "CONFIG_SND_SOC_FSL_ASRC": "not set", "CONFIG_SND_SOC_FSL_SAI": "not set", "CONFIG_SND_SOC_FSL_AUDMIX": "not set", "CONFIG_SND_SOC_FSL_SSI": "not set", "CONFIG_SND_SOC_FSL_SPDIF": "not set", "CONFIG_SND_SOC_FSL_ESAI": "not set", "CONFIG_SND_SOC_FSL_MICFIL": "not set", "CONFIG_SND_SOC_FSL_XCVR": "not set", "CONFIG_SND_SOC_FSL_RPMSG": "not set", "CONFIG_SND_SOC_IMX_AUDMUX": "not set", "CONFIG_SND_I2S_HI6210_I2S": "m", "CONFIG_SND_SOC_IMG": "not set", "CONFIG_SND_SOC_INTEL_SST_TOPLEVEL": "y", "CONFIG_SND_SOC_INTEL_SST": "m", "CONFIG_SND_SOC_INTEL_CATPT": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE": "m", "CONFIG_SND_SOC_INTEL_SKL": "m", "CONFIG_SND_SOC_INTEL_APL": "m", "CONFIG_SND_SOC_INTEL_KBL": "m", "CONFIG_SND_SOC_INTEL_GLK": "m", "CONFIG_SND_SOC_INTEL_CNL": "m", "CONFIG_SND_SOC_INTEL_CFL": "m", "CONFIG_SND_SOC_INTEL_CML_H": "m", "CONFIG_SND_SOC_INTEL_CML_LP": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_FAMILY": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC": "y", "CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON": "m", "CONFIG_SND_SOC_ACPI_INTEL_MATCH": "m", "CONFIG_SND_SOC_INTEL_AVS": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_DA7219": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_DMIC": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_ES8336": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_HDAUDIO": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_I2S_TEST": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98357A": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98373": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_NAU8825": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT274": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT286": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT298": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT5663": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT5682": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_SSM4567": "m", "CONFIG_SND_SOC_INTEL_MACH": "y", "CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES": "y", "CONFIG_SND_SOC_INTEL_HDA_DSP_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_MAXIM_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_REALTEK_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_CIRRUS_COMMON": "m", "CONFIG_SND_SOC_INTEL_HASWELL_MACH": "m", "CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH": "m", "CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH": "m", "CONFIG_SND_SOC_INTEL_BROADWELL_MACH": "m", "CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH": "m", "CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH": "not set", "CONFIG_SND_SOC_INTEL_SKL_RT286_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_DA7219_MAX98357A_GENERIC": "m", "CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON": "m", "CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_BXT_RT298_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH": "m", "CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_ES8336_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_NAU8825_MACH": "m", "CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH": "m", "CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH": "m", "CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH": "m", "CONFIG_SND_SOC_MTK_BTCVSD": "m", "CONFIG_SND_SOC_SOF_TOPLEVEL": "y", "CONFIG_SND_SOC_SOF_PCI_DEV": "m", "CONFIG_SND_SOC_SOF_PCI": "m", "CONFIG_SND_SOC_SOF_ACPI": "m", "CONFIG_SND_SOC_SOF_ACPI_DEV": "m", "CONFIG_SND_SOC_SOF_DEBUG_PROBES": "m", "CONFIG_SND_SOC_SOF_CLIENT": "m", "CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT": "not set", "CONFIG_SND_SOC_SOF": "m", "CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE": "y", "CONFIG_SND_SOC_SOF_IPC3": "y", "CONFIG_SND_SOC_SOF_INTEL_IPC4": "y", "CONFIG_SND_SOC_SOF_AMD_TOPLEVEL": "m", "CONFIG_SND_SOC_SOF_AMD_COMMON": "m", "CONFIG_SND_SOC_SOF_AMD_RENOIR": "m", "CONFIG_SND_SOC_SOF_AMD_VANGOGH": "m", "CONFIG_SND_SOC_SOF_AMD_REMBRANDT": "m", "CONFIG_SND_SOC_SOF_ACP_PROBES": "m", "CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL": "y", "CONFIG_SND_SOC_SOF_INTEL_HIFI_EP_IPC": "m", "CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP": "m", "CONFIG_SND_SOC_SOF_INTEL_COMMON": "m", "CONFIG_SND_SOC_SOF_BAYTRAIL": "m", "CONFIG_SND_SOC_SOF_BROADWELL": "m", "CONFIG_SND_SOC_SOF_MERRIFIELD": "m", "CONFIG_SND_SOC_SOF_INTEL_SKL": "m", "CONFIG_SND_SOC_SOF_SKYLAKE": "m", "CONFIG_SND_SOC_SOF_KABYLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_APL": "m", "CONFIG_SND_SOC_SOF_APOLLOLAKE": "m", "CONFIG_SND_SOC_SOF_GEMINILAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_CNL": "m", "CONFIG_SND_SOC_SOF_CANNONLAKE": "m", "CONFIG_SND_SOC_SOF_COFFEELAKE": "m", "CONFIG_SND_SOC_SOF_COMETLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_ICL": "m", "CONFIG_SND_SOC_SOF_ICELAKE": "m", "CONFIG_SND_SOC_SOF_JASPERLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_TGL": "m", "CONFIG_SND_SOC_SOF_TIGERLAKE": "m", "CONFIG_SND_SOC_SOF_ELKHARTLAKE": "m", "CONFIG_SND_SOC_SOF_ALDERLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_MTL": "m", "CONFIG_SND_SOC_SOF_METEORLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_LNL": "m", "CONFIG_SND_SOC_SOF_LUNARLAKE": "m", "CONFIG_SND_SOC_SOF_HDA_COMMON": "m", "CONFIG_SND_SOC_SOF_HDA_MLINK": "m", "CONFIG_SND_SOC_SOF_HDA_LINK": "y", "CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC": "y", "CONFIG_SND_SOC_SOF_HDA_LINK_BASELINE": "m", "CONFIG_SND_SOC_SOF_HDA": "m", "CONFIG_SND_SOC_SOF_HDA_PROBES": "m", "CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK_BASELINE": "m", "CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE": "m", "CONFIG_SND_SOC_SOF_XTENSA": "m", "CONFIG_SND_SOC_XILINX_I2S": "not set", "CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER": "not set", "CONFIG_SND_SOC_XILINX_SPDIF": "not set", "CONFIG_SND_SOC_XTFPGA_I2S": "not set", "CONFIG_SND_SOC_I2C_AND_SPI": "m", "CONFIG_SND_SOC_WM_ADSP": "m", "CONFIG_SND_SOC_AC97_CODEC": "not set", "CONFIG_SND_SOC_ADAU1372_I2C": "not set", "CONFIG_SND_SOC_ADAU1372_SPI": "not set", "CONFIG_SND_SOC_ADAU1701": "not set", "CONFIG_SND_SOC_ADAU1761_I2C": "not set", "CONFIG_SND_SOC_ADAU1761_SPI": "not set", "CONFIG_SND_SOC_ADAU7002": "m", "CONFIG_SND_SOC_ADAU7118_HW": "not set", "CONFIG_SND_SOC_ADAU7118_I2C": "not set", "CONFIG_SND_SOC_AK4104": "not set", "CONFIG_SND_SOC_AK4118": "not set", "CONFIG_SND_SOC_AK4375": "not set", "CONFIG_SND_SOC_AK4458": "not set", "CONFIG_SND_SOC_AK4554": "not set", "CONFIG_SND_SOC_AK4613": "not set", "CONFIG_SND_SOC_AK4642": "not set", "CONFIG_SND_SOC_AK5386": "not set", "CONFIG_SND_SOC_AK5558": "not set", "CONFIG_SND_SOC_ALC5623": "not set", "CONFIG_SND_SOC_AW8738": "not set", "CONFIG_SND_SOC_AW88395": "not set", "CONFIG_SND_SOC_BD28623": "not set", "CONFIG_SND_SOC_BT_SCO": "m", "CONFIG_SND_SOC_CROS_EC_CODEC": "m", "CONFIG_SND_SOC_CS35L32": "not set", "CONFIG_SND_SOC_CS35L33": "not set", "CONFIG_SND_SOC_CS35L34": "m", "CONFIG_SND_SOC_CS35L35": "m", "CONFIG_SND_SOC_CS35L36": "m", "CONFIG_SND_SOC_CS35L41_LIB": "m", "CONFIG_SND_SOC_CS35L41": "m", "CONFIG_SND_SOC_CS35L41_SPI": "m", "CONFIG_SND_SOC_CS35L41_I2C": "m", "CONFIG_SND_SOC_CS35L45": "m", "CONFIG_SND_SOC_CS35L45_SPI": "m", "CONFIG_SND_SOC_CS35L45_I2C": "m", "CONFIG_SND_SOC_CS35L56": "m", "CONFIG_SND_SOC_CS35L56_SHARED": "m", "CONFIG_SND_SOC_CS35L56_I2C": "m", "CONFIG_SND_SOC_CS35L56_SPI": "m", "CONFIG_SND_SOC_CS35L56_SDW": "m", "CONFIG_SND_SOC_CS42L42_CORE": "m", "CONFIG_SND_SOC_CS42L42": "m", "CONFIG_SND_SOC_CS42L42_SDW": "m", "CONFIG_SND_SOC_CS42L51_I2C": "not set", "CONFIG_SND_SOC_CS42L52": "not set", "CONFIG_SND_SOC_CS42L56": "not set", "CONFIG_SND_SOC_CS42L73": "not set", "CONFIG_SND_SOC_CS42L83": "not set", "CONFIG_SND_SOC_CS4234": "not set", "CONFIG_SND_SOC_CS4265": "not set", "CONFIG_SND_SOC_CS4270": "not set", "CONFIG_SND_SOC_CS4271_I2C": "not set", "CONFIG_SND_SOC_CS4271_SPI": "not set", "CONFIG_SND_SOC_CS42XX8_I2C": "not set", "CONFIG_SND_SOC_CS43130": "not set", "CONFIG_SND_SOC_CS4341": "m", "CONFIG_SND_SOC_CS4349": "not set", "CONFIG_SND_SOC_CS53L30": "not set", "CONFIG_SND_SOC_CX2072X": "m", "CONFIG_SND_SOC_DA7213": "m", "CONFIG_SND_SOC_DA7219": "m", "CONFIG_SND_SOC_DMIC": "m", "CONFIG_SND_SOC_ES7134": "not set", "CONFIG_SND_SOC_ES7241": "not set", "CONFIG_SND_SOC_ES8316": "m", "CONFIG_SND_SOC_ES8326": "m", "CONFIG_SND_SOC_ES8328_I2C": "not set", "CONFIG_SND_SOC_ES8328_SPI": "not set", "CONFIG_SND_SOC_GTM601": "not set", "CONFIG_SND_SOC_HDAC_HDMI": "m", "CONFIG_SND_SOC_HDAC_HDA": "m", "CONFIG_SND_SOC_HDA": "m", "CONFIG_SND_SOC_ICS43432": "not set", "CONFIG_SND_SOC_IDT821034": "not set", "CONFIG_SND_SOC_INNO_RK3036": "not set", "CONFIG_SND_SOC_MAX98088": "not set", "CONFIG_SND_SOC_MAX98090": "m", "CONFIG_SND_SOC_MAX98357A": "m", "CONFIG_SND_SOC_MAX98504": "not set", "CONFIG_SND_SOC_MAX9867": "not set", "CONFIG_SND_SOC_MAX98927": "m", "CONFIG_SND_SOC_MAX98520": "m", "CONFIG_SND_SOC_MAX98363": "m", "CONFIG_SND_SOC_MAX98373": "m", "CONFIG_SND_SOC_MAX98373_I2C": "m", "CONFIG_SND_SOC_MAX98373_SDW": "m", "CONFIG_SND_SOC_MAX98388": "m", "CONFIG_SND_SOC_MAX98390": "m", "CONFIG_SND_SOC_MAX98396": "m", "CONFIG_SND_SOC_MAX9860": "not set", "CONFIG_SND_SOC_MSM8916_WCD_ANALOG": "not set", "CONFIG_SND_SOC_MSM8916_WCD_DIGITAL": "not set", "CONFIG_SND_SOC_PCM1681": "not set", "CONFIG_SND_SOC_PCM1789_I2C": "not set", "CONFIG_SND_SOC_PCM179X_I2C": "not set", "CONFIG_SND_SOC_PCM179X_SPI": "not set", "CONFIG_SND_SOC_PCM186X_I2C": "not set", "CONFIG_SND_SOC_PCM186X_SPI": "not set", "CONFIG_SND_SOC_PCM3060_I2C": "not set", "CONFIG_SND_SOC_PCM3060_SPI": "not set", "CONFIG_SND_SOC_PCM3168A_I2C": "not set", "CONFIG_SND_SOC_PCM3168A_SPI": "not set", "CONFIG_SND_SOC_PCM5102A": "not set", "CONFIG_SND_SOC_PCM512x": "m", "CONFIG_SND_SOC_PCM512x_I2C": "m", "CONFIG_SND_SOC_PCM512x_SPI": "not set", "CONFIG_SND_SOC_PEB2466": "not set", "CONFIG_SND_SOC_RK3328": "not set", "CONFIG_SND_SOC_RL6231": "m", "CONFIG_SND_SOC_RL6347A": "m", "CONFIG_SND_SOC_RT274": "m", "CONFIG_SND_SOC_RT286": "m", "CONFIG_SND_SOC_RT298": "m", "CONFIG_SND_SOC_RT1011": "m", "CONFIG_SND_SOC_RT1015": "m", "CONFIG_SND_SOC_RT1015P": "m", "CONFIG_SND_SOC_RT1019": "m", "CONFIG_SND_SOC_RT1308": "m", "CONFIG_SND_SOC_RT1308_SDW": "m", "CONFIG_SND_SOC_RT1316_SDW": "m", "CONFIG_SND_SOC_RT1318_SDW": "m", "CONFIG_SND_SOC_RT5514": "m", "CONFIG_SND_SOC_RT5514_SPI": "m", "CONFIG_SND_SOC_RT5514_SPI_BUILTIN": "not set", "CONFIG_SND_SOC_RT5616": "not set", "CONFIG_SND_SOC_RT5631": "not set", "CONFIG_SND_SOC_RT5640": "m", "CONFIG_SND_SOC_RT5645": "m", "CONFIG_SND_SOC_RT5651": "m", "CONFIG_SND_SOC_RT5659": "m", "CONFIG_SND_SOC_RT5660": "m", "CONFIG_SND_SOC_RT5663": "m", "CONFIG_SND_SOC_RT5670": "m", "CONFIG_SND_SOC_RT5677": "m", "CONFIG_SND_SOC_RT5677_SPI": "m", "CONFIG_SND_SOC_RT5682": "m", "CONFIG_SND_SOC_RT5682_I2C": "m", "CONFIG_SND_SOC_RT5682_SDW": "m", "CONFIG_SND_SOC_RT5682S": "m", "CONFIG_SND_SOC_RT700": "m", "CONFIG_SND_SOC_RT700_SDW": "m", "CONFIG_SND_SOC_RT711": "m", "CONFIG_SND_SOC_RT711_SDW": "m", "CONFIG_SND_SOC_RT711_SDCA_SDW": "m", "CONFIG_SND_SOC_RT712_SDCA_SDW": "m", "CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW": "m", "CONFIG_SND_SOC_RT722_SDCA_SDW": "m", "CONFIG_SND_SOC_RT715": "m", "CONFIG_SND_SOC_RT715_SDW": "m", "CONFIG_SND_SOC_RT715_SDCA_SDW": "m", "CONFIG_SND_SOC_RT9120": "m", "CONFIG_SND_SOC_SDW_MOCKUP": "m", "CONFIG_SND_SOC_SGTL5000": "not set", "CONFIG_SND_SOC_SIMPLE_AMPLIFIER": "not set", "CONFIG_SND_SOC_SIMPLE_MUX": "not set", "CONFIG_SND_SOC_SMA1303": "not set", "CONFIG_SND_SOC_SPDIF": "not set", "CONFIG_SND_SOC_SRC4XXX_I2C": "not set", "CONFIG_SND_SOC_SSM2305": "not set", "CONFIG_SND_SOC_SSM2518": "not set", "CONFIG_SND_SOC_SSM2602_SPI": "not set", "CONFIG_SND_SOC_SSM2602_I2C": "not set", "CONFIG_SND_SOC_SSM4567": "m", "CONFIG_SND_SOC_STA32X": "not set", "CONFIG_SND_SOC_STA350": "not set", "CONFIG_SND_SOC_STI_SAS": "not set", "CONFIG_SND_SOC_TAS2552": "not set", "CONFIG_SND_SOC_TAS2562": "not set", "CONFIG_SND_SOC_TAS2764": "not set", "CONFIG_SND_SOC_TAS2770": "not set", "CONFIG_SND_SOC_TAS2780": "not set", "CONFIG_SND_SOC_TAS2781_COMLIB": "m", "CONFIG_SND_SOC_TAS2781_FMWLIB": "m", "CONFIG_SND_SOC_TAS2781_I2C": "m", "CONFIG_SND_SOC_TAS5086": "not set", "CONFIG_SND_SOC_TAS571X": "not set", "CONFIG_SND_SOC_TAS5720": "m", "CONFIG_SND_SOC_TAS5805M": "not set", "CONFIG_SND_SOC_TAS6424": "not set", "CONFIG_SND_SOC_TDA7419": "m", "CONFIG_SND_SOC_TFA9879": "not set", "CONFIG_SND_SOC_TFA989X": "not set", "CONFIG_SND_SOC_TLV320ADC3XXX": "not set", "CONFIG_SND_SOC_TLV320AIC23_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC23_SPI": "not set", "CONFIG_SND_SOC_TLV320AIC31XX": "not set", "CONFIG_SND_SOC_TLV320AIC32X4_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC32X4_SPI": "not set", "CONFIG_SND_SOC_TLV320AIC3X_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC3X_SPI": "not set", "CONFIG_SND_SOC_TLV320ADCX140": "not set", "CONFIG_SND_SOC_TS3A227E": "m", "CONFIG_SND_SOC_TSCS42XX": "not set", "CONFIG_SND_SOC_TSCS454": "not set", "CONFIG_SND_SOC_UDA1334": "not set", "CONFIG_SND_SOC_WCD938X_SDW": "not set", "CONFIG_SND_SOC_WM8510": "not set", "CONFIG_SND_SOC_WM8523": "not set", "CONFIG_SND_SOC_WM8524": "not set", "CONFIG_SND_SOC_WM8580": "not set", "CONFIG_SND_SOC_WM8711": "not set", "CONFIG_SND_SOC_WM8728": "not set", "CONFIG_SND_SOC_WM8731_I2C": "not set", "CONFIG_SND_SOC_WM8731_SPI": "not set", "CONFIG_SND_SOC_WM8737": "not set", "CONFIG_SND_SOC_WM8741": "not set", "CONFIG_SND_SOC_WM8750": "not set", "CONFIG_SND_SOC_WM8753": "not set", "CONFIG_SND_SOC_WM8770": "not set", "CONFIG_SND_SOC_WM8776": "not set", "CONFIG_SND_SOC_WM8782": "not set", "CONFIG_SND_SOC_WM8804": "m", "CONFIG_SND_SOC_WM8804_I2C": "m", "CONFIG_SND_SOC_WM8804_SPI": "not set", "CONFIG_SND_SOC_WM8903": "not set", "CONFIG_SND_SOC_WM8904": "not set", "CONFIG_SND_SOC_WM8940": "not set", "CONFIG_SND_SOC_WM8960": "not set", "CONFIG_SND_SOC_WM8961": "not set", "CONFIG_SND_SOC_WM8962": "not set", "CONFIG_SND_SOC_WM8974": "not set", "CONFIG_SND_SOC_WM8978": "not set", "CONFIG_SND_SOC_WM8985": "not set", "CONFIG_SND_SOC_WSA881X": "not set", "CONFIG_SND_SOC_WSA883X": "not set", "CONFIG_SND_SOC_WSA884X": "not set", "CONFIG_SND_SOC_ZL38060": "not set", "CONFIG_SND_SOC_MAX9759": "not set", "CONFIG_SND_SOC_MT6351": "not set", "CONFIG_SND_SOC_MT6358": "not set", "CONFIG_SND_SOC_MT6660": "not set", "CONFIG_SND_SOC_NAU8315": "m", "CONFIG_SND_SOC_NAU8540": "not set", "CONFIG_SND_SOC_NAU8810": "m", "CONFIG_SND_SOC_NAU8821": "m", "CONFIG_SND_SOC_NAU8822": "not set", "CONFIG_SND_SOC_NAU8824": "m", "CONFIG_SND_SOC_NAU8825": "m", "CONFIG_SND_SOC_TPA6130A2": "not set", "CONFIG_SND_SOC_LPASS_WSA_MACRO": "not set", "CONFIG_SND_SOC_LPASS_VA_MACRO": "not set", "CONFIG_SND_SOC_LPASS_RX_MACRO": "not set", "CONFIG_SND_SOC_LPASS_TX_MACRO": "not set", "CONFIG_SND_SIMPLE_CARD": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "m", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_XEN_FRONTEND": "m", "CONFIG_SND_VIRTIO": "m", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "y", "CONFIG_HIDRAW": "y", "CONFIG_UHID": "m", "CONFIG_HID_GENERIC": "m", "CONFIG_HID_A4TECH": "m", "CONFIG_HID_ACCUTOUCH": "m", "CONFIG_HID_ACRUX": "m", "CONFIG_HID_ACRUX_FF": "y", "CONFIG_HID_APPLE": "m", "CONFIG_HID_APPLEIR": "m", "CONFIG_HID_ASUS": "m", "CONFIG_HID_AUREAL": "m", "CONFIG_HID_BELKIN": "m", "CONFIG_HID_BETOP_FF": "m", "CONFIG_HID_BIGBEN_FF": "m", "CONFIG_HID_CHERRY": "m", "CONFIG_HID_CHICONY": "m", "CONFIG_HID_CORSAIR": "m", "CONFIG_HID_COUGAR": "m", "CONFIG_HID_MACALLY": "m", "CONFIG_HID_PRODIKEYS": "m", "CONFIG_HID_CMEDIA": "m", "CONFIG_HID_CP2112": "m", "CONFIG_HID_CREATIVE_SB0540": "m", "CONFIG_HID_CYPRESS": "m", "CONFIG_HID_DRAGONRISE": "m", "CONFIG_DRAGONRISE_FF": "y", "CONFIG_HID_EMS_FF": "m", "CONFIG_HID_ELAN": "m", "CONFIG_HID_ELECOM": "m", "CONFIG_HID_ELO": "m", "CONFIG_HID_EVISION": "m", "CONFIG_HID_EZKEY": "m", "CONFIG_HID_FT260": "m", "CONFIG_HID_GEMBIRD": "m", "CONFIG_HID_GFRM": "m", "CONFIG_HID_GLORIOUS": "m", "CONFIG_HID_HOLTEK": "m", "CONFIG_HOLTEK_FF": "y", "CONFIG_HID_VIVALDI_COMMON": "m", "CONFIG_HID_GOOGLE_HAMMER": "m", "CONFIG_HID_VIVALDI": "m", "CONFIG_HID_GT683R": "m", "CONFIG_HID_KEYTOUCH": "m", "CONFIG_HID_KYE": "m", "CONFIG_HID_UCLOGIC": "m", "CONFIG_HID_WALTOP": "m", "CONFIG_HID_VIEWSONIC": "m", "CONFIG_HID_VRC2": "m", "CONFIG_HID_XIAOMI": "m", "CONFIG_HID_GYRATION": "m", "CONFIG_HID_ICADE": "m", "CONFIG_HID_ITE": "m", "CONFIG_HID_JABRA": "m", "CONFIG_HID_TWINHAN": "m", "CONFIG_HID_KENSINGTON": "m", "CONFIG_HID_LCPOWER": "m", "CONFIG_HID_LED": "m", "CONFIG_HID_LENOVO": "m", "CONFIG_HID_LETSKETCH": "m", "CONFIG_HID_LOGITECH": "m", "CONFIG_HID_LOGITECH_DJ": "m", "CONFIG_HID_LOGITECH_HIDPP": "m", "CONFIG_LOGITECH_FF": "y", "CONFIG_LOGIRUMBLEPAD2_FF": "y", "CONFIG_LOGIG940_FF": "y", "CONFIG_LOGIWHEELS_FF": "y", "CONFIG_HID_MAGICMOUSE": "m", "CONFIG_HID_MALTRON": "m", "CONFIG_HID_MAYFLASH": "m", "CONFIG_HID_MEGAWORLD_FF": "m", "CONFIG_HID_REDRAGON": "m", "CONFIG_HID_MICROSOFT": "m", "CONFIG_HID_MONTEREY": "m", "CONFIG_HID_MULTITOUCH": "m", "CONFIG_HID_NINTENDO": "m", "CONFIG_NINTENDO_FF": "y", "CONFIG_HID_NTI": "m", "CONFIG_HID_NTRIG": "m", "CONFIG_HID_ORTEK": "m", "CONFIG_HID_PANTHERLORD": "m", "CONFIG_PANTHERLORD_FF": "y", "CONFIG_HID_PENMOUNT": "m", "CONFIG_HID_PETALYNX": "m", "CONFIG_HID_PICOLCD": "m", "CONFIG_HID_PICOLCD_FB": "y", "CONFIG_HID_PICOLCD_BACKLIGHT": "y", "CONFIG_HID_PICOLCD_LCD": "y", "CONFIG_HID_PICOLCD_LEDS": "y", "CONFIG_HID_PICOLCD_CIR": "y", "CONFIG_HID_PLANTRONICS": "m", "CONFIG_HID_PLAYSTATION": "m", "CONFIG_PLAYSTATION_FF": "y", "CONFIG_HID_PXRC": "m", "CONFIG_HID_RAZER": "m", "CONFIG_HID_PRIMAX": "m", "CONFIG_HID_RETRODE": "m", "CONFIG_HID_ROCCAT": "m", "CONFIG_HID_SAITEK": "m", "CONFIG_HID_SAMSUNG": "m", "CONFIG_HID_SEMITEK": "m", "CONFIG_HID_SIGMAMICRO": "m", "CONFIG_HID_SONY": "m", "CONFIG_SONY_FF": "y", "CONFIG_HID_SPEEDLINK": "m", "CONFIG_HID_STEAM": "m", "CONFIG_STEAM_FF": "y", "CONFIG_HID_STEELSERIES": "m", "CONFIG_HID_SUNPLUS": "m", "CONFIG_HID_RMI": "m", "CONFIG_HID_GREENASIA": "m", "CONFIG_GREENASIA_FF": "y", "CONFIG_HID_HYPERV_MOUSE": "m", "CONFIG_HID_SMARTJOYPLUS": "m", "CONFIG_SMARTJOYPLUS_FF": "y", "CONFIG_HID_TIVO": "m", "CONFIG_HID_TOPSEED": "m", "CONFIG_HID_TOPRE": "m", "CONFIG_HID_THINGM": "m", "CONFIG_HID_THRUSTMASTER": "m", "CONFIG_THRUSTMASTER_FF": "y", "CONFIG_HID_UDRAW_PS3": "m", "CONFIG_HID_U2FZERO": "m", "CONFIG_HID_WACOM": "m", "CONFIG_HID_WIIMOTE": "m", "CONFIG_HID_XINMO": "m", "CONFIG_HID_ZEROPLUS": "m", "CONFIG_ZEROPLUS_FF": "y", "CONFIG_HID_ZYDACRON": "m", "CONFIG_HID_SENSOR_HUB": "m", "CONFIG_HID_SENSOR_CUSTOM_SENSOR": "m", "CONFIG_HID_ALPS": "m", "CONFIG_HID_MCP2221": "m", "CONFIG_HID_BPF": "y", "CONFIG_USB_HID": "m", "CONFIG_HID_PID": "y", "CONFIG_USB_HIDDEV": "y", "CONFIG_USB_KBD": "not set", "CONFIG_USB_MOUSE": "not set", "CONFIG_I2C_HID": "m", "CONFIG_I2C_HID_ACPI": "m", "CONFIG_I2C_HID_OF": "m", "CONFIG_I2C_HID_CORE": "m", "CONFIG_INTEL_ISH_HID": "m", "CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER": "m", "CONFIG_AMD_SFH_HID": "m", "CONFIG_SURFACE_HID": "m", "CONFIG_SURFACE_KBD": "m", "CONFIG_SURFACE_HID_CORE": "m", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "y", "CONFIG_USB_ULPI_BUS": "m", "CONFIG_USB_CONN_GPIO": "m", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "m", "CONFIG_USB_PCI": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "y", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "y", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB": "not set", "CONFIG_USB_OTG_FSM": "m", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "m", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_MON": "m", "CONFIG_USB_C67X00_HCD": "m", "CONFIG_USB_XHCI_HCD": "m", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "m", "CONFIG_USB_XHCI_PCI_RENESAS": "m", "CONFIG_USB_XHCI_PLATFORM": "m", "CONFIG_USB_EHCI_HCD": "m", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "m", "CONFIG_USB_EHCI_FSL": "m", "CONFIG_USB_EHCI_HCD_PLATFORM": "m", "CONFIG_USB_OXU210HP_HCD": "m", "CONFIG_USB_ISP116X_HCD": "m", "CONFIG_USB_MAX3421_HCD": "not set", "CONFIG_USB_OHCI_HCD": "m", "CONFIG_USB_OHCI_HCD_PCI": "m", "CONFIG_USB_OHCI_HCD_SSB": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "m", "CONFIG_USB_UHCI_HCD": "m", "CONFIG_USB_SL811_HCD": "m", "CONFIG_USB_SL811_HCD_ISO": "not set", "CONFIG_USB_R8A66597_HCD": "m", "CONFIG_USB_HCD_BCMA": "m", "CONFIG_USB_HCD_SSB": "m", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_XEN_HCD": "m", "CONFIG_USB_ACM": "m", "CONFIG_USB_PRINTER": "m", "CONFIG_USB_WDM": "m", "CONFIG_USB_TMC": "m", "CONFIG_USB_STORAGE": "m", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "m", "CONFIG_REALTEK_AUTOPM": "y", "CONFIG_USB_STORAGE_DATAFAB": "m", "CONFIG_USB_STORAGE_FREECOM": "m", "CONFIG_USB_STORAGE_ISD200": "m", "CONFIG_USB_STORAGE_USBAT": "m", "CONFIG_USB_STORAGE_SDDR09": "m", "CONFIG_USB_STORAGE_SDDR55": "m", "CONFIG_USB_STORAGE_JUMPSHOT": "m", "CONFIG_USB_STORAGE_ALAUDA": "m", "CONFIG_USB_STORAGE_ONETOUCH": "m", "CONFIG_USB_STORAGE_KARMA": "m", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "m", "CONFIG_USB_STORAGE_ENE_UB6250": "m", "CONFIG_USB_UAS": "m", "CONFIG_USB_MDC800": "m", "CONFIG_USB_MICROTEK": "m", "CONFIG_USBIP_CORE": "m", "CONFIG_USBIP_VHCI_HCD": "m", "CONFIG_USBIP_VHCI_HC_PORTS": "8", "CONFIG_USBIP_VHCI_NR_HCS": "1", "CONFIG_USBIP_HOST": "m", "CONFIG_USBIP_VUDC": "m", "CONFIG_USBIP_DEBUG": "not set", "CONFIG_USB_CDNS_SUPPORT": "m", "CONFIG_USB_CDNS_HOST": "y", "CONFIG_USB_CDNS3": "m", "CONFIG_USB_CDNS3_GADGET": "not set", "CONFIG_USB_CDNS3_HOST": "y", "CONFIG_USB_CDNS3_PCI_WRAP": "m", "CONFIG_USB_CDNSP_PCI": "m", "CONFIG_USB_CDNSP_GADGET": "y", "CONFIG_USB_CDNSP_HOST": "y", "CONFIG_USB_MUSB_HDRC": "m", "CONFIG_USB_MUSB_HOST": "y", "CONFIG_USB_MUSB_GADGET": "not set", "CONFIG_USB_MUSB_DUAL_ROLE": "not set", "CONFIG_MUSB_PIO_ONLY": "y", "CONFIG_USB_DWC3": "m", "CONFIG_USB_DWC3_ULPI": "y", "CONFIG_USB_DWC3_HOST": "not set", "CONFIG_USB_DWC3_GADGET": "not set", "CONFIG_USB_DWC3_DUAL_ROLE": "y", "CONFIG_USB_DWC3_PCI": "m", "CONFIG_USB_DWC3_HAPS": "m", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "m", "CONFIG_USB_ISP1760_HCD": "y", "CONFIG_USB_ISP1760_HOST_ROLE": "y", "CONFIG_USB_ISP1760_GADGET_ROLE": "not set", "CONFIG_USB_ISP1760_DUAL_ROLE": "not set", "CONFIG_USB_SERIAL": "m", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "m", "CONFIG_USB_SERIAL_AIRCABLE": "m", "CONFIG_USB_SERIAL_ARK3116": "m", "CONFIG_USB_SERIAL_BELKIN": "m", "CONFIG_USB_SERIAL_CH341": "m", "CONFIG_USB_SERIAL_WHITEHEAT": "m", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "m", "CONFIG_USB_SERIAL_CP210X": "m", "CONFIG_USB_SERIAL_CYPRESS_M8": "m", "CONFIG_USB_SERIAL_EMPEG": "m", "CONFIG_USB_SERIAL_FTDI_SIO": "m", "CONFIG_USB_SERIAL_VISOR": "m", "CONFIG_USB_SERIAL_IPAQ": "m", "CONFIG_USB_SERIAL_IR": "m", "CONFIG_USB_SERIAL_EDGEPORT": "m", "CONFIG_USB_SERIAL_EDGEPORT_TI": "m", "CONFIG_USB_SERIAL_F81232": "m", "CONFIG_USB_SERIAL_F8153X": "m", "CONFIG_USB_SERIAL_GARMIN": "m", "CONFIG_USB_SERIAL_IPW": "m", "CONFIG_USB_SERIAL_IUU": "m", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "m", "CONFIG_USB_SERIAL_KEYSPAN": "m", "CONFIG_USB_SERIAL_KLSI": "m", "CONFIG_USB_SERIAL_KOBIL_SCT": "m", "CONFIG_USB_SERIAL_MCT_U232": "m", "CONFIG_USB_SERIAL_METRO": "m", "CONFIG_USB_SERIAL_MOS7720": "m", "CONFIG_USB_SERIAL_MOS7715_PARPORT": "y", "CONFIG_USB_SERIAL_MOS7840": "m", "CONFIG_USB_SERIAL_MXUPORT": "m", "CONFIG_USB_SERIAL_NAVMAN": "m", "CONFIG_USB_SERIAL_PL2303": "m", "CONFIG_USB_SERIAL_OTI6858": "m", "CONFIG_USB_SERIAL_QCAUX": "m", "CONFIG_USB_SERIAL_QUALCOMM": "m", "CONFIG_USB_SERIAL_SPCP8X5": "m", "CONFIG_USB_SERIAL_SAFE": "m", "CONFIG_USB_SERIAL_SAFE_PADDED": "y", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "m", "CONFIG_USB_SERIAL_SYMBOL": "m", "CONFIG_USB_SERIAL_TI": "m", "CONFIG_USB_SERIAL_CYBERJACK": "m", "CONFIG_USB_SERIAL_WWAN": "m", "CONFIG_USB_SERIAL_OPTION": "m", "CONFIG_USB_SERIAL_OMNINET": "m", "CONFIG_USB_SERIAL_OPTICON": "m", "CONFIG_USB_SERIAL_XSENS_MT": "m", "CONFIG_USB_SERIAL_WISHBONE": "m", "CONFIG_USB_SERIAL_SSU100": "m", "CONFIG_USB_SERIAL_QT2": "m", "CONFIG_USB_SERIAL_UPD78F0730": "m", "CONFIG_USB_SERIAL_XR": "m", "CONFIG_USB_SERIAL_DEBUG": "m", "CONFIG_USB_USS720": "m", "CONFIG_USB_EMI62": "m", "CONFIG_USB_EMI26": "m", "CONFIG_USB_ADUTUX": "m", "CONFIG_USB_SEVSEG": "m", "CONFIG_USB_LEGOTOWER": "m", "CONFIG_USB_LCD": "m", "CONFIG_USB_CYPRESS_CY7C63": "m", "CONFIG_USB_CYTHERM": "m", "CONFIG_USB_IDMOUSE": "m", "CONFIG_USB_APPLEDISPLAY": "m", "CONFIG_APPLE_MFI_FASTCHARGE": "m", "CONFIG_USB_SISUSBVGA": "m", "CONFIG_USB_LD": "m", "CONFIG_USB_TRANCEVIBRATOR": "m", "CONFIG_USB_IOWARRIOR": "m", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "m", "CONFIG_USB_ISIGHTFW": "m", "CONFIG_USB_YUREX": "m", "CONFIG_USB_EZUSB_FX2": "m", "CONFIG_USB_HUB_USB251XB": "m", "CONFIG_USB_HSIC_USB3503": "m", "CONFIG_USB_HSIC_USB4604": "m", "CONFIG_USB_LINK_LAYER_TEST": "m", "CONFIG_USB_CHAOSKEY": "m", "CONFIG_USB_ATM": "m", "CONFIG_USB_SPEEDTOUCH": "m", "CONFIG_USB_CXACRU": "m", "CONFIG_USB_UEAGLEATM": "m", "CONFIG_USB_XUSBATM": "m", "CONFIG_USB_PHY": "y", "CONFIG_NOP_USB_XCEIV": "m", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "m", "CONFIG_USB_GADGET": "y", "CONFIG_USB_GADGET_DEBUG": "not set", "CONFIG_USB_GADGET_DEBUG_FILES": "not set", "CONFIG_USB_GADGET_DEBUG_FS": "not set", "CONFIG_USB_GADGET_VBUS_DRAW": "2", "CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS": "2", "CONFIG_U_SERIAL_CONSOLE": "not set", "CONFIG_USB_GR_UDC": "not set", "CONFIG_USB_R8A66597": "not set", "CONFIG_USB_PXA27X": "not set", "CONFIG_USB_MV_UDC": "not set", "CONFIG_USB_MV_U3D": "not set", "CONFIG_USB_M66592": "not set", "CONFIG_USB_BDC_UDC": "not set", "CONFIG_USB_AMD5536UDC": "not set", "CONFIG_USB_NET2272": "not set", "CONFIG_USB_NET2280": "not set", "CONFIG_USB_GOKU": "not set", "CONFIG_USB_EG20T": "m", "CONFIG_USB_MAX3420_UDC": "not set", "CONFIG_USB_LIBCOMPOSITE": "m", "CONFIG_USB_F_ACM": "m", "CONFIG_USB_F_SS_LB": "m", "CONFIG_USB_U_SERIAL": "m", "CONFIG_USB_U_ETHER": "m", "CONFIG_USB_U_AUDIO": "m", "CONFIG_USB_F_SERIAL": "m", "CONFIG_USB_F_OBEX": "m", "CONFIG_USB_F_NCM": "m", "CONFIG_USB_F_ECM": "m", "CONFIG_USB_F_PHONET": "m", "CONFIG_USB_F_EEM": "m", "CONFIG_USB_F_SUBSET": "m", "CONFIG_USB_F_RNDIS": "m", "CONFIG_USB_F_MASS_STORAGE": "m", "CONFIG_USB_F_FS": "m", "CONFIG_USB_F_UAC1": "m", "CONFIG_USB_F_UAC2": "m", "CONFIG_USB_F_UVC": "m", "CONFIG_USB_F_MIDI": "m", "CONFIG_USB_F_HID": "m", "CONFIG_USB_F_PRINTER": "m", "CONFIG_USB_F_TCM": "m", "CONFIG_USB_CONFIGFS": "m", "CONFIG_USB_CONFIGFS_SERIAL": "y", "CONFIG_USB_CONFIGFS_ACM": "y", "CONFIG_USB_CONFIGFS_OBEX": "y", "CONFIG_USB_CONFIGFS_NCM": "y", "CONFIG_USB_CONFIGFS_ECM": "y", "CONFIG_USB_CONFIGFS_ECM_SUBSET": "y", "CONFIG_USB_CONFIGFS_RNDIS": "y", "CONFIG_USB_CONFIGFS_EEM": "y", "CONFIG_USB_CONFIGFS_PHONET": "y", "CONFIG_USB_CONFIGFS_MASS_STORAGE": "y", "CONFIG_USB_CONFIGFS_F_LB_SS": "y", "CONFIG_USB_CONFIGFS_F_FS": "y", "CONFIG_USB_CONFIGFS_F_UAC1": "y", "CONFIG_USB_CONFIGFS_F_UAC1_LEGACY": "not set", "CONFIG_USB_CONFIGFS_F_UAC2": "y", "CONFIG_USB_CONFIGFS_F_MIDI": "y", "CONFIG_USB_CONFIGFS_F_HID": "y", "CONFIG_USB_CONFIGFS_F_UVC": "y", "CONFIG_USB_CONFIGFS_F_PRINTER": "y", "CONFIG_USB_CONFIGFS_F_TCM": "y", "CONFIG_USB_ZERO": "m", "CONFIG_USB_ZERO_HNPTEST": "y", "CONFIG_USB_AUDIO": "m", "CONFIG_GADGET_UAC1": "y", "CONFIG_GADGET_UAC1_LEGACY": "not set", "CONFIG_USB_ETH": "m", "CONFIG_USB_ETH_RNDIS": "y", "CONFIG_USB_ETH_EEM": "y", "CONFIG_USB_G_NCM": "m", "CONFIG_USB_GADGETFS": "m", "CONFIG_USB_FUNCTIONFS": "m", "CONFIG_USB_FUNCTIONFS_ETH": "y", "CONFIG_USB_FUNCTIONFS_RNDIS": "y", "CONFIG_USB_FUNCTIONFS_GENERIC": "y", "CONFIG_USB_MASS_STORAGE": "m", "CONFIG_USB_GADGET_TARGET": "m", "CONFIG_USB_G_SERIAL": "m", "CONFIG_USB_MIDI_GADGET": "m", "CONFIG_USB_G_PRINTER": "m", "CONFIG_USB_CDC_COMPOSITE": "m", "CONFIG_USB_G_NOKIA": "m", "CONFIG_USB_G_ACM_MS": "m", "CONFIG_USB_G_MULTI": "m", "CONFIG_USB_G_MULTI_RNDIS": "y", "CONFIG_USB_G_MULTI_CDC": "y", "CONFIG_USB_G_HID": "m", "CONFIG_USB_G_DBGP": "m", "CONFIG_USB_G_DBGP_PRINTK": "y", "CONFIG_USB_G_DBGP_SERIAL": "not set", "CONFIG_USB_G_WEBCAM": "m", "CONFIG_USB_RAW_GADGET": "m", "CONFIG_TYPEC": "m", "CONFIG_TYPEC_TCPM": "m", "CONFIG_TYPEC_TCPCI": "m", "CONFIG_TYPEC_RT1711H": "m", "CONFIG_TYPEC_TCPCI_MAXIM": "m", "CONFIG_TYPEC_FUSB302": "m", "CONFIG_TYPEC_WCOVE": "m", "CONFIG_TYPEC_UCSI": "m", "CONFIG_UCSI_CCG": "m", "CONFIG_UCSI_ACPI": "m", "CONFIG_UCSI_STM32G0": "m", "CONFIG_TYPEC_TPS6598X": "m", "CONFIG_TYPEC_ANX7411": "m", "CONFIG_TYPEC_RT1719": "m", "CONFIG_TYPEC_HD3SS3220": "m", "CONFIG_TYPEC_STUSB160X": "m", "CONFIG_TYPEC_WUSB3801": "m", "CONFIG_TYPEC_MUX_FSA4480": "m", "CONFIG_TYPEC_MUX_GPIO_SBU": "m", "CONFIG_TYPEC_MUX_PI3USB30532": "m", "CONFIG_TYPEC_MUX_INTEL_PMC": "m", "CONFIG_TYPEC_DP_ALTMODE": "m", "CONFIG_TYPEC_NVIDIA_ALTMODE": "m", "CONFIG_USB_ROLE_SWITCH": "m", "CONFIG_USB_ROLES_INTEL_XHCI": "m", "CONFIG_MMC": "m", "CONFIG_MMC_BLOCK": "m", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "m", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_CRYPTO": "y", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "m", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "m", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "m", "CONFIG_MMC_SDHCI_PLTFM": "m", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "m", "CONFIG_MMC_ALCOR": "m", "CONFIG_MMC_TIFM_SD": "m", "CONFIG_MMC_SPI": "m", "CONFIG_MMC_CB710": "m", "CONFIG_MMC_VIA_SDMMC": "m", "CONFIG_MMC_VUB300": "m", "CONFIG_MMC_USHC": "m", "CONFIG_MMC_USDHI6ROL0": "m", "CONFIG_MMC_REALTEK_PCI": "m", "CONFIG_MMC_REALTEK_USB": "m", "CONFIG_MMC_CQHCI": "m", "CONFIG_MMC_HSQ": "m", "CONFIG_MMC_TOSHIBA_PCI": "m", "CONFIG_MMC_MTK": "m", "CONFIG_MMC_SDHCI_XENON": "m", "CONFIG_SCSI_UFSHCD": "m", "CONFIG_SCSI_UFS_BSG": "y", "CONFIG_SCSI_UFS_CRYPTO": "y", "CONFIG_SCSI_UFS_HPB": "y", "CONFIG_SCSI_UFS_FAULT_INJECTION": "y", "CONFIG_SCSI_UFS_HWMON": "y", "CONFIG_SCSI_UFSHCD_PCI": "m", "CONFIG_SCSI_UFS_DWC_TC_PCI": "not set", "CONFIG_SCSI_UFSHCD_PLATFORM": "m", "CONFIG_SCSI_UFS_CDNS_PLATFORM": "m", "CONFIG_MEMSTICK": "m", "CONFIG_MEMSTICK_DEBUG": "not set", "CONFIG_MEMSTICK_UNSAFE_RESUME": "not set", "CONFIG_MSPRO_BLOCK": "m", "CONFIG_MS_BLOCK": "m", "CONFIG_MEMSTICK_TIFM_MS": "m", "CONFIG_MEMSTICK_JMICRON_38X": "m", "CONFIG_MEMSTICK_R592": "m", "CONFIG_MEMSTICK_REALTEK_PCI": "m", "CONFIG_MEMSTICK_REALTEK_USB": "m", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "m", "CONFIG_LEDS_CLASS_MULTICOLOR": "m", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "y", "CONFIG_LEDS_APU": "m", "CONFIG_LEDS_LM3530": "m", "CONFIG_LEDS_LM3532": "m", "CONFIG_LEDS_LM3533": "m", "CONFIG_LEDS_LM3642": "m", "CONFIG_LEDS_PCA9532": "m", "CONFIG_LEDS_PCA9532_GPIO": "y", "CONFIG_LEDS_GPIO": "m", "CONFIG_LEDS_LP3944": "m", "CONFIG_LEDS_LP3952": "m", "CONFIG_LEDS_LP50XX": "m", "CONFIG_LEDS_PCA955X": "m", "CONFIG_LEDS_PCA955X_GPIO": "y", "CONFIG_LEDS_PCA963X": "m", "CONFIG_LEDS_DAC124S085": "not set", "CONFIG_LEDS_PWM": "m", "CONFIG_LEDS_REGULATOR": "m", "CONFIG_LEDS_BD2606MVV": "m", "CONFIG_LEDS_BD2802": "m", "CONFIG_LEDS_INTEL_SS4200": "m", "CONFIG_LEDS_LT3593": "m", "CONFIG_LEDS_TCA6507": "m", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "m", "CONFIG_LEDS_IS31FL319X": "m", "CONFIG_LEDS_BLINKM": "m", "CONFIG_LEDS_MLXCPLD": "m", "CONFIG_LEDS_MLXREG": "m", "CONFIG_LEDS_USER": "m", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TI_LMU_COMMON": "m", "CONFIG_LEDS_LM36274": "m", "CONFIG_LEDS_AS3645A": "not set", "CONFIG_LEDS_LM3601X": "m", "CONFIG_LEDS_RT8515": "m", "CONFIG_LEDS_SGM3140": "m", "CONFIG_LEDS_PWM_MULTICOLOR": "m", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "m", "CONFIG_LEDS_TRIGGER_ONESHOT": "m", "CONFIG_LEDS_TRIGGER_DISK": "y", "CONFIG_LEDS_TRIGGER_MTD": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "m", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "m", "CONFIG_LEDS_TRIGGER_CPU": "y", "CONFIG_LEDS_TRIGGER_ACTIVITY": "m", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "m", "CONFIG_LEDS_TRIGGER_TRANSIENT": "m", "CONFIG_LEDS_TRIGGER_CAMERA": "m", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "m", "CONFIG_LEDS_TRIGGER_PATTERN": "m", "CONFIG_LEDS_TRIGGER_AUDIO": "m", "CONFIG_LEDS_TRIGGER_TTY": "m", "CONFIG_LEDS_SIEMENS_SIMATIC_IPC": "m", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "m", "CONFIG_INFINIBAND_USER_MAD": "m", "CONFIG_INFINIBAND_USER_ACCESS": "m", "CONFIG_INFINIBAND_USER_MEM": "y", "CONFIG_INFINIBAND_ON_DEMAND_PAGING": "y", "CONFIG_INFINIBAND_ADDR_TRANS": "y", "CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS": "y", "CONFIG_INFINIBAND_VIRT_DMA": "y", "CONFIG_INFINIBAND_BNXT_RE": "m", "CONFIG_INFINIBAND_CXGB4": "m", "CONFIG_INFINIBAND_EFA": "m", "CONFIG_INFINIBAND_ERDMA": "m", "CONFIG_INFINIBAND_HFI1": "m", "CONFIG_HFI1_DEBUG_SDMA_ORDER": "not set", "CONFIG_SDMA_VERBOSITY": "not set", "CONFIG_INFINIBAND_IRDMA": "m", "CONFIG_MANA_INFINIBAND": "m", "CONFIG_MLX4_INFINIBAND": "m", "CONFIG_MLX5_INFINIBAND": "m", "CONFIG_INFINIBAND_MTHCA": "m", "CONFIG_INFINIBAND_MTHCA_DEBUG": "y", "CONFIG_INFINIBAND_OCRDMA": "m", "CONFIG_INFINIBAND_QEDR": "m", "CONFIG_INFINIBAND_QIB": "m", "CONFIG_INFINIBAND_QIB_DCA": "y", "CONFIG_INFINIBAND_USNIC": "m", "CONFIG_INFINIBAND_VMWARE_PVRDMA": "m", "CONFIG_INFINIBAND_RDMAVT": "m", "CONFIG_RDMA_RXE": "m", "CONFIG_RDMA_SIW": "m", "CONFIG_INFINIBAND_IPOIB": "m", "CONFIG_INFINIBAND_IPOIB_CM": "y", "CONFIG_INFINIBAND_IPOIB_DEBUG": "y", "CONFIG_INFINIBAND_IPOIB_DEBUG_DATA": "not set", "CONFIG_INFINIBAND_SRP": "m", "CONFIG_INFINIBAND_SRPT": "m", "CONFIG_INFINIBAND_ISER": "m", "CONFIG_INFINIBAND_ISERT": "m", "CONFIG_INFINIBAND_RTRS": "m", "CONFIG_INFINIBAND_RTRS_CLIENT": "m", "CONFIG_INFINIBAND_RTRS_SERVER": "m", "CONFIG_INFINIBAND_OPA_VNIC": "m", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_EDAC": "y", "CONFIG_EDAC_LEGACY_SYSFS": "y", "CONFIG_EDAC_DEBUG": "not set", "CONFIG_EDAC_DECODE_MCE": "m", "CONFIG_EDAC_GHES": "y", "CONFIG_EDAC_AMD64": "m", "CONFIG_EDAC_E752X": "m", "CONFIG_EDAC_I82975X": "m", "CONFIG_EDAC_I3000": "m", "CONFIG_EDAC_I3200": "m", "CONFIG_EDAC_IE31200": "m", "CONFIG_EDAC_X38": "m", "CONFIG_EDAC_I5400": "m", "CONFIG_EDAC_I7CORE": "m", "CONFIG_EDAC_I5100": "m", "CONFIG_EDAC_I7300": "m", "CONFIG_EDAC_SBRIDGE": "m", "CONFIG_EDAC_SKX": "m", "CONFIG_EDAC_I10NM": "m", "CONFIG_EDAC_PND2": "m", "CONFIG_EDAC_IGEN6": "m", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "m", "CONFIG_RTC_DRV_ABEOZ9": "m", "CONFIG_RTC_DRV_ABX80X": "m", "CONFIG_RTC_DRV_DS1307": "m", "CONFIG_RTC_DRV_DS1307_CENTURY": "y", "CONFIG_RTC_DRV_DS1374": "m", "CONFIG_RTC_DRV_DS1374_WDT": "y", "CONFIG_RTC_DRV_DS1672": "m", "CONFIG_RTC_DRV_MAX6900": "m", "CONFIG_RTC_DRV_MAX8907": "m", "CONFIG_RTC_DRV_RS5C372": "m", "CONFIG_RTC_DRV_ISL1208": "m", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "m", "CONFIG_RTC_DRV_PCF8523": "m", "CONFIG_RTC_DRV_PCF85063": "m", "CONFIG_RTC_DRV_PCF85363": "m", "CONFIG_RTC_DRV_PCF8563": "m", "CONFIG_RTC_DRV_PCF8583": "m", "CONFIG_RTC_DRV_M41T80": "m", "CONFIG_RTC_DRV_M41T80_WDT": "y", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "m", "CONFIG_RTC_DRV_FM3130": "m", "CONFIG_RTC_DRV_RX8010": "m", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "m", "CONFIG_RTC_DRV_RV3032": "m", "CONFIG_RTC_DRV_RV8803": "m", "CONFIG_RTC_DRV_SD3078": "m", "CONFIG_RTC_DRV_M41T93": "not set", "CONFIG_RTC_DRV_M41T94": "not set", "CONFIG_RTC_DRV_DS1302": "not set", "CONFIG_RTC_DRV_DS1305": "not set", "CONFIG_RTC_DRV_DS1343": "not set", "CONFIG_RTC_DRV_DS1347": "not set", "CONFIG_RTC_DRV_DS1390": "not set", "CONFIG_RTC_DRV_MAX6916": "not set", "CONFIG_RTC_DRV_R9701": "not set", "CONFIG_RTC_DRV_RX4581": "not set", "CONFIG_RTC_DRV_RS5C348": "not set", "CONFIG_RTC_DRV_MAX6902": "not set", "CONFIG_RTC_DRV_PCF2123": "not set", "CONFIG_RTC_DRV_MCP795": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "m", "CONFIG_RTC_DRV_DS3232_HWMON": "y", "CONFIG_RTC_DRV_PCF2127": "m", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_DA9063": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_BQ4802": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_CROS_EC": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_HID_SENSOR_TIME": "not set", "CONFIG_RTC_DRV_GOLDFISH": "m", "CONFIG_RTC_DRV_WILCO_EC": "m", "CONFIG_DMADEVICES": "y", "CONFIG_DMADEVICES_DEBUG": "not set", "CONFIG_DMA_ENGINE": "y", "CONFIG_DMA_VIRTUAL_CHANNELS": "y", "CONFIG_DMA_ACPI": "y", "CONFIG_ALTERA_MSGDMA": "m", "CONFIG_INTEL_IDMA64": "m", "CONFIG_INTEL_IDXD_BUS": "m", "CONFIG_INTEL_IDXD": "m", "CONFIG_INTEL_IDXD_COMPAT": "not set", "CONFIG_INTEL_IDXD_SVM": "y", "CONFIG_INTEL_IDXD_PERFMON": "y", "CONFIG_INTEL_IOATDMA": "m", "CONFIG_PLX_DMA": "m", "CONFIG_XILINX_XDMA": "m", "CONFIG_AMD_PTDMA": "m", "CONFIG_QCOM_HIDMA_MGMT": "not set", "CONFIG_QCOM_HIDMA": "not set", "CONFIG_DW_DMAC_CORE": "y", "CONFIG_DW_DMAC": "m", "CONFIG_DW_DMAC_PCI": "y", "CONFIG_DW_EDMA": "m", "CONFIG_DW_EDMA_PCIE": "m", "CONFIG_HSU_DMA": "y", "CONFIG_SF_PDMA": "m", "CONFIG_TI_K3_PSIL": "not set", "CONFIG_INTEL_LDMA": "y", "CONFIG_ASYNC_TX_DMA": "y", "CONFIG_DMATEST": "not set", "CONFIG_DMA_ENGINE_RAID": "y", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "y", "CONFIG_UDMABUF": "y", "CONFIG_DMABUF_MOVE_NOTIFY": "y", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "y", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_DMABUF_HEAPS_SYSTEM": "y", "CONFIG_DMABUF_HEAPS_CMA": "not set", "CONFIG_DCA": "m", "CONFIG_UIO": "m", "CONFIG_UIO_CIF": "m", "CONFIG_UIO_PDRV_GENIRQ": "m", "CONFIG_UIO_DMEM_GENIRQ": "m", "CONFIG_UIO_AEC": "m", "CONFIG_UIO_SERCOS3": "m", "CONFIG_UIO_PCI_GENERIC": "m", "CONFIG_UIO_NETX": "m", "CONFIG_UIO_PRUSS": "not set", "CONFIG_UIO_MF624": "m", "CONFIG_UIO_HV_GENERIC": "m", "CONFIG_UIO_DFL": "m", "CONFIG_VFIO": "m", "CONFIG_VFIO_GROUP": "y", "CONFIG_VFIO_CONTAINER": "y", "CONFIG_VFIO_IOMMU_TYPE1": "m", "CONFIG_VFIO_NOIOMMU": "not set", "CONFIG_VFIO_VIRQFD": "y", "CONFIG_VFIO_PCI_CORE": "m", "CONFIG_VFIO_PCI_MMAP": "y", "CONFIG_VFIO_PCI_INTX": "y", "CONFIG_VFIO_PCI": "m", "CONFIG_VFIO_PCI_VGA": "y", "CONFIG_VFIO_PCI_IGD": "y", "CONFIG_MLX5_VFIO_PCI": "m", "CONFIG_PDS_VFIO_PCI": "m", "CONFIG_VFIO_MDEV": "m", "CONFIG_IRQ_BYPASS_MANAGER": "m", "CONFIG_VIRT_DRIVERS": "y", "CONFIG_VMGENID": "y", "CONFIG_VBOXGUEST": "m", "CONFIG_NITRO_ENCLAVES": "m", "CONFIG_ACRN_HSM": "m", "CONFIG_TSM_REPORTS": "m", "CONFIG_EFI_SECRET": "m", "CONFIG_SEV_GUEST": "m", "CONFIG_TDX_GUEST_DRIVER": "m", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_VDPA": "m", "CONFIG_VIRTIO_PMEM": "m", "CONFIG_VIRTIO_BALLOON": "m", "CONFIG_VIRTIO_MEM": "m", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "m", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "y", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "m", "CONFIG_VDPA": "m", "CONFIG_VDPA_SIM": "m", "CONFIG_VDPA_SIM_NET": "m", "CONFIG_VDPA_SIM_BLOCK": "m", "CONFIG_VDPA_USER": "not set", "CONFIG_IFCVF": "m", "CONFIG_MLX5_VDPA": "y", "CONFIG_MLX5_VDPA_NET": "m", "CONFIG_MLX5_VDPA_STEERING_DEBUG": "not set", "CONFIG_VP_VDPA": "m", "CONFIG_ALIBABA_ENI_VDPA": "not set", "CONFIG_SNET_VDPA": "not set", "CONFIG_VHOST_IOTLB": "m", "CONFIG_VHOST_RING": "m", "CONFIG_VHOST_TASK": "y", "CONFIG_VHOST": "m", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "m", "CONFIG_VHOST_SCSI": "m", "CONFIG_VHOST_VSOCK": "m", "CONFIG_VHOST_VDPA": "m", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_HYPERV": "m", "CONFIG_HYPERV_VTL_MODE": "not set", "CONFIG_HYPERV_TIMER": "y", "CONFIG_HYPERV_UTILS": "m", "CONFIG_HYPERV_BALLOON": "m", "CONFIG_XEN_BALLOON": "y", "CONFIG_XEN_BALLOON_MEMORY_HOTPLUG": "y", "CONFIG_XEN_MEMORY_HOTPLUG_LIMIT": "512", "CONFIG_XEN_SCRUB_PAGES_DEFAULT": "y", "CONFIG_XEN_DEV_EVTCHN": "m", "CONFIG_XEN_BACKEND": "y", "CONFIG_XENFS": "m", "CONFIG_XEN_COMPAT_XENFS": "y", "CONFIG_XEN_SYS_HYPERVISOR": "y", "CONFIG_XEN_XENBUS_FRONTEND": "y", "CONFIG_XEN_GNTDEV": "m", "CONFIG_XEN_GNTDEV_DMABUF": "y", "CONFIG_XEN_GRANT_DEV_ALLOC": "m", "CONFIG_XEN_GRANT_DMA_ALLOC": "y", "CONFIG_SWIOTLB_XEN": "y", "CONFIG_XEN_PCI_STUB": "y", "CONFIG_XEN_PCIDEV_BACKEND": "m", "CONFIG_XEN_PVCALLS_FRONTEND": "not set", "CONFIG_XEN_PVCALLS_BACKEND": "y", "CONFIG_XEN_SCSI_BACKEND": "m", "CONFIG_XEN_PRIVCMD": "m", "CONFIG_XEN_ACPI_PROCESSOR": "m", "CONFIG_XEN_MCE_LOG": "y", "CONFIG_XEN_HAVE_PVMMU": "y", "CONFIG_XEN_EFI": "y", "CONFIG_XEN_AUTO_XLATE": "y", "CONFIG_XEN_ACPI": "y", "CONFIG_XEN_SYMS": "y", "CONFIG_XEN_HAVE_VPMU": "y", "CONFIG_XEN_FRONT_PGDIR_SHBUF": "m", "CONFIG_XEN_UNPOPULATED_ALLOC": "y", "CONFIG_XEN_GRANT_DMA_OPS": "y", "CONFIG_XEN_VIRTIO": "y", "CONFIG_XEN_VIRTIO_FORCE_GRANT": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "y", "CONFIG_PRISM2_USB": "m", "CONFIG_RTL8192U": "m", "CONFIG_RTLLIB": "m", "CONFIG_RTLLIB_CRYPTO_CCMP": "m", "CONFIG_RTLLIB_CRYPTO_TKIP": "m", "CONFIG_RTLLIB_CRYPTO_WEP": "m", "CONFIG_RTL8192E": "m", "CONFIG_RTL8723BS": "m", "CONFIG_R8712U": "m", "CONFIG_RTS5208": "m", "CONFIG_VT6655": "m", "CONFIG_VT6656": "m", "CONFIG_ADIS16203": "not set", "CONFIG_ADIS16240": "not set", "CONFIG_AD7816": "not set", "CONFIG_ADT7316": "not set", "CONFIG_AD9832": "not set", "CONFIG_AD9834": "not set", "CONFIG_AD5933": "not set", "CONFIG_AD2S1210": "not set", "CONFIG_FB_SM750": "not set", "CONFIG_STAGING_MEDIA": "y", "CONFIG_INTEL_ATOMISP": "y", "CONFIG_VIDEO_ATOMISP": "m", "CONFIG_VIDEO_ATOMISP_ISP2401": "y", "CONFIG_VIDEO_ATOMISP_OV2722": "m", "CONFIG_VIDEO_ATOMISP_GC2235": "m", "CONFIG_VIDEO_ATOMISP_MSRLIST_HELPER": "m", "CONFIG_VIDEO_ATOMISP_MT9M114": "m", "CONFIG_VIDEO_ATOMISP_GC0310": "m", "CONFIG_VIDEO_ATOMISP_OV2680": "m", "CONFIG_VIDEO_ATOMISP_OV5693": "m", "CONFIG_VIDEO_ATOMISP_LM3554": "m", "CONFIG_DVB_AV7110_IR": "y", "CONFIG_DVB_AV7110": "m", "CONFIG_DVB_AV7110_OSD": "y", "CONFIG_DVB_BUDGET_PATCH": "m", "CONFIG_DVB_SP8870": "m", "CONFIG_VIDEO_IPU3_IMGU": "m", "CONFIG_STAGING_MEDIA_DEPRECATED": "y", "CONFIG_VIDEO_ATMEL_ISC_BASE": "not set", "CONFIG_LTE_GDM724X": "m", "CONFIG_FB_TFT": "not set", "CONFIG_KS7010": "m", "CONFIG_PI433": "not set", "CONFIG_FIELDBUS_DEV": "not set", "CONFIG_QLGE": "m", "CONFIG_VME_BUS": "not set", "CONFIG_CHROME_PLATFORMS": "y", "CONFIG_CHROMEOS_ACPI": "m", "CONFIG_CHROMEOS_LAPTOP": "m", "CONFIG_CHROMEOS_PSTORE": "m", "CONFIG_CHROMEOS_TBMC": "m", "CONFIG_CROS_EC": "m", "CONFIG_CROS_EC_I2C": "m", "CONFIG_CROS_EC_ISHTP": "m", "CONFIG_CROS_EC_SPI": "m", "CONFIG_CROS_EC_UART": "m", "CONFIG_CROS_EC_LPC": "m", "CONFIG_CROS_EC_PROTO": "y", "CONFIG_CROS_KBD_LED_BACKLIGHT": "m", "CONFIG_CROS_EC_CHARDEV": "m", "CONFIG_CROS_EC_LIGHTBAR": "m", "CONFIG_CROS_EC_DEBUGFS": "m", "CONFIG_CROS_EC_SENSORHUB": "m", "CONFIG_CROS_EC_SYSFS": "m", "CONFIG_CROS_EC_TYPEC": "m", "CONFIG_CROS_HPS_I2C": "m", "CONFIG_CROS_USBPD_LOGGER": "m", "CONFIG_CROS_USBPD_NOTIFY": "m", "CONFIG_CHROMEOS_PRIVACY_SCREEN": "m", "CONFIG_CROS_TYPEC_SWITCH": "m", "CONFIG_WILCO_EC": "m", "CONFIG_WILCO_EC_DEBUGFS": "not set", "CONFIG_WILCO_EC_EVENTS": "m", "CONFIG_WILCO_EC_TELEMETRY": "m", "CONFIG_MELLANOX_PLATFORM": "y", "CONFIG_MLXREG_HOTPLUG": "m", "CONFIG_MLXREG_IO": "m", "CONFIG_MLXREG_LC": "m", "CONFIG_NVSW_SN2201": "m", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE3_WMI": "m", "CONFIG_SURFACE_3_POWER_OPREGION": "m", "CONFIG_SURFACE_ACPI_NOTIFY": "m", "CONFIG_SURFACE_AGGREGATOR_CDEV": "m", "CONFIG_SURFACE_AGGREGATOR_HUB": "m", "CONFIG_SURFACE_AGGREGATOR_REGISTRY": "m", "CONFIG_SURFACE_AGGREGATOR_TABLET_SWITCH": "m", "CONFIG_SURFACE_DTX": "m", "CONFIG_SURFACE_GPE": "m", "CONFIG_SURFACE_HOTPLUG": "m", "CONFIG_SURFACE_PLATFORM_PROFILE": "m", "CONFIG_SURFACE_PRO3_BUTTON": "m", "CONFIG_SURFACE_AGGREGATOR": "m", "CONFIG_SURFACE_AGGREGATOR_BUS": "y", "CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "m", "CONFIG_UV_SYSFS": "m", "CONFIG_MXM_WMI": "m", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "m", "CONFIG_XIAOMI_WMI": "m", "CONFIG_GIGABYTE_WMI": "m", "CONFIG_YOGABOOK_WMI": "m", "CONFIG_ACERHDF": "m", "CONFIG_ACER_WIRELESS": "m", "CONFIG_ACER_WMI": "m", "CONFIG_AMD_PMF": "m", "CONFIG_AMD_PMC": "m", "CONFIG_AMD_HSMP": "m", "CONFIG_ADV_SWBUTTON": "m", "CONFIG_APPLE_GMUX": "m", "CONFIG_ASUS_LAPTOP": "m", "CONFIG_ASUS_WIRELESS": "m", "CONFIG_ASUS_WMI": "m", "CONFIG_ASUS_NB_WMI": "m", "CONFIG_ASUS_TF103C_DOCK": "m", "CONFIG_MERAKI_MX100": "m", "CONFIG_EEEPC_LAPTOP": "m", "CONFIG_EEEPC_WMI": "m", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "y", "CONFIG_ALIENWARE_WMI": "m", "CONFIG_DCDBAS": "m", "CONFIG_DELL_LAPTOP": "m", "CONFIG_DELL_RBU": "m", "CONFIG_DELL_RBTN": "m", "CONFIG_DELL_SMBIOS": "m", "CONFIG_DELL_SMBIOS_WMI": "y", "CONFIG_DELL_SMBIOS_SMM": "y", "CONFIG_DELL_SMO8800": "m", "CONFIG_DELL_WMI": "m", "CONFIG_DELL_WMI_PRIVACY": "y", "CONFIG_DELL_WMI_AIO": "m", "CONFIG_DELL_WMI_DESCRIPTOR": "m", "CONFIG_DELL_WMI_DDV": "m", "CONFIG_DELL_WMI_LED": "m", "CONFIG_DELL_WMI_SYSMAN": "m", "CONFIG_AMILO_RFKILL": "m", "CONFIG_FUJITSU_LAPTOP": "m", "CONFIG_FUJITSU_TABLET": "m", "CONFIG_GPD_POCKET_FAN": "m", "CONFIG_X86_PLATFORM_DRIVERS_HP": "y", "CONFIG_HP_ACCEL": "m", "CONFIG_HP_WMI": "m", "CONFIG_WIRELESS_HOTKEY": "m", "CONFIG_IBM_RTL": "m", "CONFIG_IDEAPAD_LAPTOP": "m", "CONFIG_LENOVO_YMC": "m", "CONFIG_SENSORS_HDAPS": "m", "CONFIG_THINKPAD_ACPI": "m", "CONFIG_THINKPAD_ACPI_ALSA_SUPPORT": "y", "CONFIG_THINKPAD_ACPI_DEBUGFACILITIES": "not set", "CONFIG_THINKPAD_ACPI_DEBUG": "not set", "CONFIG_THINKPAD_ACPI_UNSAFE_LEDS": "not set", "CONFIG_THINKPAD_ACPI_VIDEO": "y", "CONFIG_THINKPAD_ACPI_HOTKEY_POLL": "y", "CONFIG_THINKPAD_LMI": "m", "CONFIG_INTEL_ATOMISP2_PDX86": "y", "CONFIG_INTEL_ATOMISP2_LED": "m", "CONFIG_INTEL_IFS": "m", "CONFIG_INTEL_SAR_INT1092": "m", "CONFIG_INTEL_SKL_INT3472": "m", "CONFIG_INTEL_PMC_CORE": "m", "CONFIG_INTEL_PMT_CLASS": "m", "CONFIG_INTEL_PMT_TELEMETRY": "m", "CONFIG_INTEL_PMT_CRASHLOG": "m", "CONFIG_INTEL_SPEED_SELECT_TPMI": "m", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "m", "CONFIG_INTEL_TELEMETRY": "m", "CONFIG_INTEL_WMI": "y", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "m", "CONFIG_INTEL_WMI_THUNDERBOLT": "m", "CONFIG_INTEL_UNCORE_FREQ_CONTROL_TPMI": "m", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "m", "CONFIG_INTEL_HID_EVENT": "m", "CONFIG_INTEL_VBTN": "m", "CONFIG_INTEL_INT0002_VGPIO": "m", "CONFIG_INTEL_OAKTRAIL": "m", "CONFIG_INTEL_BXTWC_PMIC_TMU": "m", "CONFIG_INTEL_CHTWC_INT33FE": "m", "CONFIG_INTEL_ISHTP_ECLITE": "m", "CONFIG_INTEL_MRFLD_PWRBTN": "m", "CONFIG_INTEL_PUNIT_IPC": "m", "CONFIG_INTEL_RST": "m", "CONFIG_INTEL_SDSI": "m", "CONFIG_INTEL_SMARTCONNECT": "m", "CONFIG_INTEL_TPMI": "m", "CONFIG_INTEL_TURBO_MAX_3": "y", "CONFIG_INTEL_VSEC": "m", "CONFIG_MSI_EC": "m", "CONFIG_MSI_LAPTOP": "m", "CONFIG_MSI_WMI": "m", "CONFIG_PCENGINES_APU2": "m", "CONFIG_BARCO_P50_GPIO": "m", "CONFIG_SAMSUNG_LAPTOP": "m", "CONFIG_SAMSUNG_Q10": "m", "CONFIG_ACPI_TOSHIBA": "m", "CONFIG_TOSHIBA_BT_RFKILL": "m", "CONFIG_TOSHIBA_HAPS": "m", "CONFIG_TOSHIBA_WMI": "m", "CONFIG_ACPI_CMPC": "m", "CONFIG_COMPAL_LAPTOP": "m", "CONFIG_LG_LAPTOP": "m", "CONFIG_PANASONIC_LAPTOP": "m", "CONFIG_SONY_LAPTOP": "m", "CONFIG_SONYPI_COMPAT": "y", "CONFIG_SYSTEM76_ACPI": "m", "CONFIG_TOPSTAR_LAPTOP": "m", "CONFIG_SERIAL_MULTI_INSTANTIATE": "m", "CONFIG_MLX_PLATFORM": "m", "CONFIG_TOUCHSCREEN_DMI": "y", "CONFIG_X86_ANDROID_TABLETS": "m", "CONFIG_FW_ATTR_CLASS": "m", "CONFIG_INTEL_IPS": "m", "CONFIG_INTEL_SCU_IPC": "y", "CONFIG_INTEL_SCU": "y", "CONFIG_INTEL_SCU_PCI": "y", "CONFIG_INTEL_SCU_PLATFORM": "m", "CONFIG_INTEL_SCU_IPC_UTIL": "m", "CONFIG_SIEMENS_SIMATIC_IPC": "m", "CONFIG_WINMATE_FM07_KEYS": "m", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_LMK04832": "m", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "m", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_TPS68470": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "m", "CONFIG_COMMON_CLK_NXP": "not set", "CONFIG_COMMON_CLK_PWM": "not set", "CONFIG_COMMON_CLK_PXA": "not set", "CONFIG_COMMON_CLK_STM32MP135": "not set", "CONFIG_COMMON_CLK_STM32MP157": "not set", "CONFIG_COMMON_CLK_STM32F": "not set", "CONFIG_COMMON_CLK_STM32H7": "not set", "CONFIG_COMMON_CLK_MMP2": "not set", "CONFIG_CLK_IMX1": "not set", "CONFIG_CLK_IMX25": "not set", "CONFIG_CLK_IMX27": "not set", "CONFIG_CLK_IMX31": "not set", "CONFIG_CLK_IMX35": "not set", "CONFIG_CLK_IMX5": "not set", "CONFIG_CLK_IMX6Q": "not set", "CONFIG_CLK_IMX6SL": "not set", "CONFIG_CLK_IMX6SLL": "not set", "CONFIG_CLK_IMX6SX": "not set", "CONFIG_CLK_IMX6UL": "not set", "CONFIG_CLK_IMX7D": "not set", "CONFIG_CLK_IMX7ULP": "not set", "CONFIG_CLK_VF610": "not set", "CONFIG_COMMON_CLK_PIC32": "not set", "CONFIG_CLK_INTEL_SOCFPGA": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "y", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MTK_CPUX_TIMER": "not set", "CONFIG_SH_TIMER_CMT": "not set", "CONFIG_SH_TIMER_MTU2": "not set", "CONFIG_SH_TIMER_TMU": "not set", "CONFIG_EM_TIMER_STI": "not set", "CONFIG_GXP_TIMER": "not set", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMUFD_DRIVER": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_IO_PGTABLE": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "not set", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "y", "CONFIG_IOMMU_DMA": "y", "CONFIG_IOMMU_SVA": "y", "CONFIG_AMD_IOMMU": "y", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "y", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_HYPERV_IOMMU": "y", "CONFIG_VIRTIO_IOMMU": "m", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG": "m", "CONFIG_RPMSG_CHAR": "m", "CONFIG_RPMSG_CTRL": "m", "CONFIG_RPMSG_NS": "m", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "m", "CONFIG_SOUNDWIRE": "m", "CONFIG_SOUNDWIRE_AMD": "m", "CONFIG_SOUNDWIRE_CADENCE": "m", "CONFIG_SOUNDWIRE_INTEL": "m", "CONFIG_SOUNDWIRE_QCOM": "not set", "CONFIG_SOUNDWIRE_GENERIC_ALLOCATION": "m", "CONFIG_IMX8M_BLK_CTRL": "not set", "CONFIG_IMX9_BLK_CTRL": "not set", "CONFIG_WPCM450_SOC": "m", "CONFIG_QCOM_QMI_HELPERS": "m", "CONFIG_SUNXI_SRAM": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "y", "CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND": "m", "CONFIG_DEVFREQ_GOV_PERFORMANCE": "m", "CONFIG_DEVFREQ_GOV_POWERSAVE": "m", "CONFIG_DEVFREQ_GOV_USERSPACE": "m", "CONFIG_DEVFREQ_GOV_PASSIVE": "m", "CONFIG_PM_DEVFREQ_EVENT": "y", "CONFIG_EXTCON": "y", "CONFIG_EXTCON_ADC_JACK": "not set", "CONFIG_EXTCON_AXP288": "m", "CONFIG_EXTCON_FSA9480": "m", "CONFIG_EXTCON_GPIO": "m", "CONFIG_EXTCON_INTEL_INT3496": "m", "CONFIG_EXTCON_INTEL_MRFLD": "m", "CONFIG_EXTCON_MAX3355": "m", "CONFIG_EXTCON_PTN5150": "m", "CONFIG_EXTCON_RT8973A": "not set", "CONFIG_EXTCON_SM5502": "m", "CONFIG_EXTCON_USB_GPIO": "not set", "CONFIG_EXTCON_USBC_CROS_EC": "m", "CONFIG_EXTCON_USBC_TUSB320": "m", "CONFIG_MEMORY": "y", "CONFIG_FPGA_DFL_EMIF": "m", "CONFIG_IIO": "m", "CONFIG_IIO_BUFFER": "y", "CONFIG_IIO_BUFFER_CB": "m", "CONFIG_IIO_BUFFER_DMA": "m", "CONFIG_IIO_BUFFER_DMAENGINE": "m", "CONFIG_IIO_BUFFER_HW_CONSUMER": "not set", "CONFIG_IIO_KFIFO_BUF": "m", "CONFIG_IIO_TRIGGERED_BUFFER": "m", "CONFIG_IIO_CONFIGFS": "m", "CONFIG_IIO_TRIGGER": "y", "CONFIG_IIO_CONSUMERS_PER_TRIGGER": "2", "CONFIG_IIO_SW_DEVICE": "m", "CONFIG_IIO_SW_TRIGGER": "m", "CONFIG_IIO_TRIGGERED_EVENT": "m", "CONFIG_ADIS16201": "not set", "CONFIG_ADIS16209": "not set", "CONFIG_ADXL313_I2C": "not set", "CONFIG_ADXL313_SPI": "not set", "CONFIG_ADXL355_I2C": "not set", "CONFIG_ADXL355_SPI": "not set", "CONFIG_ADXL367_SPI": "not set", "CONFIG_ADXL367_I2C": "not set", "CONFIG_ADXL372_SPI": "not set", "CONFIG_ADXL372_I2C": "not set", "CONFIG_BMA220": "not set", "CONFIG_BMA400": "not set", "CONFIG_BMC150_ACCEL": "m", "CONFIG_BMC150_ACCEL_I2C": "m", "CONFIG_BMC150_ACCEL_SPI": "m", "CONFIG_BMI088_ACCEL": "not set", "CONFIG_DA280": "not set", "CONFIG_DA311": "not set", "CONFIG_DMARD06": "not set", "CONFIG_DMARD09": "not set", "CONFIG_DMARD10": "not set", "CONFIG_FXLS8962AF_I2C": "not set", "CONFIG_FXLS8962AF_SPI": "not set", "CONFIG_HID_SENSOR_ACCEL_3D": "m", "CONFIG_IIO_ST_ACCEL_3AXIS": "not set", "CONFIG_IIO_KX022A_SPI": "not set", "CONFIG_IIO_KX022A_I2C": "not set", "CONFIG_KXSD9": "not set", "CONFIG_KXCJK1013": "m", "CONFIG_MC3230": "not set", "CONFIG_MMA7455": "m", "CONFIG_MMA7455_I2C": "m", "CONFIG_MMA7455_SPI": "m", "CONFIG_MMA7660": "not set", "CONFIG_MMA8452": "not set", "CONFIG_MMA9551_CORE": "m", "CONFIG_MMA9551": "m", "CONFIG_MMA9553": "m", "CONFIG_MSA311": "not set", "CONFIG_MXC4005": "m", "CONFIG_MXC6255": "m", "CONFIG_SCA3000": "not set", "CONFIG_SCA3300": "not set", "CONFIG_STK8312": "m", "CONFIG_STK8BA50": "m", "CONFIG_AD4130": "not set", "CONFIG_AD7091R5": "not set", "CONFIG_AD7124": "not set", "CONFIG_AD7192": "not set", "CONFIG_AD7266": "not set", "CONFIG_AD7280": "not set", "CONFIG_AD7291": "not set", "CONFIG_AD7292": "not set", "CONFIG_AD7298": "not set", "CONFIG_AD7476": "not set", "CONFIG_AD7606_IFACE_PARALLEL": "not set", "CONFIG_AD7606_IFACE_SPI": "not set", "CONFIG_AD7766": "not set", "CONFIG_AD7768_1": "not set", "CONFIG_AD7780": "not set", "CONFIG_AD7791": "not set", "CONFIG_AD7793": "not set", "CONFIG_AD7887": "not set", "CONFIG_AD7923": "not set", "CONFIG_AD7949": "not set", "CONFIG_AD799X": "not set", "CONFIG_AXP20X_ADC": "m", "CONFIG_AXP288_ADC": "m", "CONFIG_CC10001_ADC": "not set", "CONFIG_DLN2_ADC": "m", "CONFIG_ENVELOPE_DETECTOR": "not set", "CONFIG_HI8435": "m", "CONFIG_HX711": "not set", "CONFIG_INA2XX_ADC": "not set", "CONFIG_INTEL_MRFLD_ADC": "not set", "CONFIG_LTC2471": "not set", "CONFIG_LTC2485": "not set", "CONFIG_LTC2496": "not set", "CONFIG_LTC2497": "not set", "CONFIG_MAX1027": "not set", "CONFIG_MAX11100": "not set", "CONFIG_MAX1118": "not set", "CONFIG_MAX11205": "not set", "CONFIG_MAX11410": "not set", "CONFIG_MAX1241": "not set", "CONFIG_MAX1363": "not set", "CONFIG_MAX9611": "not set", "CONFIG_MCP320X": "not set", "CONFIG_MCP3422": "not set", "CONFIG_MCP3911": "not set", "CONFIG_NAU7802": "not set", "CONFIG_QCOM_SPMI_IADC": "not set", "CONFIG_QCOM_SPMI_VADC": "not set", "CONFIG_QCOM_SPMI_ADC5": "not set", "CONFIG_RICHTEK_RTQ6056": "not set", "CONFIG_SD_ADC_MODULATOR": "not set", "CONFIG_TI_ADC081C": "not set", "CONFIG_TI_ADC0832": "not set", "CONFIG_TI_ADC084S021": "not set", "CONFIG_TI_ADC12138": "not set", "CONFIG_TI_ADC108S102": "not set", "CONFIG_TI_ADC128S052": "not set", "CONFIG_TI_ADC161S626": "not set", "CONFIG_TI_ADS1015": "not set", "CONFIG_TI_ADS7924": "not set", "CONFIG_TI_ADS1100": "not set", "CONFIG_TI_ADS7950": "not set", "CONFIG_TI_ADS8344": "not set", "CONFIG_TI_ADS8688": "not set", "CONFIG_TI_ADS124S08": "not set", "CONFIG_TI_ADS131E08": "not set", "CONFIG_TI_LMP92064": "not set", "CONFIG_TI_TLC4541": "not set", "CONFIG_TI_TSC2046": "not set", "CONFIG_VF610_ADC": "not set", "CONFIG_VIPERBOARD_ADC": "not set", "CONFIG_XILINX_XADC": "not set", "CONFIG_AD74115": "not set", "CONFIG_AD74413R": "not set", "CONFIG_STX104": "not set", "CONFIG_IIO_RESCALE": "m", "CONFIG_AD8366": "not set", "CONFIG_ADA4250": "not set", "CONFIG_HMC425": "not set", "CONFIG_AD7150": "not set", "CONFIG_AD7746": "not set", "CONFIG_ATLAS_PH_SENSOR": "m", "CONFIG_ATLAS_EZO_SENSOR": "not set", "CONFIG_BME680": "m", "CONFIG_BME680_I2C": "m", "CONFIG_BME680_SPI": "m", "CONFIG_CCS811": "not set", "CONFIG_IAQCORE": "m", "CONFIG_PMS7003": "not set", "CONFIG_SCD30_CORE": "not set", "CONFIG_SCD4X": "not set", "CONFIG_SENSIRION_SGP30": "not set", "CONFIG_SENSIRION_SGP40": "not set", "CONFIG_SPS30_I2C": "not set", "CONFIG_SPS30_SERIAL": "not set", "CONFIG_SENSEAIR_SUNRISE_CO2": "not set", "CONFIG_VZ89X": "m", "CONFIG_IIO_CROS_EC_SENSORS_CORE": "not set", "CONFIG_HID_SENSOR_IIO_COMMON": "m", "CONFIG_HID_SENSOR_IIO_TRIGGER": "m", "CONFIG_IIO_MS_SENSORS_I2C": "m", "CONFIG_IIO_SSP_SENSORHUB": "not set", "CONFIG_AD3552R": "not set", "CONFIG_AD5064": "not set", "CONFIG_AD5360": "not set", "CONFIG_AD5380": "not set", "CONFIG_AD5421": "not set", "CONFIG_AD5446": "not set", "CONFIG_AD5449": "not set", "CONFIG_AD5592R": "not set", "CONFIG_AD5593R": "not set", "CONFIG_AD5504": "not set", "CONFIG_AD5624R_SPI": "not set", "CONFIG_LTC2688": "not set", "CONFIG_AD5686_SPI": "not set", "CONFIG_AD5696_I2C": "not set", "CONFIG_AD5755": "not set", "CONFIG_AD5758": "not set", "CONFIG_AD5761": "m", "CONFIG_AD5764": "not set", "CONFIG_AD5766": "not set", "CONFIG_AD5770R": "not set", "CONFIG_AD5791": "not set", "CONFIG_AD7293": "not set", "CONFIG_AD7303": "not set", "CONFIG_AD8801": "not set", "CONFIG_CIO_DAC": "not set", "CONFIG_DPOT_DAC": "not set", "CONFIG_DS4424": "not set", "CONFIG_LTC1660": "not set", "CONFIG_LTC2632": "not set", "CONFIG_M62332": "not set", "CONFIG_MAX517": "not set", "CONFIG_MAX5522": "not set", "CONFIG_MAX5821": "not set", "CONFIG_MCP4725": "not set", "CONFIG_MCP4922": "not set", "CONFIG_TI_DAC082S085": "not set", "CONFIG_TI_DAC5571": "not set", "CONFIG_TI_DAC7311": "not set", "CONFIG_TI_DAC7612": "not set", "CONFIG_VF610_DAC": "not set", "CONFIG_IIO_SIMPLE_DUMMY": "not set", "CONFIG_ADMV8818": "not set", "CONFIG_AD9523": "not set", "CONFIG_ADF4350": "not set", "CONFIG_ADF4371": "not set", "CONFIG_ADF4377": "not set", "CONFIG_ADMV1013": "not set", "CONFIG_ADMV1014": "not set", "CONFIG_ADMV4420": "not set", "CONFIG_ADRF6780": "not set", "CONFIG_ADIS16080": "not set", "CONFIG_ADIS16130": "not set", "CONFIG_ADIS16136": "not set", "CONFIG_ADIS16260": "not set", "CONFIG_ADXRS290": "not set", "CONFIG_ADXRS450": "not set", "CONFIG_BMG160": "not set", "CONFIG_FXAS21002C": "not set", "CONFIG_HID_SENSOR_GYRO_3D": "m", "CONFIG_MPU3050_I2C": "not set", "CONFIG_IIO_ST_GYRO_3AXIS": "not set", "CONFIG_ITG3200": "not set", "CONFIG_AFE4403": "not set", "CONFIG_AFE4404": "not set", "CONFIG_MAX30100": "m", "CONFIG_MAX30102": "m", "CONFIG_AM2315": "m", "CONFIG_DHT11": "not set", "CONFIG_HDC100X": "m", "CONFIG_HDC2010": "not set", "CONFIG_HID_SENSOR_HUMIDITY": "m", "CONFIG_HTS221": "not set", "CONFIG_HTU21": "m", "CONFIG_SI7005": "not set", "CONFIG_SI7020": "not set", "CONFIG_ADIS16400": "not set", "CONFIG_ADIS16460": "not set", "CONFIG_ADIS16475": "not set", "CONFIG_ADIS16480": "not set", "CONFIG_BMI160": "m", "CONFIG_BMI160_I2C": "m", "CONFIG_BMI160_SPI": "m", "CONFIG_BOSCH_BNO055_SERIAL": "not set", "CONFIG_BOSCH_BNO055_I2C": "not set", "CONFIG_FXOS8700_I2C": "not set", "CONFIG_FXOS8700_SPI": "not set", "CONFIG_KMX61": "m", "CONFIG_INV_ICM42600_I2C": "not set", "CONFIG_INV_ICM42600_SPI": "not set", "CONFIG_INV_MPU6050_IIO": "m", "CONFIG_INV_MPU6050_I2C": "m", "CONFIG_INV_MPU6050_SPI": "not set", "CONFIG_IIO_ST_LSM6DSX": "not set", "CONFIG_IIO_ST_LSM9DS0": "not set", "CONFIG_ACPI_ALS": "m", "CONFIG_ADJD_S311": "not set", "CONFIG_ADUX1020": "not set", "CONFIG_AL3010": "not set", "CONFIG_AL3320A": "not set", "CONFIG_APDS9300": "not set", "CONFIG_APDS9960": "m", "CONFIG_AS73211": "not set", "CONFIG_BH1750": "not set", "CONFIG_BH1780": "m", "CONFIG_CM32181": "not set", "CONFIG_CM3232": "not set", "CONFIG_CM3323": "not set", "CONFIG_CM3605": "not set", "CONFIG_CM36651": "not set", "CONFIG_GP2AP002": "not set", "CONFIG_GP2AP020A00F": "not set", "CONFIG_IQS621_ALS": "not set", "CONFIG_SENSORS_ISL29018": "not set", "CONFIG_SENSORS_ISL29028": "not set", "CONFIG_ISL29125": "not set", "CONFIG_HID_SENSOR_ALS": "m", "CONFIG_HID_SENSOR_PROX": "m", "CONFIG_JSA1212": "m", "CONFIG_ROHM_BU27034": "not set", "CONFIG_RPR0521": "m", "CONFIG_SENSORS_LM3533": "not set", "CONFIG_LTR501": "not set", "CONFIG_LTRF216A": "not set", "CONFIG_LV0104CS": "not set", "CONFIG_MAX44000": "m", "CONFIG_MAX44009": "m", "CONFIG_NOA1305": "not set", "CONFIG_OPT3001": "not set", "CONFIG_PA12203001": "not set", "CONFIG_SI1133": "not set", "CONFIG_SI1145": "not set", "CONFIG_STK3310": "not set", "CONFIG_ST_UVIS25": "not set", "CONFIG_TCS3414": "not set", "CONFIG_TCS3472": "not set", "CONFIG_SENSORS_TSL2563": "not set", "CONFIG_TSL2583": "not set", "CONFIG_TSL2591": "not set", "CONFIG_TSL2772": "not set", "CONFIG_TSL4531": "not set", "CONFIG_US5182D": "m", "CONFIG_VCNL4000": "not set", "CONFIG_VCNL4035": "not set", "CONFIG_VEML6030": "not set", "CONFIG_VEML6070": "m", "CONFIG_VL6180": "m", "CONFIG_ZOPT2201": "not set", "CONFIG_AK8974": "not set", "CONFIG_AK8975": "not set", "CONFIG_AK09911": "not set", "CONFIG_BMC150_MAGN": "m", "CONFIG_BMC150_MAGN_I2C": "m", "CONFIG_BMC150_MAGN_SPI": "m", "CONFIG_MAG3110": "not set", "CONFIG_HID_SENSOR_MAGNETOMETER_3D": "m", "CONFIG_MMC35240": "not set", "CONFIG_IIO_ST_MAGN_3AXIS": "not set", "CONFIG_SENSORS_HMC5843_I2C": "not set", "CONFIG_SENSORS_HMC5843_SPI": "not set", "CONFIG_SENSORS_RM3100_I2C": "not set", "CONFIG_SENSORS_RM3100_SPI": "not set", "CONFIG_TI_TMAG5273": "not set", "CONFIG_YAMAHA_YAS530": "not set", "CONFIG_IIO_MUX": "m", "CONFIG_HID_SENSOR_INCLINOMETER_3D": "m", "CONFIG_HID_SENSOR_DEVICE_ROTATION": "m", "CONFIG_IIO_HRTIMER_TRIGGER": "m", "CONFIG_IIO_INTERRUPT_TRIGGER": "not set", "CONFIG_IIO_TIGHTLOOP_TRIGGER": "not set", "CONFIG_IIO_SYSFS_TRIGGER": "not set", "CONFIG_IQS624_POS": "not set", "CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE": "not set", "CONFIG_AD5110": "not set", "CONFIG_AD5272": "m", "CONFIG_DS1803": "m", "CONFIG_MAX5432": "not set", "CONFIG_MAX5481": "not set", "CONFIG_MAX5487": "m", "CONFIG_MCP4018": "m", "CONFIG_MCP4131": "m", "CONFIG_MCP4531": "m", "CONFIG_MCP41010": "m", "CONFIG_TPL0102": "m", "CONFIG_LMP91000": "not set", "CONFIG_ABP060MG": "not set", "CONFIG_BMP280": "m", "CONFIG_BMP280_I2C": "m", "CONFIG_BMP280_SPI": "m", "CONFIG_DLHL60D": "not set", "CONFIG_DPS310": "not set", "CONFIG_HID_SENSOR_PRESS": "m", "CONFIG_HP03": "m", "CONFIG_ICP10100": "not set", "CONFIG_MPL115_I2C": "not set", "CONFIG_MPL115_SPI": "not set", "CONFIG_MPL3115": "not set", "CONFIG_MS5611": "not set", "CONFIG_MS5637": "m", "CONFIG_IIO_ST_PRESS": "not set", "CONFIG_T5403": "not set", "CONFIG_HP206C": "m", "CONFIG_ZPA2326": "not set", "CONFIG_AS3935": "not set", "CONFIG_CROS_EC_MKBP_PROXIMITY": "not set", "CONFIG_ISL29501": "m", "CONFIG_LIDAR_LITE_V2": "m", "CONFIG_MB1232": "not set", "CONFIG_PING": "not set", "CONFIG_RFD77402": "m", "CONFIG_SRF04": "m", "CONFIG_SX9310": "not set", "CONFIG_SX9324": "not set", "CONFIG_SX9360": "not set", "CONFIG_SX9500": "m", "CONFIG_SRF08": "not set", "CONFIG_VCNL3020": "not set", "CONFIG_VL53L0X_I2C": "m", "CONFIG_AD2S90": "not set", "CONFIG_AD2S1200": "not set", "CONFIG_IQS620AT_TEMP": "not set", "CONFIG_LTC2983": "not set", "CONFIG_MAXIM_THERMOCOUPLE": "not set", "CONFIG_HID_SENSOR_TEMP": "m", "CONFIG_MLX90614": "m", "CONFIG_MLX90632": "m", "CONFIG_TMP006": "not set", "CONFIG_TMP007": "not set", "CONFIG_TMP117": "not set", "CONFIG_TSYS01": "m", "CONFIG_TSYS02D": "m", "CONFIG_MAX30208": "m", "CONFIG_MAX31856": "m", "CONFIG_MAX31865": "m", "CONFIG_NTB": "m", "CONFIG_NTB_MSI": "y", "CONFIG_NTB_AMD": "m", "CONFIG_NTB_IDT": "m", "CONFIG_NTB_INTEL": "m", "CONFIG_NTB_EPF": "m", "CONFIG_NTB_SWITCHTEC": "m", "CONFIG_NTB_PINGPONG": "not set", "CONFIG_NTB_TOOL": "not set", "CONFIG_NTB_PERF": "m", "CONFIG_NTB_MSI_TEST": "not set", "CONFIG_NTB_TRANSPORT": "m", "CONFIG_PWM": "y", "CONFIG_PWM_SYSFS": "y", "CONFIG_PWM_DEBUG": "not set", "CONFIG_PWM_CLK": "m", "CONFIG_PWM_CROS_EC": "m", "CONFIG_PWM_DWC": "m", "CONFIG_PWM_IQS620A": "m", "CONFIG_PWM_LP3943": "m", "CONFIG_PWM_LPSS": "m", "CONFIG_PWM_LPSS_PCI": "m", "CONFIG_PWM_LPSS_PLATFORM": "m", "CONFIG_PWM_PCA9685": "m", "CONFIG_ARM_GIC_V3_ITS": "not set", "CONFIG_MADERA_IRQ": "m", "CONFIG_SUNPLUS_SP7021_INTC": "not set", "CONFIG_IPACK_BUS": "m", "CONFIG_BOARD_TPCI200": "m", "CONFIG_SERIAL_IPOCTAL": "m", "CONFIG_RESET_CONTROLLER": "y", "CONFIG_RESET_ATH79": "not set", "CONFIG_RESET_AXS10X": "not set", "CONFIG_RESET_LANTIQ": "not set", "CONFIG_RESET_LPC18XX": "not set", "CONFIG_RESET_NPCM": "not set", "CONFIG_RESET_SIMPLE": "not set", "CONFIG_RESET_SOCFPGA": "not set", "CONFIG_RESET_SUNPLUS": "not set", "CONFIG_RESET_SUNXI": "not set", "CONFIG_RESET_TI_SYSCON": "not set", "CONFIG_RESET_TI_TPS380X": "not set", "CONFIG_RESET_ZYNQ": "not set", "CONFIG_RESET_TEGRA_BPMP": "not set", "CONFIG_GENERIC_PHY": "y", "CONFIG_GENERIC_PHY_MIPI_DPHY": "y", "CONFIG_USB_LGM_PHY": "m", "CONFIG_PHY_CAN_TRANSCEIVER": "m", "CONFIG_BCM_KONA_USB2_PHY": "m", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_CPCAP_USB": "not set", "CONFIG_PHY_QCOM_USB_HS": "m", "CONFIG_PHY_QCOM_USB_HSIC": "not set", "CONFIG_PHY_TUSB1210": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "m", "CONFIG_POWERCAP": "y", "CONFIG_INTEL_RAPL_CORE": "m", "CONFIG_INTEL_RAPL": "m", "CONFIG_INTEL_RAPL_TPMI": "m", "CONFIG_IDLE_INJECT": "y", "CONFIG_MCB": "not set", "CONFIG_RAS": "y", "CONFIG_RAS_CEC": "y", "CONFIG_RAS_CEC_DEBUG": "not set", "CONFIG_AMD_ATL": "m", "CONFIG_AMD_ATL_PRM": "y", "CONFIG_RAS_FMPM": "m", "CONFIG_USB4": "m", "CONFIG_USB4_DEBUGFS_WRITE": "not set", "CONFIG_USB4_DMA_TEST": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "m", "CONFIG_BLK_DEV_PMEM": "m", "CONFIG_ND_CLAIM": "y", "CONFIG_ND_BTT": "m", "CONFIG_BTT": "y", "CONFIG_ND_PFN": "m", "CONFIG_NVDIMM_PFN": "y", "CONFIG_NVDIMM_DAX": "y", "CONFIG_NVDIMM_KEYS": "y", "CONFIG_NVDIMM_SECURITY_TEST": "not set", "CONFIG_DAX": "y", "CONFIG_DEV_DAX": "m", "CONFIG_DEV_DAX_PMEM": "m", "CONFIG_DEV_DAX_HMEM": "m", "CONFIG_DEV_DAX_CXL": "m", "CONFIG_DEV_DAX_HMEM_DEVICES": "y", "CONFIG_DEV_DAX_KMEM": "m", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUT_SL28_VPD": "m", "CONFIG_NVMEM_LAYOUT_ONIE_TLV": "m", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_NVMEM_SPMI_SDAM": "m", "CONFIG_NVMEM_STM32_BSEC_OPTEE_TA": "not set", "CONFIG_STM": "m", "CONFIG_STM_PROTO_BASIC": "m", "CONFIG_STM_PROTO_SYS_T": "m", "CONFIG_STM_DUMMY": "m", "CONFIG_STM_SOURCE_CONSOLE": "m", "CONFIG_STM_SOURCE_HEARTBEAT": "m", "CONFIG_STM_SOURCE_FTRACE": "m", "CONFIG_INTEL_TH": "m", "CONFIG_INTEL_TH_PCI": "m", "CONFIG_INTEL_TH_ACPI": "m", "CONFIG_INTEL_TH_GTH": "m", "CONFIG_INTEL_TH_STH": "m", "CONFIG_INTEL_TH_MSU": "m", "CONFIG_INTEL_TH_PTI": "m", "CONFIG_INTEL_TH_DEBUG": "not set", "CONFIG_FPGA": "m", "CONFIG_ALTERA_PR_IP_CORE": "m", "CONFIG_FPGA_MGR_ALTERA_PS_SPI": "not set", "CONFIG_FPGA_MGR_ALTERA_CVP": "m", "CONFIG_FPGA_MGR_XILINX_SPI": "not set", "CONFIG_FPGA_MGR_MACHXO2_SPI": "not set", "CONFIG_FPGA_BRIDGE": "m", "CONFIG_ALTERA_FREEZE_BRIDGE": "m", "CONFIG_XILINX_PR_DECOUPLER": "m", "CONFIG_FPGA_REGION": "m", "CONFIG_FPGA_DFL": "m", "CONFIG_FPGA_DFL_FME": "m", "CONFIG_FPGA_DFL_FME_MGR": "m", "CONFIG_FPGA_DFL_FME_BRIDGE": "m", "CONFIG_FPGA_DFL_FME_REGION": "m", "CONFIG_FPGA_DFL_AFU": "m", "CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000": "m", "CONFIG_FPGA_DFL_PCI": "m", "CONFIG_FPGA_MGR_MICROCHIP_SPI": "m", "CONFIG_FPGA_MGR_LATTICE_SYSCONFIG": "m", "CONFIG_FPGA_MGR_LATTICE_SYSCONFIG_SPI": "m", "CONFIG_TEE": "m", "CONFIG_AMDTEE": "m", "CONFIG_MULTIPLEXER": "m", "CONFIG_MUX_ADG792A": "not set", "CONFIG_MUX_ADGS1408": "not set", "CONFIG_MUX_GPIO": "not set", "CONFIG_PM_OPP": "y", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "y", "CONFIG_DPLL": "y", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "m", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "m", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "m", "CONFIG_REISERFS_FS": "m", "CONFIG_REISERFS_CHECK": "not set", "CONFIG_REISERFS_PROC_INFO": "not set", "CONFIG_REISERFS_FS_XATTR": "y", "CONFIG_REISERFS_FS_POSIX_ACL": "y", "CONFIG_REISERFS_FS_SECURITY": "y", "CONFIG_JFS_FS": "m", "CONFIG_JFS_POSIX_ACL": "y", "CONFIG_JFS_SECURITY": "y", "CONFIG_JFS_DEBUG": "not set", "CONFIG_JFS_STATISTICS": "y", "CONFIG_XFS_FS": "m", "CONFIG_XFS_SUPPORT_V4": "y", "CONFIG_XFS_SUPPORT_ASCII_CI": "y", "CONFIG_XFS_QUOTA": "y", "CONFIG_XFS_POSIX_ACL": "y", "CONFIG_XFS_RT": "not set", "CONFIG_XFS_ONLINE_SCRUB": "not set", "CONFIG_XFS_WARN": "not set", "CONFIG_XFS_DEBUG": "not set", "CONFIG_GFS2_FS": "m", "CONFIG_GFS2_FS_LOCKING_DLM": "y", "CONFIG_OCFS2_FS": "m", "CONFIG_OCFS2_FS_O2CB": "m", "CONFIG_OCFS2_FS_USERSPACE_CLUSTER": "m", "CONFIG_OCFS2_FS_STATS": "y", "CONFIG_OCFS2_DEBUG_MASKLOG": "y", "CONFIG_OCFS2_DEBUG_FS": "not set", "CONFIG_BTRFS_FS": "m", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_CHECK_INTEGRITY": "not set", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "y", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "m", "CONFIG_F2FS_FS": "not set", "CONFIG_ZONEFS_FS": "m", "CONFIG_FS_DAX": "y", "CONFIG_FS_DAX_PMD": "y", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "y", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "m", "CONFIG_FS_ENCRYPTION_INLINE_CRYPT": "y", "CONFIG_FS_VERITY": "y", "CONFIG_FS_VERITY_BUILTIN_SIGNATURES": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "y", "CONFIG_FANOTIFY_ACCESS_PERMISSIONS": "y", "CONFIG_QUOTA": "y", "CONFIG_QUOTA_NETLINK_INTERFACE": "y", "CONFIG_QUOTA_DEBUG": "not set", "CONFIG_QUOTA_TREE": "m", "CONFIG_QFMT_V1": "m", "CONFIG_QFMT_V2": "m", "CONFIG_QUOTACTL": "y", "CONFIG_AUTOFS4_FS": "m", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "m", "CONFIG_FUSE_DAX": "y", "CONFIG_OVERLAY_FS": "m", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "not set", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_NETFS_SUPPORT": "m", "CONFIG_NETFS_STATS": "y", "CONFIG_FSCACHE": "m", "CONFIG_FSCACHE_STATS": "y", "CONFIG_FSCACHE_DEBUG": "not set", "CONFIG_CACHEFILES": "m", "CONFIG_CACHEFILES_DEBUG": "not set", "CONFIG_CACHEFILES_ERROR_INJECTION": "not set", "CONFIG_CACHEFILES_ONDEMAND": "not set", "CONFIG_ISO9660_FS": "m", "CONFIG_JOLIET": "y", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "m", "CONFIG_FAT_FS": "m", "CONFIG_MSDOS_FS": "m", "CONFIG_VFAT_FS": "m", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "m", "CONFIG_EXFAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_NTFS_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_VMCORE": "y", "CONFIG_PROC_VMCORE_DEVICE_DUMP": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_PROC_CPU_RESCTRL": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "y", "CONFIG_ARCH_SUPPORTS_HUGETLBFS": "not set", "CONFIG_HUGETLBFS": "y", "CONFIG_HUGETLB_PAGE": "y", "CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP": "y", "CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON": "not set", "CONFIG_MEMFD_CREATE": "y", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "m", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "m", "CONFIG_ADFS_FS": "m", "CONFIG_ADFS_FS_RW": "y", "CONFIG_AFFS_FS": "m", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "m", "CONFIG_BEFS_FS": "m", "CONFIG_BEFS_DEBUG": "not set", "CONFIG_BFS_FS": "m", "CONFIG_EFS_FS": "m", "CONFIG_JFFS2_FS": "m", "CONFIG_JFFS2_FS_DEBUG": "0", "CONFIG_JFFS2_FS_WRITEBUFFER": "y", "CONFIG_JFFS2_FS_WBUF_VERIFY": "not set", "CONFIG_JFFS2_SUMMARY": "y", "CONFIG_JFFS2_FS_XATTR": "y", "CONFIG_JFFS2_FS_POSIX_ACL": "y", "CONFIG_JFFS2_FS_SECURITY": "y", "CONFIG_JFFS2_COMPRESSION_OPTIONS": "y", "CONFIG_JFFS2_ZLIB": "y", "CONFIG_JFFS2_LZO": "not set", "CONFIG_JFFS2_RTIME": "y", "CONFIG_JFFS2_RUBIN": "not set", "CONFIG_JFFS2_CMODE_NONE": "not set", "CONFIG_JFFS2_CMODE_PRIORITY": "y", "CONFIG_JFFS2_CMODE_SIZE": "not set", "CONFIG_JFFS2_CMODE_FAVOURLZO": "not set", "CONFIG_UBIFS_FS": "m", "CONFIG_UBIFS_FS_ADVANCED_COMPR": "y", "CONFIG_UBIFS_FS_LZO": "y", "CONFIG_UBIFS_FS_ZLIB": "y", "CONFIG_UBIFS_FS_ZSTD": "y", "CONFIG_UBIFS_ATIME_SUPPORT": "y", "CONFIG_UBIFS_FS_XATTR": "y", "CONFIG_UBIFS_FS_SECURITY": "y", "CONFIG_UBIFS_FS_AUTHENTICATION": "y", "CONFIG_CRAMFS": "m", "CONFIG_CRAMFS_BLOCKDEV": "y", "CONFIG_CRAMFS_MTD": "y", "CONFIG_SQUASHFS": "m", "CONFIG_SQUASHFS_FILE_CACHE": "not set", "CONFIG_SQUASHFS_FILE_DIRECT": "y", "CONFIG_SQUASHFS_DECOMP_SINGLE": "y", "CONFIG_SQUASHFS_DECOMP_MULTI": "y", "CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU": "y", "CONFIG_SQUASHFS_CHOICE_DECOMP_BY_MOUNT": "y", "CONFIG_SQUASHFS_MOUNT_DECOMP_THREADS": "y", "CONFIG_SQUASHFS_XATTR": "y", "CONFIG_SQUASHFS_ZLIB": "y", "CONFIG_SQUASHFS_LZ4": "y", "CONFIG_SQUASHFS_LZO": "y", "CONFIG_SQUASHFS_XZ": "y", "CONFIG_SQUASHFS_ZSTD": "y", "CONFIG_SQUASHFS_4K_DEVBLK_SIZE": "not set", "CONFIG_SQUASHFS_EMBEDDED": "not set", "CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE": "3", "CONFIG_VXFS_FS": "m", "CONFIG_MINIX_FS": "m", "CONFIG_OMFS_FS": "m", "CONFIG_HPFS_FS": "m", "CONFIG_QNX4FS_FS": "m", "CONFIG_QNX6FS_FS": "m", "CONFIG_QNX6FS_DEBUG": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "not set", "CONFIG_ROMFS_BACKED_BY_MTD": "not set", "CONFIG_ROMFS_BACKED_BY_BOTH": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_ROMFS_ON_MTD": "y", "CONFIG_PSTORE": "y", "CONFIG_PSTORE_DEFAULT_KMSG_BYTES": "10240", "CONFIG_PSTORE_DEFLATE_COMPRESS": "m", "CONFIG_PSTORE_LZO_COMPRESS": "y", "CONFIG_PSTORE_LZ4_COMPRESS": "not set", "CONFIG_PSTORE_LZ4HC_COMPRESS": "m", "CONFIG_PSTORE_842_COMPRESS": "not set", "CONFIG_PSTORE_ZSTD_COMPRESS": "y", "CONFIG_PSTORE_COMPRESS": "y", "CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_LZO_COMPRESS_DEFAULT": "y", "CONFIG_PSTORE_LZ4HC_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_ZSTD_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_COMPRESS_DEFAULT": "\\"lzo\\"", "CONFIG_PSTORE_CONSOLE": "y", "CONFIG_PSTORE_PMSG": "y", "CONFIG_PSTORE_FTRACE": "y", "CONFIG_PSTORE_RAM": "m", "CONFIG_PSTORE_ZONE": "m", "CONFIG_PSTORE_BLK": "m", "CONFIG_PSTORE_BLK_BLKDEV": "\\"\\"", "CONFIG_PSTORE_BLK_KMSG_SIZE": "64", "CONFIG_PSTORE_BLK_MAX_REASON": "2", "CONFIG_PSTORE_BLK_PMSG_SIZE": "64", "CONFIG_PSTORE_BLK_CONSOLE_SIZE": "64", "CONFIG_PSTORE_BLK_FTRACE_SIZE": "64", "CONFIG_SYSV_FS": "m", "CONFIG_UFS_FS": "m", "CONFIG_UFS_FS_WRITE": "y", "CONFIG_UFS_DEBUG": "not set", "CONFIG_EROFS_FS": "m", "CONFIG_EROFS_FS_DEBUG": "not set", "CONFIG_EROFS_FS_XATTR": "y", "CONFIG_EROFS_FS_POSIX_ACL": "y", "CONFIG_EROFS_FS_SECURITY": "y", "CONFIG_EROFS_FS_ZIP": "y", "CONFIG_EROFS_FS_ZIP_LZMA": "y", "CONFIG_EROFS_FS_PCPU_KTHREAD": "not set", "CONFIG_VBOXSF_FS": "m", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "m", "CONFIG_NFS_V2": "m", "CONFIG_NFS_V3": "m", "CONFIG_NFS_V3_ACL": "y", "CONFIG_NFS_V4": "m", "CONFIG_NFS_SWAP": "y", "CONFIG_NFS_V4_1": "y", "CONFIG_NFS_V4_2": "y", "CONFIG_PNFS_FILE_LAYOUT": "m", "CONFIG_PNFS_BLOCK": "m", "CONFIG_PNFS_FLEXFILE_LAYOUT": "m", "CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN": "\\"kernel.org\\"", "CONFIG_NFS_V4_1_MIGRATION": "not set", "CONFIG_NFS_V4_SECURITY_LABEL": "y", "CONFIG_NFS_FSCACHE": "y", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DEBUG": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFS_V4_2_READ_PLUS": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "y", "CONFIG_NFSD_V2_ACL": "y", "CONFIG_NFSD_V3_ACL": "y", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_PNFS": "y", "CONFIG_NFSD_BLOCKLAYOUT": "y", "CONFIG_NFSD_SCSILAYOUT": "y", "CONFIG_NFSD_FLEXFILELAYOUT": "y", "CONFIG_NFSD_V4_2_INTER_SSC": "y", "CONFIG_NFSD_V4_SECURITY_LABEL": "y", "CONFIG_GRACE_PERIOD": "m", "CONFIG_LOCKD": "m", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_ACL_SUPPORT": "m", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_V4_2_SSC_HELPER": "y", "CONFIG_SUNRPC": "m", "CONFIG_SUNRPC_GSS": "m", "CONFIG_SUNRPC_BACKCHANNEL": "y", "CONFIG_SUNRPC_SWAP": "y", "CONFIG_RPCSEC_GSS_KRB5": "m", "CONFIG_RPCSEC_GSS_KRB5_CRYPTOSYSTEM": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_DES": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "y", "CONFIG_SUNRPC_DEBUG": "y", "CONFIG_SUNRPC_XPRT_RDMA": "m", "CONFIG_CEPH_FS": "m", "CONFIG_CEPH_FSCACHE": "y", "CONFIG_CEPH_FS_POSIX_ACL": "y", "CONFIG_CEPH_FS_SECURITY_LABEL": "y", "CONFIG_CIFS": "m", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "y", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "y", "CONFIG_CIFS_SWN_UPCALL": "y", "CONFIG_CIFS_SMB_DIRECT": "not set", "CONFIG_CIFS_FSCACHE": "y", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "m", "CONFIG_CODA_FS": "m", "CONFIG_AFS_FS": "not set", "CONFIG_9P_FS": "m", "CONFIG_9P_FSCACHE": "y", "CONFIG_9P_FS_POSIX_ACL": "y", "CONFIG_9P_FS_SECURITY": "y", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"utf8\\"", "CONFIG_NLS_CODEPAGE_437": "m", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "m", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "m", "CONFIG_NLS_MAC_CELTIC": "m", "CONFIG_NLS_MAC_CENTEURO": "m", "CONFIG_NLS_MAC_CROATIAN": "m", "CONFIG_NLS_MAC_CYRILLIC": "m", "CONFIG_NLS_MAC_GAELIC": "m", "CONFIG_NLS_MAC_GREEK": "m", "CONFIG_NLS_MAC_ICELAND": "m", "CONFIG_NLS_MAC_INUIT": "m", "CONFIG_NLS_MAC_ROMANIAN": "m", "CONFIG_NLS_MAC_TURKISH": "m", "CONFIG_NLS_UTF8": "m", "CONFIG_DLM": "m", "CONFIG_DLM_DEBUG": "y", "CONFIG_UNICODE": "y", "CONFIG_UNICODE_NORMALIZATION_SELFTEST": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "y", "CONFIG_PERSISTENT_KEYRINGS": "y", "CONFIG_TRUSTED_KEYS": "y", "CONFIG_TRUSTED_KEYS_TPM": "y", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "y", "CONFIG_KEY_NOTIFICATIONS": "y", "CONFIG_SECURITY_DMESG_RESTRICT": "y", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "y", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_INFINIBAND": "y", "CONFIG_SECURITY_NETWORK_XFRM": "y", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "y", "CONFIG_LSM_MMAP_MIN_ADDR": "0", "CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR": "y", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "y", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_HIDDEN_AREA": "y", "CONFIG_SECURITY_SELINUX": "y", "CONFIG_SECURITY_SELINUX_BOOTPARAM": "y", "CONFIG_SECURITY_SELINUX_DEVELOP": "y", "CONFIG_SECURITY_SELINUX_AVC_STATS": "y", "CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS": "9", "CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE": "256", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "y", "CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY": "2048", "CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG": "1024", "CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER": "not set", "CONFIG_SECURITY_TOMOYO_POLICY_LOADER": "\\"/sbin/tomoyo-init\\"", "CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER": "\\"/sbin/init\\"", "CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING": "not set", "CONFIG_SECURITY_APPARMOR": "y", "CONFIG_SECURITY_APPARMOR_DEBUG": "not set", "CONFIG_SECURITY_APPARMOR_INTROSPECT_POLICY": "y", "CONFIG_SECURITY_APPARMOR_HASH": "y", "CONFIG_SECURITY_APPARMOR_HASH_DEFAULT": "y", "CONFIG_SECURITY_APPARMOR_EXPORT_BINARY": "y", "CONFIG_SECURITY_APPARMOR_PARANOID_LOAD": "y", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "y", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "y", "CONFIG_SECURITY_LOCKDOWN_LSM_EARLY": "y", "CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT": "y", "CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE": "y", "CONFIG_LOCK_DOWN_KERNEL_FORCE_INTEGRITY": "not set", "CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "y", "CONFIG_INTEGRITY_ASYMMETRIC_KEYS": "y", "CONFIG_INTEGRITY_TRUSTED_KEYRING": "y", "CONFIG_INTEGRITY_PLATFORM_KEYRING": "y", "CONFIG_INTEGRITY_MACHINE_KEYRING": "y", "CONFIG_INTEGRITY_CA_MACHINE_KEYRING": "not set", "CONFIG_LOAD_UEFI_KEYS": "y", "CONFIG_INTEGRITY_AUDIT": "y", "CONFIG_IMA": "y", "CONFIG_IMA_KEXEC": "not set", "CONFIG_IMA_MEASURE_PCR_IDX": "10", "CONFIG_IMA_LSM_RULES": "y", "CONFIG_IMA_NG_TEMPLATE": "y", "CONFIG_IMA_SIG_TEMPLATE": "not set", "CONFIG_IMA_DEFAULT_TEMPLATE": "\\"ima-ng\\"", "CONFIG_IMA_DEFAULT_HASH_SHA1": "not set", "CONFIG_IMA_DEFAULT_HASH_SHA256": "y", "CONFIG_IMA_DEFAULT_HASH_SHA512": "not set", "CONFIG_IMA_DEFAULT_HASH": "\\"sha256\\"", "CONFIG_IMA_WRITE_POLICY": "not set", "CONFIG_IMA_READ_POLICY": "y", "CONFIG_IMA_APPRAISE": "y", "CONFIG_IMA_ARCH_POLICY": "y", "CONFIG_IMA_APPRAISE_BUILD_POLICY": "not set", "CONFIG_IMA_APPRAISE_BOOTPARAM": "y", "CONFIG_IMA_APPRAISE_MODSIG": "y", "CONFIG_IMA_TRUSTED_KEYRING": "y", "CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY": "not set", "CONFIG_IMA_BLACKLIST_KEYRING": "not set", "CONFIG_IMA_LOAD_X509": "not set", "CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS": "y", "CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS": "y", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "y", "CONFIG_IMA_DISABLE_HTABLE": "y", "CONFIG_EVM": "y", "CONFIG_EVM_ATTR_FSUUID": "y", "CONFIG_EVM_ADD_XATTRS": "y", "CONFIG_EVM_LOAD_X509": "not set", "CONFIG_DEFAULT_SECURITY_SELINUX": "not set", "CONFIG_DEFAULT_SECURITY_TOMOYO": "not set", "CONFIG_DEFAULT_SECURITY_APPARMOR": "y", "CONFIG_DEFAULT_SECURITY_DAC": "not set", "CONFIG_LSM": "\\"integrity,apparmor,selinux,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_ENABLER": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "not set", "CONFIG_INIT_STACK_NONE": "y", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "not set", "CONFIG_CC_HAS_RANDSTRUCT": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT": "not set", "CONFIG_GCC_PLUGIN_RANDSTRUCT": "not set", "CONFIG_XOR_BLOCKS": "m", "CONFIG_ASYNC_CORE": "m", "CONFIG_ASYNC_MEMCPY": "m", "CONFIG_ASYNC_XOR": "m", "CONFIG_ASYNC_PQ": "m", "CONFIG_ASYNC_RAID6_RECOV": "m", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_FIPS": "y", "CONFIG_CRYPTO_FIPS_NAME": "\\"Linux Kernel Cryptographic API\\"", "CONFIG_CRYPTO_FIPS_CUSTOM_VERSION": "not set", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "m", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "not set", "CONFIG_CRYPTO_MANAGER_EXTRA_TESTS": "not set", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "m", "CONFIG_CRYPTO_CRYPTD": "m", "CONFIG_CRYPTO_AUTHENC": "m", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_SIMD": "m", "CONFIG_CRYPTO_ENGINE": "m", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "y", "CONFIG_CRYPTO_DH_RFC7919_GROUPS": "y", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "m", "CONFIG_CRYPTO_ECDSA": "y", "CONFIG_CRYPTO_ECRDSA": "m", "CONFIG_CRYPTO_SM2": "m", "CONFIG_CRYPTO_CURVE25519": "m", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "m", "CONFIG_CRYPTO_ARIA": "m", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "m", "CONFIG_CRYPTO_FCRYPT": "m", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4": "m", "CONFIG_CRYPTO_SM4_GENERIC": "m", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "m", "CONFIG_CRYPTO_CHACHA20": "m", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CFB": "m", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "m", "CONFIG_CRYPTO_KEYWRAP": "m", "CONFIG_CRYPTO_LRW": "m", "CONFIG_CRYPTO_OFB": "m", "CONFIG_CRYPTO_PCBC": "m", "CONFIG_CRYPTO_XCTR": "m", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_NHPOLY1305": "m", "CONFIG_CRYPTO_AEGIS128": "m", "CONFIG_CRYPTO_CHACHA20POLY1305": "m", "CONFIG_CRYPTO_CCM": "m", "CONFIG_CRYPTO_GCM": "m", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "m", "CONFIG_CRYPTO_ESSIV": "m", "CONFIG_CRYPTO_BLAKE2B": "m", "CONFIG_CRYPTO_CMAC": "m", "CONFIG_CRYPTO_GHASH": "m", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "m", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLYVAL": "m", "CONFIG_CRYPTO_POLY1305": "m", "CONFIG_CRYPTO_RMD160": "m", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3": "m", "CONFIG_CRYPTO_SM3_GENERIC": "m", "CONFIG_CRYPTO_STREEBOG": "m", "CONFIG_CRYPTO_VMAC": "m", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "m", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "m", "CONFIG_CRYPTO_CRCT10DIF": "y", "CONFIG_CRYPTO_CRC64_ROCKSOFT": "m", "CONFIG_CRYPTO_DEFLATE": "m", "CONFIG_CRYPTO_LZO": "y", "CONFIG_CRYPTO_842": "m", "CONFIG_CRYPTO_LZ4": "m", "CONFIG_CRYPTO_LZ4HC": "m", "CONFIG_CRYPTO_ZSTD": "y", "CONFIG_CRYPTO_ANSI_CPRNG": "m", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "y", "CONFIG_CRYPTO_DRBG_CTR": "y", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_2": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_128": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_1024": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_8192": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_KDF800108_CTR": "y", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_STATS": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_CURVE25519_X86": "m", "CONFIG_CRYPTO_AES_NI_INTEL": "m", "CONFIG_CRYPTO_BLOWFISH_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "m", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "m", "CONFIG_CRYPTO_DES3_EDE_X86_64": "m", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "m", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "m", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "m", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_TWOFISH_X86_64": "m", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "m", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "m", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "m", "CONFIG_CRYPTO_CHACHA20_X86_64": "m", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "m", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "m", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "m", "CONFIG_CRYPTO_BLAKE2S_X86": "y", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "m", "CONFIG_CRYPTO_POLY1305_X86_64": "m", "CONFIG_CRYPTO_SHA1_SSSE3": "m", "CONFIG_CRYPTO_SHA256_SSSE3": "m", "CONFIG_CRYPTO_SHA512_SSSE3": "m", "CONFIG_CRYPTO_SM3_AVX_X86_64": "m", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "m", "CONFIG_CRYPTO_CRC32C_INTEL": "m", "CONFIG_CRYPTO_CRC32_PCLMUL": "m", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "y", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "m", "CONFIG_CRYPTO_DEV_PADLOCK_AES": "m", "CONFIG_CRYPTO_DEV_PADLOCK_SHA": "m", "CONFIG_CRYPTO_DEV_ATMEL_I2C": "m", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "m", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "m", "CONFIG_CRYPTO_DEV_CCP": "y", "CONFIG_CRYPTO_DEV_CCP_DD": "m", "CONFIG_CRYPTO_DEV_SP_CCP": "y", "CONFIG_CRYPTO_DEV_CCP_CRYPTO": "m", "CONFIG_CRYPTO_DEV_SP_PSP": "y", "CONFIG_CRYPTO_DEV_CCP_DEBUGFS": "not set", "CONFIG_CRYPTO_DEV_NITROX": "m", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "m", "CONFIG_CRYPTO_DEV_QAT": "m", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "m", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "m", "CONFIG_CRYPTO_DEV_QAT_C62X": "m", "CONFIG_CRYPTO_DEV_QAT_4XXX": "m", "CONFIG_CRYPTO_DEV_QAT_420XX": "m", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "m", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "m", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "m", "CONFIG_CRYPTO_DEV_QAT_ERROR_INJECTION": "not set", "CONFIG_CRYPTO_DEV_IAA_CRYPTO": "m", "CONFIG_CRYPTO_DEV_IAA_CRYPTO_STATS": "y", "CONFIG_CRYPTO_DEV_CHELSIO": "m", "CONFIG_CRYPTO_DEV_VIRTIO": "m", "CONFIG_CRYPTO_DEV_SAFEXCEL": "m", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "m", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "m", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST_RSA": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST_ECDSA": "y", "CONFIG_CHECK_CODESIGN_EKU": "y", "CONFIG_MODULE_SIG_KEY": "\\".kernel_signing_key.pem\\"", "CONFIG_MODULE_SIG_KEY_TYPE_RSA": "y", "CONFIG_MODULE_SIG_KEY_TYPE_ECDSA": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "y", "CONFIG_SYSTEM_BLACKLIST_HASH_LIST": "\\"\\"", "CONFIG_SYSTEM_REVOCATION_LIST": "y", "CONFIG_SYSTEM_REVOCATION_KEYS": "\\"\\"", "CONFIG_SYSTEM_BLACKLIST_AUTH_UPDATE": "y", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "m", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_LINEAR_RANGES": "y", "CONFIG_PACKING": "y", "CONFIG_BITREVERSE": "y", "CONFIG_HAVE_ARCH_BITREVERSE": "not set", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "m", "CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA": "m", "CONFIG_CRYPTO_LIB_CHACHA_GENERIC": "m", "CONFIG_CRYPTO_LIB_CHACHA": "m", "CONFIG_CRYPTO_ARCH_HAVE_LIB_CURVE25519": "m", "CONFIG_CRYPTO_LIB_CURVE25519_GENERIC": "m", "CONFIG_CRYPTO_LIB_CURVE25519": "m", "CONFIG_CRYPTO_LIB_DES": "m", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305": "m", "CONFIG_CRYPTO_LIB_POLY1305_GENERIC": "m", "CONFIG_CRYPTO_LIB_POLY1305": "m", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "m", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "y", "CONFIG_CRC16": "m", "CONFIG_CRC_T10DIF": "y", "CONFIG_CRC64_ROCKSOFT": "m", "CONFIG_CRC_ITU_T": "m", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "m", "CONFIG_CRC4": "m", "CONFIG_CRC7": "m", "CONFIG_LIBCRC32C": "m", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_AUDIT_ARCH_COMPAT_GENERIC": "not set", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_842_COMPRESS": "m", "CONFIG_842_DECOMPRESS": "m", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_COMPRESS": "m", "CONFIG_LZ4HC_COMPRESS": "m", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_IA64": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_MICROLZMA": "y", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_REED_SOLOMON": "m", "CONFIG_REED_SOLOMON_ENC8": "y", "CONFIG_REED_SOLOMON_DEC8": "y", "CONFIG_REED_SOLOMON_DEC16": "y", "CONFIG_BCH": "m", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_BTREE": "y", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_CLOSURES": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED": "y", "CONFIG_SWIOTLB": "y", "CONFIG_DMA_COHERENT_POOL": "y", "CONFIG_DMA_CMA": "y", "CONFIG_DMA_PERNUMA_CMA": "not set", "CONFIG_CMA_SIZE_MBYTES": "0", "CONFIG_CMA_SIZE_SEL_MBYTES": "y", "CONFIG_CMA_SIZE_SEL_PERCENTAGE": "not set", "CONFIG_CMA_SIZE_SEL_MIN": "not set", "CONFIG_CMA_SIZE_SEL_MAX": "not set", "CONFIG_CMA_ALIGNMENT": "8", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_IOMMU_HELPER": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPUMASK_OFFSTACK": "y", "CONFIG_FORCE_NR_CPUS": "not set", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "y", "CONFIG_MPILIB": "y", "CONFIG_SIGNATURE": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "y", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_FONT_6x11": "not set", "CONFIG_FONT_7x14": "not set", "CONFIG_FONT_PEARL_8x8": "not set", "CONFIG_FONT_ACORN_8x8": "not set", "CONFIG_FONT_MINI_4x6": "not set", "CONFIG_FONT_6x10": "not set", "CONFIG_FONT_10x18": "not set", "CONFIG_FONT_SUN8x16": "not set", "CONFIG_FONT_SUN12x22": "not set", "CONFIG_FONT_TER16x32": "y", "CONFIG_FONT_6x8": "y", "CONFIG_SG_SPLIT": "not set", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_NO_SG_CHAIN": "not set", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_MEMREGION": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_SBITMAP": "y", "CONFIG_PARMAN": "m", "CONFIG_OBJAGG": "m", "CONFIG_PLDMFW": "y", "CONFIG_ASN1_ENCODER": "y", "CONFIG_POLYNOMIAL": "m", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "y", "CONFIG_STACKTRACE_BUILD_ID": "y", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "y", "CONFIG_DYNAMIC_DEBUG_CORE": "y", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_LEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "not set", "CONFIG_DEBUG_INFO_DWARF4": "y", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_DEBUG_INFO_BTF": "y", "CONFIG_PAHOLE_HAS_SPLIT_BTF": "y", "CONFIG_PAHOLE_HAS_LANG_EXCLUDE": "y", "CONFIG_DEBUG_INFO_BTF_MODULES": "y", "CONFIG_MODULE_ALLOW_BTF_MISMATCH": "y", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "y", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B": "not set", "CONFIG_OBJTOOL": "y", "CONFIG_VMLINUX_MAP": "y", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "y", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "y", "CONFIG_DEBUG_PAGEALLOC": "y", "CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "y", "CONFIG_PAGE_TABLE_CHECK": "y", "CONFIG_PAGE_TABLE_CHECK_ENFORCED": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "y", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM_IRQSOFF": "not set", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_MEMORY_NOTIFIER_ERROR_INJECT": "m", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "not set", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "0", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STATIC_KEYS": "y", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_LOCKUP_DETECTOR": "y", "CONFIG_SOFTLOCKUP_DETECTOR": "y", "CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC": "not set", "CONFIG_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_HARDLOCKUP_DETECTOR": "y", "CONFIG_BOOTPARAM_HARDLOCKUP_PANIC": "y", "CONFIG_DETECT_HUNG_TASK": "y", "CONFIG_DEFAULT_HUNG_TASK_TIMEOUT": "480", "CONFIG_BOOTPARAM_HUNG_TASK_PANIC": "not set", "CONFIG_WQ_WATCHDOG": "y", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "y", "CONFIG_DEBUG_TIMEKEEPING": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "y", "CONFIG_CSD_LOCK_WAIT_DEBUG_DEFAULT": "not set", "CONFIG_NMI_CHECK_CPU": "y", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "y", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_DEBUG_CLOSURES": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_DEBUG_CREDENTIALS": "not set", "CONFIG_PROVE_RCU": "not set", "CONFIG_TORTURE_TEST": "m", "CONFIG_RCU_SCALE_TEST": "m", "CONFIG_RCU_TORTURE_TEST": "m", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "60", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "y", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "y", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACER_MAX_TRACE": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_RING_BUFFER_ALLOW_SWAP": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "y", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "y", "CONFIG_FUNCTION_PROFILER": "y", "CONFIG_STACK_TRACER": "y", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "y", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "y", "CONFIG_TIMERLAT_TRACER": "y", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "y", "CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP": "y", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_BPF_KPROBE_OVERRIDE": "not set", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_TRACING_MAP": "y", "CONFIG_SYNTH_EVENTS": "y", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "y", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "m", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "m", "CONFIG_SYNTH_EVENT_GEN_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_HIST_TRIGGERS_DEBUG": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "y", "CONFIG_SAMPLES": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "y", "CONFIG_EARLY_PRINTK_USB": "y", "CONFIG_X86_VERBOSE_BOOTUP": "not set", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "y", "CONFIG_EARLY_PRINTK_USB_XDBC": "y", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_IOMMU_DEBUG": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "not set", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "y", "CONFIG_UNWINDER_FRAME_POINTER": "not set", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "m", "CONFIG_PM_NOTIFIER_ERROR_INJECT": "m", "CONFIG_NETDEV_NOTIFIER_ERROR_INJECT": "m", "CONFIG_FUNCTION_ERROR_INJECTION": "y", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "not set", "CONFIG_FAIL_PAGE_ALLOC": "not set", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "not set", "CONFIG_FAIL_FUTEX": "not set", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_FUNCTION": "not set", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAIL_SUNRPC": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "m", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "m", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "m", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "m", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_STRING_SELFTEST": "not set", "CONFIG_TEST_STRING_HELPERS": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_PARMAN": "not set", "CONFIG_TEST_LKM": "m", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_USER_COPY": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "m", "CONFIG_TEST_SYSCTL": "m", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_DYNAMIC_DEBUG": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_LIVEPATCH": "m", "CONFIG_TEST_OBJAGG": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_HMM": "m", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "y", "CONFIG_HYPERV_TESTING": "not set", "CONFIG_SUSE_KERNEL": "y", "CONFIG_SUSE_PRODUCT_SLE": "y", "CONFIG_SUSE_PRODUCT_OPENSUSE_LEAP": "not set", "CONFIG_SUSE_PRODUCT_OPENSUSE_TUMBLEWEED": "not set", "CONFIG_SUSE_PRODUCT_SLFO": "not set", "CONFIG_SUSE_PRODUCT_CODE": "1", "CONFIG_SUSE_VERSION": "15", "CONFIG_SUSE_PATCHLEVEL": "6", "CONFIG_SUSE_AUXRELEASE": "0", "CONFIG_SUSE_HAVE_STABLE_KABI": "y", "CONFIG_SUSE_KERNEL_SUPPORTED": "y", "CONFIG_SUSE_KERNEL_RELEASED": "y"} {"id": "localhost", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Ubuntu 24.04 PC v2 (i440FX + PIIX, arch_caps fix, 1996)", "vendor": "QEMU", "version": "pc-i440fx-noble-v2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-3.0.0": "SMBIOS version 3.0.0", "dmi-3.0.0": "DMI version 3.0.0", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "1.16.3-debian-1.16.3-2", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "QEMU Virtual CPU version 2.5+", "vendor": "Advanced Micro Devices [AMD]", "physid": "400", "businfo": "cpu@0", "version": "15.107.1", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "16777317", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "x86-64": "64bits extensions (x86-64)", "rep_good": true, "nopl": true, "cpuid": true, "extd_apicid": true, "pni": true, "cx16": true, "hypervisor": true, "lahf_lm": true, "cmp_legacy": true, "svm": true, "3dnowprefetch": true, "vmmcall": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "440FX - 82441FX PMC [Natoma]", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "02", "width": 32, "clock": 33000000, "children": [{"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "ISA bridge", "product": "82371SB PIIX3 ISA [Natoma/Triton II]", "vendor": "Intel Corporation", "physid": "1", "businfo": "pci@0000:00:01.0", "version": "00", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "input", "claimed": true, "product": "PnP device PNP0303", "physid": "0", "configuration": {"driver": "i8042 kbd"}, "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "input", "claimed": true, "product": "PnP device PNP0f13", "physid": "1", "configuration": {"driver": "i8042 aux"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "storage", "claimed": true, "product": "PnP device PNP0700", "physid": "2", "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "printer", "claimed": true, "product": "PnP device PNP0400", "physid": "3", "configuration": {"driver": "parport_pc"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "communication", "claimed": true, "product": "PnP device PNP0501", "physid": "4", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:05", "class": "system", "claimed": true, "product": "PnP device PNP0b00", "physid": "5", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}]}, {"id": "ide", "class": "storage", "claimed": true, "handle": "PCI:0000:00:01.1", "description": "IDE interface", "product": "82371SB PIIX3 IDE [Natoma/Triton II]", "vendor": "Intel Corporation", "physid": "1.1", "businfo": "pci@0000:00:01.1", "logicalname": ["scsi0", "scsi1"], "version": "00", "width": 32, "clock": 33000000, "configuration": {"driver": "ata_piix", "latency": "0"}, "capabilities": {"ide": true, "isa_compat_mode": "ISA compatibility mode", "bus_master": "bus mastering", "emulated": "Emulated device"}, "children": [{"id": "disk", "class": "disk", "claimed": true, "handle": "GUID:b9567106-3b3b-4cee-abde-b879044630dc", "description": "ATA Disk", "product": "QEMU HARDDISK", "physid": "0", "businfo": "scsi@0:0.0.0", "logicalname": "/dev/sda", "dev": "8:0", "version": "2.5+", "serial": "QM00001", "units": "bytes", "size": 10737418240, "configuration": {"ansiversion": "5", "guid": "b9567106-3b3b-4cee-abde-b879044630dc", "logicalsectorsize": "512", "sectorsize": "512"}, "capabilities": {"gpt-1.00": "GUID Partition Table version 1.00", "partitioned": "Partitioned disk", "partitioned:gpt": "GUID partition table"}, "children": [{"id": "volume:0", "class": "volume", "claimed": true, "handle": "GUID:39b01245-4f2b-46d7-88ec-123fb98b132b", "description": "BIOS Boot partition", "vendor": "EFI", "physid": "1", "businfo": "scsi@0:0.0.0,1", "logicalname": "/dev/sda1", "dev": "8:1", "serial": "39b01245-4f2b-46d7-88ec-123fb98b132b", "capacity": 2096640, "configuration": {"name": "p.legacy"}, "capabilities": {"nofs": "No filesystem"}}, {"id": "volume:1", "class": "volume", "claimed": true, "handle": "GUID:14290268-00f6-42ea-adef-dba06f7a4937", "description": "Windows FAT volume", "vendor": "mkfs.fat", "physid": "2", "businfo": "scsi@0:0.0.0,2", "logicalname": ["/dev/sda2", "/boot/efi"], "dev": "8:2", "version": "FAT16", "serial": "0531-4b54", "size": 18446744073709549568, "configuration": {"FATs": "2", "filesystem": "fat", "label": "EFI", "mount.fstype": "vfat", "mount.options": "rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro", "name": "p.UEFI", "state": "mounted"}, "capabilities": {"boot": "Contains boot code", "fat": "Windows FAT volume", "initialized": "initialized volume"}}, {"id": "volume:2", "class": "volume", "handle": "GUID:71ab3ab1-da59-4859-8d5e-90e60a2fa80e", "description": "EFI partition", "physid": "3", "businfo": "scsi@0:0.0.0,3", "serial": "71ab3ab1-da59-4859-8d5e-90e60a2fa80e", "capacity": 10713283584, "configuration": {"name": "p.lxroot"}}]}, {"id": "cdrom", "class": "disk", "claimed": true, "handle": "SCSI:01:00:00:00", "description": "DVD reader", "product": "QEMU DVD-ROM", "vendor": "QEMU", "physid": "1", "businfo": "scsi@1:0.0.0", "logicalname": ["/dev/cdrom", "/dev/dvd", "/dev/sr0"], "dev": "11:0", "version": "2.5+", "configuration": {"ansiversion": "5", "status": "ready"}, "capabilities": {"removable": "support is removable", "audio": "Audio CD playback", "dvd": "DVD playback"}, "children": [{"id": "medium", "class": "disk", "claimed": true, "physid": "0", "logicalname": "/dev/cdrom", "dev": "11:0"}]}]}, {"id": "bridge", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:01.3", "description": "Bridge", "product": "82371AB/EB/MB PIIX4 ACPI", "vendor": "Intel Corporation", "physid": "1.3", "businfo": "pci@0000:00:01.3", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "piix4_smbus", "latency": "0"}, "capabilities": {"bridge": true}}, {"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "2", "businfo": "pci@0000:00:02.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Ethernet interface", "product": "82540EM Gigabit Ethernet Controller", "vendor": "Intel Corporation", "physid": "3", "businfo": "pci@0000:00:03.0", "logicalname": "eth0", "version": "03", "serial": "52:54:00:12:34:56", "units": "bit/s", "size": 1000000000, "capacity": 1000000000, "width": 32, "clock": 33000000, "configuration": {"autonegotiation": "on", "broadcast": "yes", "driver": "e1000", "driverversion": "6.4.0-150600.23.118-default", "duplex": "full", "ip": "10.0.2.15", "latency": "0", "link": "yes", "multicast": "yes", "port": "twisted pair", "speed": "1Gbit/s"}, "capabilities": {"bus_master": "bus mastering", "rom": "extension ROM", "ethernet": true, "physical": "Physical interface", "tp": "twisted pair", "10bt": "10Mbit/s", "10bt-fd": "10Mbit/s (full duplex)", "100bt": "100Mbit/s", "100bt-fd": "100Mbit/s (full duplex)", "1000bt-fd": "1Gbit/s (full duplex)", "autonegotiation": "Auto-negotiation"}}]}]}, {"id": "input:0", "class": "input", "claimed": true, "product": "AT Translated Set 2 keyboard", "physid": "1", "logicalname": ["input0", "/dev/input/event0", "input0::capslock", "input0::numlock", "input0::scrolllock"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:1", "class": "input", "claimed": true, "product": "ImExPS/2 Generic Explorer Mouse", "physid": "2", "logicalname": ["input2", "/dev/input/event1", "/dev/input/mouse0"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:2", "class": "input", "claimed": true, "product": "Power Button", "physid": "3", "logicalname": ["input3", "/dev/input/event2"], "capabilities": {"platform": true}}, {"id": "input:3", "class": "input", "claimed": true, "product": "PC Speaker", "physid": "4", "logicalname": ["input4", "/dev/input/event3"], "capabilities": {"isa": "ISA bus"}}]} +3 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-04 15:02:01", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +4 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-04 13:31:56", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +5 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-04 13:48:43", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +6 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-07 14:02:03", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +7 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-13 14:11:44", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +8 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-13 14:22:29", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +9 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-04 15:35:05", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +10 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-04 16:01:36", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +11 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-04 16:13:46", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +12 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-04 16:33:40", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +13 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-13 18:19:37", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +14 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-16 11:14:13", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +15 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-16 11:24:29", "mounted": "2026-07-04 12:02:35", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +16 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Advanced Micro Devices [AMD]", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "16777317", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "vme": "virtual mode extensions", "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "nopl": true, "cpuid": true, "tsc_known_freq": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "tsc_deadline_timer": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "cmp_legacy": true, "3dnowprefetch": true, "vmmcall": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "logicalname": "/dev/fb0", "dev": "29:0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"depth": "32", "driver": "virtio-pci", "latency": "0", "mode": "1280x800", "visual": "truecolor", "xres": "1280", "yres": "800"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM", "fb": true}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-17 12:41:24", "mounted": "2026-07-17 12:41:24", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:1:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@1:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:1:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@1:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +17 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Advanced Micro Devices [AMD]", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "16777317", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "vme": "virtual mode extensions", "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "nopl": true, "cpuid": true, "tsc_known_freq": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "tsc_deadline_timer": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "cmp_legacy": true, "3dnowprefetch": true, "vmmcall": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "logicalname": "/dev/fb0", "dev": "29:0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"depth": "32", "driver": "virtio-pci", "latency": "0", "mode": "1280x800", "visual": "truecolor", "xres": "1280", "yres": "800"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM", "fb": true}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-20 19:10:23", "mounted": "2026-07-20 19:10:23", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:1:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@1:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:1:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@1:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +18 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libxext6": "1.3.6:r0:core2_64", "libxi6": "1.8.2:r0:core2_64", "libxtst6": "1.2.5:r0:core2_64", "libxrender1": "0.9.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "alsa-ucm-conf": "1.2.13:r0:noarch", "alsa-conf": "1.2.13:r0:core2_64", "libasound2": "1.2.13:r0:core2_64", "openjdk-25-jre": "25.0.2+10:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "vdbench": "1.0:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Advanced Micro Devices [AMD]", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "16777317", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "vme": "virtual mode extensions", "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "nopl": true, "cpuid": true, "tsc_known_freq": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "tsc_deadline_timer": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "cmp_legacy": true, "3dnowprefetch": true, "vmmcall": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "logicalname": "/dev/fb0", "dev": "29:0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"depth": "32", "driver": "virtio-pci", "latency": "0", "mode": "1280x800", "visual": "truecolor", "xres": "1280", "yres": "800"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM", "fb": true}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "f8009fd4-919d-4b35-815e-b8e309d67510", "size": 11136421888, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-07-20 20:10:44", "mounted": "2026-07-20 19:10:23", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:1:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@1:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:1:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@1:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +19 openSUSE Leap 15.6 {"haveged": "1.9.14:150600.11.6.1:x86_64", "libXau6": "1.0.8:1.26:x86_64", "filesystem": "15.0:11.8.1:x86_64", "lvm2": "2.03.22:150600.3.9.3:x86_64", "libldapcpp1": "0.3.1:1.33:x86_64", "libpopt0": "1.16:3.22:x86_64", "suseconnect-ruby-bindings": "1.22.1:150600.3.21.1:x86_64", "libnscd1": "2.0.2:3.21:x86_64", "libpcre1": "8.45:150000.20.13.1:x86_64", "rpcbind": "0.2.3:150000.5.12.1:x86_64", "lsscsi": "0.28:1.24:x86_64", "libncurses6": "6.1:150000.5.33.1:x86_64", "libstorage-ng1": "4.5.201:150600.1.3:x86_64", "zip": "3.0:2.22:x86_64", "libksba8": "1.6.4:150600.1.2:x86_64", "python3-salt": "3006.0:150500.4.75.1:x86_64", "yp-tools": "4.2.2:3.16:x86_64", "bash-sh": "4.4:150400.27.6.1:x86_64", "polkit": "121:150500.3.11.1:x86_64", "p11-kit": "0.23.22:150500.8.3.1:x86_64", "libmagic1": "5.32:7.14.1:x86_64", "chrony-pool-suse": "4.1:150400.21.8.1:noarch", "libcryptsetup12": "2.7.0:150600.3.3.1:x86_64", "libldap-2_4-2": "2.4.46:150600.25.3.1:x86_64", "rsyslog": "8.2406.0:150600.12.10.1:x86_64", "libldb2": "2.8.2:150600.3.6.1:x86_64", "libzck1": "1.1.16:150600.9.3:x86_64", "polkit-default-privs": "13.2+20241216.68f9867:150600.3.3.1:noarch", "xfsprogs": "6.7.0:150600.3.6.2:x86_64", "libgpgme11": "1.23.0:150600.3.5.1:x86_64", "yast2-network": "4.6.11:150600.3.6.1:noarch", "ethtool": "6.4:150600.7.3.2:x86_64", "boost-license1_66_0": "1.66.0:150200.12.7.1:noarch", "docker": "29.4.0_ce:150000.255.1:x86_64", "cyrus-sasl-plain": "2.1.28:150600.7.14.1:x86_64", "glibc": "2.38:150600.14.52.1:x86_64", "yast2-online-update-frontend": "4.6.2:150600.1.2:noarch", "patterns-base-minimal_base": "20200505:lp156.17.3.1:x86_64", "libnpth0": "1.5:2.11:x86_64", "yast2-ntp-client": "4.6.0:150600.1.3:noarch", "fontconfig": "2.14.2:150600.1.3:x86_64", "liblua5_3-5": "5.3.6:3.6.1:x86_64", "yast2-tune": "4.6.0:150600.1.2:x86_64", "lsof": "4.99.0:150600.1.15:x86_64", "terminfo-base": "6.1:150000.5.33.1:x86_64", "yast2-security": "4.6.1:150600.3.3.2:noarch", "libxcb1": "1.13:150000.3.11.1:x86_64", "libz1": "1.2.13:150500.4.6.1:x86_64", "yast2-sudo": "4.6.1:150600.1.2:noarch", "libprocps8": "3.3.17:150000.7.42.1:x86_64", "libdw1": "0.185:150400.5.8.3:x86_64", "yast2-update": "4.6.3:150600.1.2:x86_64", "ca-certificates": "2+git20240416.98ae794:150300.4.3.3:noarch", "libpsl5": "0.20.1:150000.3.3.1:x86_64", "gpg-pubkey": "29b700a4:6a17fa38:(none)", "perl-gettext": "1.07:1.442:x86_64", "krb5": "1.20.1:150600.11.19.1:x86_64", "perl-Digest-SHA1": "2.13:1.27:x86_64", "pinentry": "1.1.0:4.3.1:x86_64", "libfmt8": "8.0.1:150400.1.8:x86_64", "perl-Crypt-SmbHash": "0.12:1.24:x86_64", "openSUSE-release": "15.6:lp156.417.4.1:x86_64", "rdma-core": "49.1:150600.2.5:x86_64", "libX11-6": "1.8.7:150600.3.6.1:x86_64", "libicu65_1-ledata": "65.1:150200.4.15.1:noarch", "libmlx5-1": "49.1:150600.2.5:x86_64", "krb5-client": "1.20.1:150600.11.19.1:x86_64", "groff": "1.22.4:150400.5.2.1:x86_64", "libefa1": "49.1:150600.2.5:x86_64", "sysuser-shadow": "3.2:150400.3.5.3:noarch", "libeconf0": "0.5.2:150400.3.6.1:x86_64", "librbd1": "16.2.13.66+g54799ee0666:150400.3.11.1:x86_64", "system-group-kvm": "20170617:150400.24.2.1:noarch", "strace": "5.14:150400.3.3.2:x86_64", "libopencsd1": "1.4.0:150600.1.5:x86_64", "hwdata": "0.406:150000.3.80.1:noarch", "libx86emu3": "3.1:1.23:x86_64", "perf": "6.4.0.git38565.b555487b73:150600.3.20.1:x86_64", "yast2-ycp-ui-bindings": "4.6.0:150600.1.5:x86_64", "libuv1": "1.44.2:150500.3.5.1:x86_64", "libXpm4": "3.5.12:150000.3.10.1:x86_64", "ca-certificates-mozilla": "2.84:150200.44.1:noarch", "augeas": "1.14.1:150600.3.3.1:x86_64", "libjbig2": "2.1:150000.3.5.1:x86_64", "liblockdev1": "1.0.3_git201003141408:1.97:x86_64", "libaio1": "0.3.113:150600.15.3.1:x86_64", "libmpxwrappers2": "8.2.1+r264010:150000.1.6.4:x86_64", "gio-branding-openSUSE": "42.1:lp156.9.2.2:noarch", "libbpf1": "1.2.2:150600.3.6.2:x86_64", "libvulkan1": "1.3.275.0:150600.1.2:x86_64", "libopenssl1_1": "1.1.1w:150600.5.32.1:x86_64", "libhavege2": "1.9.14:150600.11.6.1:x86_64", "libxshmfence1": "1.2:1.23:x86_64", "perl-Bootloader": "1.8.2:150600.3.3.1:x86_64", "libnl-config": "3.9.0:150600.15.4.4:noarch", "make": "4.2.1:7.3.2:x86_64", "libproxy1": "0.5.3:150600.4.6.2:x86_64", "libuuid1": "2.39.3:150600.4.21.1:x86_64", "perl-Encode-Locale": "1.05:1.24:noarch", "screen": "4.6.2:150000.5.8.1:x86_64", "mdadm": "4.3+36.g12cb7035:150600.3.23.1:x86_64", "perl-Net-SSLeay": "1.92:150600.1.2:x86_64", "python3-base": "3.6.15:150300.10.118.1:x86_64", "pkg-config": "0.29.2:150600.15.6.3:x86_64", "perl-URI": "1.73:1.16:noarch", "python3-curses": "3.6.15:150300.10.118.1:x86_64", "timezone": "2026b:150600.91.9.1:x86_64", "system-user-wwwrun": "20170617:150400.24.2.1:noarch", "python3-PyYAML": "5.4.1:150300.3.6.1:x86_64", "libmount1": "2.39.3:150600.4.21.1:x86_64", "libtiff5": "4.0.9:150000.45.41.1:x86_64", "python3-more-itertools": "8.10.0:150400.10.1:noarch", "gettext-runtime": "0.21.1:150600.3.3.2:x86_64", "perl-Pod-Coverage": "0.23:1.23:noarch", "libatspi0": "2.50.0:150600.1.2:x86_64", "libcbor0_10": "0.10.1:150500.1.1:x86_64", "perl-Net-HTTP": "6.17:1.20:noarch", "ruby2.5-rubygem-gem2rpm": "0.10.1:3.45:x86_64", "libargon2-1": "20190702:150600.1.4:x86_64", "perl-HTTP-Negotiate": "6.01:1.23:noarch", "ruby2.5-rubygem-simpleidn": "0.0.9:1.17:x86_64", "liblz4-1": "1.9.4:150600.1.4:x86_64", "expat": "2.7.1:150400.3.37.1:x86_64", "ruby2.5-rubygem-fast_gettext": "1.6.0:1.18:x86_64", "libtalloc2": "2.4.1:150600.1.3:x86_64", "libasan4": "7.5.0+r278197:150000.4.44.1:x86_64", "python3-pycparser": "2.17:150000.3.5.1:noarch", "openslp": "2.0.0:150600.19.5:x86_64", "libitm1": "15.2.0+git10201:150000.1.9.1:x86_64", "python3-iniconfig": "1.1.1:150000.1.13.1:noarch", "targetcli-fb-common": "2.1.54:150600.11.2:noarch", "libxcb-dri2-0": "1.13:150000.3.11.1:x86_64", "python3-chardet": "3.0.4:150000.5.6.1:noarch", "libatk-1_0-0": "2.50.0:150600.1.2:x86_64", "libxcb-randr0": "1.13:150000.3.11.1:x86_64", "python3-appdirs": "1.4.3:150000.3.3.1:noarch", "libtevent0": "0.15.0:150600.1.3:x86_64", "busybox": "1.37.0:150500.10.17.1:x86_64", "python3-zipp": "0.6.0:150100.3.8.1:noarch", "libip4tc2": "1.8.7:1.1:x86_64", "libgbm1": "23.3.4:150600.83.3.1:x86_64", "python3-zypp-plugin": "0.6.5:150600.18.8.1:noarch", "libinih0": "53:150400.1.7:x86_64", "libstdc++6-devel-gcc7": "7.5.0+r278197:150000.4.44.1:x86_64", "python3-attrs": "19.3.0:150200.3.9.1:noarch", "liburing2": "2.1:150400.2.4:x86_64", "php8-cli": "8.2.30:150600.3.25.1:x86_64", "python3-configshell-fb": "1.1.29:3.3.1:noarch", "libefivar1": "37:6.12.1:x86_64", "perl-LWP-Protocol-https": "6.06:150000.3.3.1:noarch", "ruby2.5-rubygem-nokogiri": "1.8.5:150400.14.6.1:x86_64", "dosfstools": "4.1:3.6.1:x86_64", "php8": "8.2.30:150600.3.25.1:x86_64", "python3-pyOpenSSL": "21.0.0:150400.13.1:noarch", "libfuse2": "2.9.7:3.3.1:x86_64", "Mesa-demo-x": "8.3.0:150000.3.6.1:x86_64", "yast2-ruby-bindings": "4.6.2:150600.1.5:x86_64", "libsnappy1": "1.1.8:3.3.1:x86_64", "php8-iconv": "8.2.30:150600.3.25.1:x86_64", "python3-py": "1.10.0:150100.5.15.1:noarch", "libunwind": "1.5.0:4.5.1:x86_64", "php8-sqlite": "8.2.30:150600.3.25.1:x86_64", "scout-command-not-found": "0.2.7+20230124.b4e3468:150500.1.1:noarch", "netcfg": "11.6:150000.3.6.1:noarch", "php8-gd": "8.2.30:150600.3.25.1:x86_64", "systemd": "254.27:150600.4.62.1:x86_64", "tcsh": "6.20.00:150000.4.18.2:x86_64", "php8-posix": "8.2.30:150600.3.25.1:x86_64", "wicked-service": "0.6.77:150600.11.15.1:x86_64", "thin-provisioning-tools": "0.7.5:3.3.1:x86_64", "perl-Net-DBus": "1.1.0:1.30:x86_64", "python3-PyJWT": "2.4.0:150200.3.14.1:noarch", "runc": "1.3.4:150000.98.1:x86_64", "sharutils": "4.15.2:150600.17.3:x86_64", "python3-targetcli-fb": "2.1.54:150600.11.2:noarch", "containerd": "1.7.29:150000.139.1:x86_64", "sysstat": "12.0.2:150000.3.51.1:x86_64", "yast2-squid": "4.6.0:150600.1.5:x86_64", "libhidapi-hidraw0": "0.10.1:150300.3.2.1:x86_64", "iperf": "3.19.1:150000.3.15.1:x86_64", "yast2-pam": "4.6.0:150600.1.2:noarch", "systemd-default-settings": "0.10:150300.3.7.1:noarch", "yast2-tftp-server": "4.6.0:150600.1.2:noarch", "blog": "2.26:150300.4.6.1:x86_64", "kmod": "29:150600.13.6.1:x86_64", "cloud-init-config-suse": "23.3:lp156.3.9:x86_64", "suseconnect-ng": "1.22.1:150600.3.21.1:x86_64", "dos2unix": "7.4.0:1.19:x86_64", "crypto-policies": "20230920.570ea89:150600.3.16.1:noarch", "libHX28": "3.22:1.26:x86_64", "file-magic": "5.32:7.14.1:noarch", "libedit0": "3.1.snap20150325:2.12:x86_64", "libsasl2-3": "2.1.28:150600.7.14.1:x86_64", "libgdbm4": "1.12:1.418:x86_64", "libcom_err2": "1.47.0:150600.4.6.2:x86_64", "liblzo2-2": "2.10:2.22:x86_64", "libattr1": "2.4.47:2.19:x86_64", "libnfnetlink0": "1.0.1:2.11:x86_64", "update-alternatives": "1.19.0.4:150000.4.7.1:x86_64", "libsmi2": "0.4.8:1.29:x86_64", "libkeyutils1": "1.6.3:5.6.1:x86_64", "libwrap0": "7.6:1.433:x86_64", "libacl1": "2.2.52:4.3.1:x86_64", "pigz": "2.3.3:1.28:x86_64", "libbz2-1": "1.0.8:150400.1.122:x86_64", "yast2-trans-stats": "2.19.0:1.28:noarch", "libgpg-error0": "1.47:150600.1.3:x86_64", "libreiserfscore0": "3.6.27:2.24:x86_64", "libxml2-2": "2.10.3:150500.5.41.1:x86_64", "tcpd": "7.6:1.433:x86_64", "libelf1": "0.185:150400.5.8.3:x86_64", "hostname": "3.16:2.22:x86_64", "libbrotlicommon1": "1.0.7:150200.3.5.1:x86_64", "iputils": "20221126:150500.3.14.1:x86_64", "libidn2-0": "2.2.0:3.6.1:x86_64", "p11-kit-tools": "0.23.22:150500.8.3.1:x86_64", "libselinux1": "3.5:150600.3.3.1:x86_64", "libboost_regex1_66_0": "1.66.0:150200.12.7.1:x86_64", "libaugeas0": "1.14.1:150600.3.3.1:x86_64", "libsystemd0": "254.27:150600.4.62.1:x86_64", "libssh4": "0.9.8:150600.11.12.1:x86_64", "openssl-3": "3.1.4:150600.5.56.1:x86_64", "coreutils": "8.32:150400.9.12.1:x86_64", "libgnutls30": "3.8.3:150600.4.20.1:x86_64", "grep": "3.1:150000.4.6.1:x86_64", "bind-utils": "9.18.49:150600.3.29.1:x86_64", "gpg2": "2.4.4:150600.3.15.1:x86_64", "cyrus-sasl": "2.1.28:150600.7.14.1:x86_64", "rpm-config-SUSE": "1:150400.14.3.1:noarch", "iproute2": "6.4:150600.7.15.1:x86_64", "zypper": "1.14.98:150600.10.55.1:x86_64", "less": "643:150600.3.3.1:x86_64", "libldap-data": "2.4.46:150600.25.3.1:noarch", "liblvm2cmd2_03": "2.03.22:150600.3.9.3:x86_64", "system-user-root": "20190513:3.3.1:noarch", "cyrus-sasl-gssapi": "2.1.28:150600.7.14.1:x86_64", "libnghttp2-14": "1.40.0:150600.25.8.1:x86_64", "systemd-presets-branding-openSUSE": "12.2:lp156.7.3.1:noarch", "libverto1": "0.2.6:3.20:x86_64", "efibootmgr": "17:150400.3.2.2:x86_64", "fillup": "1.42:2.18:x86_64", "libdbus-1-3": "1.12.2:150400.18.8.1:x86_64", "libsqlite3-0": "3.53.2:150000.3.42.1:x86_64", "libfontconfig1": "2.14.2:150600.1.3:x86_64", "libjitterentropy3": "3.4.1:150000.1.12.1:x86_64", "libfido2-1": "1.13.0:150600.10.3:x86_64", "libstdc++6": "15.3.0+git11272:150000.1.12.1:x86_64", "btrfsprogs": "6.5.1:150600.2.4:x86_64", "libunistring2": "0.9.10:1.1:x86_64", "expect": "5.45.4:3.3.1:x86_64", "libsigc-2_0-0": "2.12.1:150600.1.2:x86_64", "liblognorm5": "2.0.6:150000.3.3.1:x86_64", "libcap2": "2.63:150400.3.6.1:x86_64", "net-tools": "2.0+git20170221.479bb4a:150000.5.13.1:x86_64", "bash": "4.4:150400.27.6.1:x86_64", "quota": "4.05:3.9.1:x86_64", "libboost_system1_66_0": "1.66.0:150200.12.7.1:x86_64", "perl": "5.26.1:150300.17.20.1:x86_64", "libassuan0": "2.5.5:150000.4.7.1:x86_64", "libnftnl11": "1.2.0:150400.1.6:x86_64", "libglib-2_0-0": "2.78.6:150600.4.35.1:x86_64", "liblogging0": "1.0.6:3.21:x86_64", "libudev1": "254.27:150600.4.62.1:x86_64", "perl-XML-SAX-Base": "1.09:1.25:noarch", "libcurl4": "8.14.1:150600.4.46.1:x86_64", "perl-Parse-RecDescent": "1.967015:1.22:x86_64", "libusb-1_0-0": "1.0.24:150400.3.3.1:x86_64", "perl-Digest-MD4": "1.9:1.28:x86_64", "gawk": "4.2.1:150000.3.3.1:x86_64", "perl-X500-DN": "0.29:1.22:x86_64", "glibc-locale": "2.38:150600.14.52.1:x86_64", "libpcap1": "1.10.4:150600.3.9.1:x86_64", "rpm": "4.14.3:150400.59.16.1:x86_64", "openssh-clients": "9.6p1:150600.6.42.1:x86_64", "gzip": "1.10:150200.10.1:x86_64", "sudo": "1.9.15p5:150600.3.15.1:x86_64", "cpio": "2.13:150400.3.6.1:x86_64", "libsubid5": "4.17.2:150600.17.21.1:x86_64", "fdupes": "2.3.0:150400.3.3.1:x86_64", "samba-client-libs": "4.19.8+git.473.51d12fd320c:150600.3.26.1:x86_64", "kbd-legacy": "2.4.0:150400.5.9.1:noarch", "kbd": "2.4.0:150400.5.9.1:x86_64", "libaudit1": "3.0.6:150400.4.16.1:x86_64", "dbus-1": "1.12.2:150400.18.8.1:x86_64", "libexpat1": "2.7.1:150400.3.37.1:x86_64", "system-user-man": "20170617:150400.24.2.1:noarch", "libxslt1": "1.1.34:150400.3.16.1:x86_64", "system-group-hardware": "20170617:150400.24.2.1:noarch", "elfutils": "0.185:150400.5.8.3:x86_64", "at": "3.2.2:150400.4.3.10:x86_64", "libffi7": "3.2.1.git259:10.8:x86_64", "perl-XML-LibXML": "2.0132:150000.3.8.1:x86_64", "catatonit": "0.2.0:150500.3.3.1:x86_64", "tcpdump": "4.99.1:150600.7.3:x86_64", "liblmdb-0_9_30": "0.9.30:150500.3.2.1:x86_64", "yast2-xml": "4.6.0:150600.1.5:x86_64", "vim-data-common": "9.2.0530:150500.20.52.1:noarch", "vim": "9.2.0530:150500.20.52.1:x86_64", "augeas-lenses": "1.14.1:150600.3.3.1:x86_64", "xtables-plugins": "1.8.7:1.1:x86_64", "curl": "8.14.1:150600.4.46.1:x86_64", "libXext6": "1.3.3:1.30:x86_64", "libX11-data": "1.8.7:150600.3.6.1:noarch", "lockdev": "1.0.3_git201003141408:1.97:x86_64", "libapparmor1": "3.1.7:150600.5.15.1:x86_64", "libXtst6": "1.2.3:1.24:x86_64", "libblkid1": "2.39.3:150600.4.21.1:x86_64", "man": "2.7.6:150100.8.5.1:x86_64", "libdevmapper1_03": "2.03.22_1.02.196:150600.3.9.3:x86_64", "yast2-pkg-bindings": "4.6.5:150600.3.6.1:x86_64", "libgmodule-2_0-0": "2.78.6:150600.4.35.1:x86_64", "util-linux": "2.39.3:150600.4.21.1:x86_64", "libkmod2": "29:150600.13.6.1:x86_64", "glib2-tools": "2.78.6:150600.4.35.1:x86_64", "libnfsidmap1": "1.0:150600.28.19.1:x86_64", "libpxbackend-1_0": "0.5.3:150600.4.6.2:x86_64", "libpng16-16": "1.6.40:150600.3.20.1:x86_64", "libtextstyle0": "0.21.1:150600.3.3.2:x86_64", "libyui-ncurses16": "4.5.3:150600.6.2.1:x86_64", "login_defs": "4.17.2:150600.17.21.1:noarch", "openldap2-client": "2.4.46:150600.25.3.1:x86_64", "permissions": "20240826:150600.10.18.2:x86_64", "ruby-solv": "0.7.39:150600.8.24.1:x86_64", "shared-mime-info": "2.4:150600.3.3.2:x86_64", "xz": "5.4.1:150600.3.6.1:x86_64", "libgobject-2_0-0": "2.78.6:150600.4.35.1:x86_64", "libdevmapper-event1_03": "2.03.22_1.02.196:150600.3.9.3:x86_64", "libnl3-200": "3.9.0:150600.15.4.4:x86_64", "libfdisk1": "2.39.3:150600.4.21.1:x86_64", "libyui-ncurses-pkg16": "4.5.3:150600.6.2.1:x86_64", "python-rtslib-fb-common": "2.1.75:150500.1.4:noarch", "cracklib-dict-small": "2.9.11:150600.1.90:x86_64", "libbsd0": "0.8.7:150600.16.2:x86_64", "libjson-c5": "0.16:150600.1.4:x86_64", "libprotobuf-c1": "1.5.0:150600.1.4:x86_64", "libsepol2": "3.5:150600.1.49:x86_64", "libtdb1": "1.4.9:150600.1.4:x86_64", "man-pages": "6.04:150600.1.2:noarch", "openssl": "3.1.4:150600.2.1:noarch", "systemd-presets-common-SUSE": "15:150600.25.2:noarch", "yast2-nfs-common": "4.6.0:150600.1.2:noarch", "fping": "5.1:150600.1.4:x86_64", "libcrack2": "2.9.11:150600.1.90:x86_64", "libsemanage2": "3.5:150600.1.48:x86_64", "libpwquality1": "1.4.5:150600.2.3:x86_64", "bc": "1.07.1:11.37:x86_64", "libip6tc2": "1.8.7:1.1:x86_64", "libxtables12": "1.8.7:1.1:x86_64", "libnuma1": "2.0.14.20.g4ee5e0c:150400.1.24:x86_64", "libseccomp2": "2.5.3:150400.2.4:x86_64", "gptfdisk": "1.0.8:150400.1.7:x86_64", "libctf-nobfd0": "2.45:150100.7.57.1:x86_64", "libctf0": "2.45:150100.7.57.1:x86_64", "deltarpm": "3.6.5:150000.5.6.3:x86_64", "file": "5.32:7.14.1:x86_64", "libdialog14": "1.3:3.3.7:x86_64", "libmaxminddb0": "1.4.3:150000.1.8.1:x86_64", "libruby2_5-2_5": "2.5.9:150000.4.54.1:x86_64", "libsodium23": "1.0.18:150000.4.14.1:x86_64", "libtasn1": "4.13:150000.4.14.1:x86_64", "libyaml-0-2": "0.1.7:150000.3.4.1:x86_64", "ncurses-utils": "6.1:150000.5.33.1:x86_64", "psmisc": "23.0:150000.6.25.1:x86_64", "systemd-rpm-macros": "16:150000.7.42.1:noarch", "terminfo": "6.1:150000.5.33.1:x86_64", "libmetalink3": "0.1.3:150000.3.2.1:x86_64", "blktrace": "1.1.0+git.20170126:3.6.1:x86_64", "tar": "1.34:150000.3.42.1:x86_64", "libzmq5": "4.2.3:3.15.4:x86_64", "dialog": "1.3:3.3.7:x86_64", "findutils": "4.8.0:150300.3.3.2:x86_64", "libfstrm0": "0.6.1:150300.9.5.1:x86_64", "libpci3": "3.13.0:150300.13.12.1:x86_64", "systemd-default-settings-branding-openSUSE": "0.10:150300.3.7.1:noarch", "yast2-schema": "4.3.31:150300.3.20.3:x86_64", "tcl": "8.6.12:150300.14.9.1:x86_64", "libtirpc3": "1.3.4:150300.3.23.1:x86_64", "branding-openSUSE": "15.6.20240408:lp156.1.2:noarch", "openSUSE-build-key": "1.0:lp156.8.2:noarch", "attr": "2.4.47:2.19:x86_64", "nscd": "2.38:150600.14.52.1:x86_64", "cyrus-sasl-saslauthd": "2.1.28:150600.7.14.1:x86_64", "qemu-guest-agent": "8.2.10:150600.3.49.1:x86_64", "kernel-default": "6.4.0:150600.23.125.1:x86_64", "dracut-kiwi-lib": "10.2.33:150600.14.10.2:x86_64", "dracut-kiwi-oem-repart": "10.2.33:150600.14.10.2:x86_64", "telnet": "1.2:150000.3.6.1:x86_64", "dhcp": "4.3.6.P1:150000.6.22.1:x86_64", "fonts-config": "20200609+git0.42e2b1b:150600.18.2:noarch", "libstorage-ng-ruby": "4.5.201:150600.1.3:x86_64", "ksh": "93vu:bp156.6.3.1:x86_64", "salt": "3006.0:150500.4.75.1:x86_64", "libpolkit-gobject-1-0": "121:150500.3.11.1:x86_64", "salt-minion": "3006.0:150500.4.75.1:x86_64", "cronie": "1.5.7:150400.84.3.1:x86_64", "chrony": "4.1:150400.21.8.1:x86_64", "docker-buildx": "0.11.2:bp156.1.12:x86_64", "nfs-client": "2.6.4:150600.28.19.1:x86_64", "yast2-storage-ng": "4.6.18:150600.3.3.2:x86_64", "openssh-server": "9.6p1:150600.6.42.1:x86_64", "autofs": "5.1.9:150600.3.8.1:x86_64", "yast2-iscsi-client": "4.6.6:150600.3.14.2:noarch", "openssh": "9.6p1:150600.6.42.1:x86_64", "yast2-bootloader": "4.6.7:lp156.1.2:x86_64", "yast2-online-update": "4.6.2:150600.1.2:noarch", "yast2-nfs-client": "4.6.2:150600.1.2:noarch", "yast2-samba-client": "4.6.1:150600.1.2:noarch", "yast2-nis-client": "4.6.0:150600.1.5:x86_64", "yast2-http-server": "4.6.1:150600.1.2:noarch", "yast2-nis-server": "4.6.0:150600.1.2:noarch", "yast2-dhcp-server": "4.6.0:150600.1.2:noarch", "yast2-kdump": "4.6.3:150600.3.3.2:x86_64", "yast2-installation": "4.6.14:150600.3.6.1:noarch", "yast2-samba-server": "4.6.0:150600.1.2:noarch", "yast2-ftp-server": "4.6.0:150600.1.2:noarch", "autoyast2-installation": "4.6.6:150600.1.2:noarch", "yast2-registration": "4.6.3:150600.3.6.2:noarch", "liblttng-ust0": "2.12.0:1.30:x86_64", "pmdk": "1.11.1:150400.1.10:x86_64", "rdma-ndd": "49.1:150600.2.5:x86_64", "libibverbs1": "49.1:150600.2.5:x86_64", "libpmemblk1": "1.11.1:150400.1.10:x86_64", "libmana1": "49.1:150600.2.5:x86_64", "libibverbs": "49.1:150600.2.5:x86_64", "librados2": "16.2.13.66+g54799ee0666:150400.3.11.1:x86_64", "fio": "3.23:150600.18.6:x86_64", "git-core": "2.51.0:150600.3.15.1:x86_64", "libslang2": "2.3.1a:150000.5.2.3:x86_64", "libtraceevent1": "1.8.4:150500.11.8.1:x86_64", "lksctp-tools": "1.0.17:150000.3.3.1:x86_64", "libXfixes3": "6.0.0:150400.1.4:x86_64", "libXxf86vm1": "1.1.4:1.23:x86_64", "libisl15": "0.18:1.443:x86_64", "libjpeg8": "8.2.2:150600.22.5:x86_64", "libmpx2": "8.2.1+r264010:150000.1.6.4:x86_64", "libpciaccess0": "0.14:1.16:x86_64", "libtsan0": "11.3.0+git1637:150000.1.11.2:x86_64", "libwayland-client0": "1.22.0:150600.1.6:x86_64", "libxcrypt-devel": "4.4.15:150300.4.7.1:x86_64", "libzip5": "1.10.1:150600.1.5:x86_64", "m4": "1.4.18:4.3.1:x86_64", "grub2-i386-pc": "2.12:150600.8.52.1:noarch", "make-lang": "4.2.1:7.3.2:noarch", "grub2-x86_64-efi": "2.12:150600.8.52.1:noarch", "perl-Devel-Symdump": "2.18:1.24:noarch", "libXi6": "1.7.9:3.2.1:x86_64", "perl-HTML-Tagset": "3.20:1.24:noarch", "ruby2.5-stdlib": "2.5.9:150000.4.54.1:x86_64", "perl-LWP-MediaTypes": "6.02:1.25:noarch", "growpart": "0.31:5.9.3:noarch", "perl-Test-Pod": "1.51:1.24:noarch", "libpython3_6m1_0": "3.6.15:150300.10.118.1:x86_64", "perl-Try-Tiny": "0.30:1.17:noarch", "python3": "3.6.15:150300.10.118.1:x86_64", "perl-X11-Protocol": "0.56:1.24:x86_64", "python3-pytz": "2022.1:150300.3.9.1:noarch", "system-user-mail": "20170617:150400.24.2.1:noarch", "python3-psutil": "5.9.1:150300.3.6.1:x86_64", "libdrm_radeon1": "2.4.118:150600.1.4:x86_64", "logrotate": "3.18.1:150400.3.10.1:x86_64", "libdrm_amdgpu1": "2.4.118:150600.1.4:x86_64", "python3-ordered-set": "4.0.2:150400.8.34:noarch", "libmpc3": "1.1.0:1.47:x86_64", "cifs-utils": "6.15:150400.3.21.1:x86_64", "autoconf": "2.69:1.445:noarch", "libgirepository-1_0-1": "1.78.1:150600.2.3:x86_64", "perl-IO-Socket-SSL": "2.84.0:150600.1.2:noarch", "yast2-python3-bindings": "4.6.0:150600.1.6:x86_64", "perl-WWW-RobotRules": "6.02:1.23:noarch", "at-spi2-core": "2.50.0:150600.1.2:x86_64", "perl-Test-Pod-Coverage": "1.10:1.23:noarch", "ruby-common": "2.1:3.15:noarch", "perl-File-Listing": "6.04:1.23:noarch", "python3-MarkupSafe": "1.0:1.29:x86_64", "perl-HTTP-Daemon": "6.01:150000.3.5.1:noarch", "ruby2.5-rubygem-ruby-dbus": "0.14.0:1.27:x86_64", "Mesa-libglapi0": "23.3.4:150600.83.3.1:x86_64", "ruby2.5-rubygem-mini_portile2": "2.3.0:1.27:x86_64", "hdparm": "9.62:150400.3.5.2:x86_64", "ruby2.5-rubygem-abstract_method": "1.2.1:1.28:x86_64", "libX11-xcb1": "1.8.7:150600.3.6.1:x86_64", "python3-pyserial": "3.4:150000.3.4.1:noarch", "libatomic1": "15.2.0+git10201:150000.1.9.1:x86_64", "python3-pyasn1": "0.4.2:150000.3.16.1:noarch", "libgomp1": "15.2.0+git10201:150000.1.9.1:x86_64", "python3-jsonpointer": "1.14:150000.3.2.1:noarch", "liblsan0": "15.2.0+git10201:150000.1.9.1:x86_64", "python3-immutables": "0.11:150000.1.5.1:x86_64", "libwebp7": "1.0.3:150200.3.14.1:x86_64", "python3-distro": "1.5.0:3.5.1:noarch", "libxcb-dri3-0": "1.13:150000.3.11.1:x86_64", "python3-certifi": "2018.1.18:150000.3.6.1:noarch", "libxcb-present0": "1.13:150000.3.11.1:x86_64", "python3-asn1crypto": "0.24.0:150000.3.5.1:noarch", "libxcb-shm0": "1.13:150000.3.11.1:x86_64", "python3-contextvars": "2.4:150000.1.5.1:noarch", "libxcb-xfixes0": "1.13:150000.3.11.1:x86_64", "python3-looseversion": "1.0.2:150100.3.3.1:noarch", "glibc-devel": "2.38:150600.14.46.1:x86_64", "python3-jsonpatch": "1.23:150100.3.5.1:noarch", "perl-HTML-Parser": "3.830.0:150000.3.3.1:x86_64", "python3-apipkg": "2.1.0:150500.1.1:noarch", "Mesa-libva": "23.3.4:150600.83.3.1:x86_64", "python3-solv": "0.7.39:150600.8.24.1:x86_64", "busybox-ed": "1.37.0:150500.7.11.1:noarch", "python3-six": "1.14.0:150200.15.1:noarch", "gcc7": "7.5.0+r278197:150000.4.44.1:x86_64", "python3-Babel": "2.8.0:3.3.1:noarch", "gcc7-c++": "7.5.0+r278197:150000.4.44.1:x86_64", "python3-cffi": "1.13.2:150200.3.5.1:x86_64", "libgd3": "2.2.5:11.3.1:x86_64", "aaa_base": "84.87+git20180409.04c9dae:150300.10.28.2:x86_64", "perl-libwww-perl": "6.31:1.17:noarch", "python3-gobject": "3.42.2:150400.10.23:x86_64", "libglvnd": "1.7.0:150600.1.2:x86_64", "python3-pyudev": "0.22.0+git.1642212208.d5630bf:150400.5.50:noarch", "gcc-c++": "7:3.9.1:x86_64", "python3-cryptography": "3.3.2:150400.26.1:x86_64", "php8-dom": "8.2.30:150600.3.25.1:x86_64", "ruby2.5-rubygem-cfa": "1.0.2:1.33:x86_64", "Mesa-libEGL1": "23.3.4:150600.83.3.1:x86_64", "ruby2.5-rubygem-cfa_grub2": "2.0.0:1.55:x86_64", "php8-ctype": "8.2.30:150600.3.25.1:x86_64", "python3-dbus-python": "1.2.16:150600.3.2:x86_64", "Mesa-libGL1": "23.3.4:150600.83.3.1:x86_64", "yast2-hardware-detection": "4.6.0:150600.1.5:x86_64", "Mesa-gallium": "23.3.4:150600.83.3.1:x86_64", "python3-pyrsistent": "0.14.4:150100.3.4.1:x86_64", "php8-pdo": "8.2.30:150600.3.25.1:x86_64", "python3-rtslib-fb": "2.1.75:150500.1.4:noarch", "php8-tokenizer": "8.2.30:150600.3.25.1:x86_64", "python3-configobj": "5.0.6:150000.3.3.1:noarch", "php8-xmlwriter": "8.2.30:150600.3.25.1:x86_64", "python3-pyzmq": "17.1.2:150000.3.8.1:x86_64", "php8-zlib": "8.2.30:150600.3.25.1:x86_64", "yast2-country-data": "4.6.7:150600.3.3.2:x86_64", "php8-sockets": "8.2.30:150600.3.25.1:x86_64", "wicked": "0.6.77:150600.11.15.1:x86_64", "php8-pcntl": "8.2.30:150600.3.25.1:x86_64", "python3-passlib": "1.7.4:150300.3.2.1:noarch", "perl-XML-Twig": "3.52:3.3.1:noarch", "python3-requests": "2.25.1:150300.3.21.1:noarch", "xdg-utils": "1.1.3+20210805:150500.1.1:noarch", "python3-jsonschema": "3.2.0:150200.9.5.1:noarch", "libsensors4": "3.5.0:4.6.1:x86_64", "sysconfig-netconfig": "0.85.11:150200.18.1:x86_64", "sharutils-lang": "4.15.2:150600.17.3:noarch", "yast2": "4.6.8:150600.1.1:x86_64", "procmail": "3.22:2.34:x86_64", "yast2-support": "4.6.0:150600.1.2:noarch", "lshw": "B.02.20:150200.3.18.2:x86_64", "yast2-slp": "4.6.0:150600.1.5:x86_64", "libiperf0": "3.19.1:150000.3.15.1:x86_64", "yast2-printer": "4.6.0:150600.1.4:x86_64", "yast2-journal": "4.6.0:150600.1.2:noarch", "yast2-audit-laf": "4.6.0:150600.1.2:noarch", "yast2-services-manager": "4.6.1:150600.1.2:noarch", "suse-module-tools": "15.6.14:150600.3.17.1:x86_64", "udev": "254.27:150600.4.62.1:x86_64", "yast2-firewall": "4.6.1:150600.3.3.2:noarch", "rsync": "3.2.7:150600.3.21.1:x86_64", "initviocons": "0.5:1.27:x86_64", "libssh-config": "0.9.8:150600.11.12.1:x86_64", "apparmor-parser": "3.1.7:150600.5.15.1:x86_64", "libestr0": "0.1.10:1.25:x86_64", "liblzma5": "5.4.1:150600.3.6.1:x86_64", "libsuseconnect": "1.22.1:150600.3.21.1:x86_64", "libmnl0": "1.0.4:1.25:x86_64", "libcrypt1": "4.4.15:150300.4.7.1:x86_64", "syslog-service": "2.0:150300.13.3.1:noarch", "libsmi": "0.4.8:1.29:x86_64", "libgmp10": "6.1.2:4.9.1:x86_64", "dhcp-client": "4.3.6.P1:150000.6.22.1:x86_64", "which": "2.21:2.20:x86_64", "libzstd1": "1.5.5:150600.1.3:x86_64", "irqbalance": "1.9.2:150500.1.3:x86_64", "libnsl2": "1.2.0:2.44:x86_64", "libyaml-cpp0_6": "0.6.3:150400.4.3.1:x86_64", "libpolkit-agent-1-0": "121:150500.3.11.1:x86_64", "hwinfo": "21.89:150500.3.12.1:x86_64", "libbrotlidec1": "1.0.7:150200.3.5.1:x86_64", "cron": "4.2:150400.84.3.1:x86_64", "libicu-suse65_1": "65.1:150200.4.15.1:x86_64", "libgcrypt20": "1.10.3:150600.3.9.1:x86_64", "audit": "3.0.6:150400.4.16.1:x86_64", "librdkafka1": "0.11.6:150600.16.3.1:x86_64", "libzio1": "1.06:2.20:x86_64", "yast2-packager": "4.6.10:150600.3.3.1:x86_64", "device-mapper": "2.03.22_1.02.196:150600.3.9.3:x86_64", "diffutils": "3.6:4.3.1:x86_64", "nfs-kernel-server": "2.6.4:150600.28.19.1:x86_64", "crash": "8.0.4:150600.4.6.2:x86_64", "libsolv-tools-base": "0.7.39:150600.8.24.1:x86_64", "yast2-country": "4.6.7:150600.3.3.2:x86_64", "cryptsetup": "2.7.0:150600.3.3.1:x86_64", "openSUSE-release-dvd": "15.6:lp156.417.4.1:x86_64", "cloud-init": "23.3:lp156.3.9:x86_64", "cyrus-sasl-digestmd5": "2.1.28:150600.7.14.1:x86_64", "libfa1": "1.14.1:150600.3.3.1:x86_64", "yast2-nfs-server": "4.6.0:150600.1.2:noarch", "mozilla-nss-certs": "3.112.5:150400.3.69.2:x86_64", "perl-base": "5.26.1:150300.17.20.1:x86_64", "yast2-ldap": "4.6.0:150600.1.5:x86_64", "yast2-logs": "4.6.8:150600.1.1:x86_64", "libgcc_s1": "15.3.0+git11272:150000.1.12.1:x86_64", "yast2-dns-server": "4.6.0:150600.1.2:noarch", "mokutil": "0.5.0:150600.8.3:x86_64", "libpcre2-8-0": "10.42:150600.1.26:x86_64", "yast2-users": "4.6.6:150600.3.3.5:x86_64", "pam": "1.3.0:150000.6.89.1:x86_64", "libreadline7": "7.0:150400.27.6.1:x86_64", "yast2-mail": "4.6.0:150600.1.2:noarch", "procps": "3.3.17:150000.7.42.1:x86_64", "libboost_thread1_66_0": "1.66.0:150200.12.7.1:x86_64", "yast2-add-on": "4.6.2:150600.1.2:noarch", "libnetfilter_conntrack3": "1.0.7:1.38:x86_64", "libopenssl3": "3.1.4:150600.5.56.1:x86_64", "perl-XML-NamespaceSupport": "1.12:1.24:noarch", "info": "6.5:4.17:x86_64", "perl-XML-SAX": "0.99:1.22:x86_64", "glibc-locale-base": "2.38:150600.14.52.1:x86_64", "libndctl6": "78:150600.1.10:x86_64", "libavahi-client3": "0.8:150600.15.18.1:x86_64", "libzypp": "17.38.13:150600.3.92.1:x86_64", "libpmem1": "1.11.1:150400.1.10:x86_64", "pam-config": "1.1:150600.16.8.1:x86_64", "dmidecode": "3.7:150400.16.14.1:x86_64", "libmlx4-1": "49.1:150600.2.5:x86_64", "shadow": "4.17.2:150600.17.21.1:x86_64", "libasm1": "0.185:150400.5.8.3:x86_64", "librdmacm1": "49.1:150600.2.5:x86_64", "system-user-nobody": "20170617:150400.24.2.1:noarch", "libfastjson4": "0.99.9:150400.3.3.1:x86_64", "libsha1detectcoll1": "1.0.3:2.18:x86_64", "system-group-audit": "3.0.6:150400.4.16.1:x86_64", "libauparse0": "3.0.6:150400.4.16.1:x86_64", "libopencsd_c_api1": "1.4.0:150600.1.5:x86_64", "yast2-core": "4.6.0:150600.1.7:x86_64", "libduktape206": "2.6.0:150500.4.5.1:x86_64", "stress-ng": "0.17.04:bp156.1.1:x86_64", "yast2-perl-bindings": "4.6.0:150600.1.5:x86_64", "libp11-kit0": "0.23.22:150500.8.3.1:x86_64", "libdrm2": "2.4.118:150600.1.4:x86_64", "iptables": "1.8.7:1.1:x86_64", "glibc-i18ndata": "2.38:150600.14.52.1:noarch", "libmpfr6": "4.0.2:3.3.1:x86_64", "libutempter0": "1.1.6:3.42:x86_64", "libavahi-common3": "0.8:150600.15.18.1:x86_64", "libsepol1": "3.1:150400.1.70:x86_64", "pciutils": "3.13.0:150300.13.12.1:x86_64", "libext2fs2": "1.47.0:150600.4.6.2:x86_64", "libwayland-server0": "1.22.0:150600.1.6:x86_64", "libgio-2_0-0": "2.78.6:150600.4.35.1:x86_64", "libnettle8": "3.9.1:150600.3.2.1:x86_64", "linux-glibc-devel": "6.4:150600.2.17:x86_64", "grub2": "2.12:150600.8.52.1:x86_64", "libsmartcols1": "2.39.3:150600.4.21.1:x86_64", "perl-CPAN-Changes": "0.400002:1.24:noarch", "wget": "1.20.3:150600.19.12.1:x86_64", "libyui16": "4.5.3:150600.6.2.1:x86_64", "perl-IO-HTML": "1.001:1.24:noarch", "ruby2.5": "2.5.9:150000.4.54.1:x86_64", "openssh-common": "9.6p1:150600.6.42.1:x86_64", "perl-TimeDate": "2.30:3.9.1:noarch", "shim": "16.1:150300.4.31.3:x86_64", "sed": "4.9:150600.3.3.1:x86_64", "site-config": "0.2:bp156.3.1:x86_64", "python3-pyparsing": "2.4.7:150300.3.3.1:noarch", "zsh": "5.8.1:150600.18.3.2:x86_64", "libdrm_nouveau2": "2.4.118:150600.1.4:x86_64", "python3-rpm": "4.14.3:150400.59.16.1:x86_64", "libhogweed6": "3.9.1:150600.3.2.1:x86_64", "libdrm_intel1": "2.4.118:150600.1.4:x86_64", "girepository-1_0": "1.78.1:150600.2.3:x86_64", "e2fsprogs": "1.47.0:150600.4.6.2:x86_64", "perl-HTTP-Date": "6.02:1.24:noarch", "libatk-bridge-2_0-0": "2.50.0:150600.1.2:x86_64", "btrfsprogs-udev-rules": "6.5.1:150600.2.4:noarch", "perl-HTTP-Message": "6.14:1.16:noarch", "python3-urwid": "2.0.1:1.15:x86_64", "libevent-2_1-7": "2.1.12:150600.1.2:x86_64", "perl-HTTP-Cookies": "6.04:1.20:noarch", "ruby2.5-rubygem-ruby-augeas": "0.5.0:1.31:x86_64", "libsemanage-conf": "3.5:150600.1.48:x86_64", "libLLVM17": "17.0.6:150600.3.7.1:x86_64", "ruby": "2.5:1.21:x86_64", "mailx": "12.5:150600.16.3:x86_64", "libcilkrts5": "7.5.0+r278197:150000.4.44.1:x86_64", "python3-netifaces": "0.10.6:150000.3.2.1:x86_64", "pv": "1.7.24:150600.3.3:x86_64", "libubsan0": "7.5.0+r278197:150000.4.44.1:x86_64", "python3-idna": "2.6:150000.3.9.1:noarch", "zstd": "1.5.5:150600.1.3:x86_64", "libxcb-glx0": "1.13:150000.3.11.1:x86_64", "python3-blinker": "1.4:150000.3.6.1:noarch", "cracklib": "2.9.11:150600.1.90:x86_64", "libxcb-sync1": "1.13:150000.3.11.1:x86_64", "python3-msgpack": "0.5.6:150100.3.6.1:x86_64", "libcap-ng0": "0.7.9:4.37:x86_64", "cpp7": "7.5.0+r278197:150000.4.44.1:x86_64", "python3-importlib-metadata": "1.5.0:150100.3.8.1:noarch", "liburcu6": "0.12.1:1.30:x86_64", "Mesa-dri": "23.3.4:150600.83.3.1:x86_64", "python3-M2Crypto": "0.44.0:150600.19.3.1:x86_64", "libpgm-5_2-0": "5.2.122:150400.15.6:x86_64", "postfix": "3.8.4:150600.3.3.1:x86_64", "python3-packaging": "21.3:150200.3.6.1:noarch", "netcat-openbsd": "1.203:150400.1.5:x86_64", "cpp": "7:3.9.1:x86_64", "aaa_base-extras": "84.87+git20180409.04c9dae:150300.10.28.2:x86_64", "binutils": "2.45:150100.7.57.1:x86_64", "gcc": "7:3.9.1:x86_64", "python3-setuptools": "44.1.1:150400.9.15.1:noarch", "keyutils": "1.6.3:5.6.1:x86_64", "perl-XML-Parser": "2.44:150000.3.3.1:x86_64", "ruby2.5-rubygem-cheetah": "0.5.2:1.33:x86_64", "libpipeline1": "1.4.1:150000.3.2.1:x86_64", "Mesa": "23.3.4:150600.83.3.1:x86_64", "yast2-transfer": "4.6.0:150600.1.5:x86_64", "libtasn1-6": "4.13:150000.4.14.1:x86_64", "php8-openssl": "8.2.30:150600.3.25.1:x86_64", "scout": "0.2.7+20230124.b4e3468:150500.1.1:noarch", "mozilla-nspr": "4.36.2:150000.3.36.1:x86_64", "php8-xmlreader": "8.2.30:150600.3.25.1:x86_64", "python3-Jinja2": "2.10.1:150000.3.21.1:noarch", "sqlite3-tcl": "3.53.2:150000.3.42.1:x86_64", "php8-zip": "8.2.30:150600.3.25.1:x86_64", "util-linux-systemd": "2.39.3:150600.4.21.1:x86_64", "unzip": "6.00:150000.4.14.1:x86_64", "php8-curl": "8.2.30:150600.3.25.1:x86_64", "python3-urllib3": "1.25.10:150300.4.30.1:noarch", "libfreetype6": "2.10.4:150000.4.25.1:x86_64", "phoronix-test-suite": "10.8.4:bp156.4.2:noarch", "sysconfig": "0.85.11:150200.18.1:x86_64", "libcares2": "1.19.1:150000.3.26.1:x86_64", "metamail": "2.7.19:bp156.5.6:x86_64", "yast2-sysconfig": "4.6.0:150600.1.2:noarch", "libblogger2": "2.26:150300.4.6.1:x86_64", "lshw-lang": "B.02.20:150200.3.18.2:noarch", "yast2-proxy": "4.6.0:150600.1.2:noarch", "libtirpc-netconfig": "1.3.4:150300.3.23.1:x86_64", "yast2-iscsi-lio-server": "4.6.0:150600.1.2:noarch", "libparted0": "3.2:150300.21.3.1:x86_64", "python3-oauthlib": "2.0.6:150000.3.6.1:noarch", "parted": "3.2:150300.21.3.1:x86_64", "dracut": "059+suse.565.g682306ec5:150600.3.29.1:x86_64", "release-notes-openSUSE": "15.6.20240123.1b6f9fd:lp156.1.1:noarch"} Linux 6.4.0.150600.23.125.default #1 SMP PREEMPT_DYNAMIC Tue Jul 14 08:35:02 UTC 2026 (1f4f2bb) x86_64 x86_64 GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"gcc (SUSE Linux) 7.5.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "70500", "CONFIG_CC_IS_CLANG": "not set", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_IS_LLVM": "not set", "CONFIG_AS_VERSION": "24500", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24500", "CONFIG_LD_IS_LLD": "not set", "CONFIG_LLD_VERSION": "0", "CONFIG_RUST_IS_AVAILABLE": "not set", "CONFIG_CC_CAN_LINK": "y", "CONFIG_CC_CAN_LINK_STATIC": "not set", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "not set", "CONFIG_TOOLS_SUPPORT_RELR": "not set", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_PAHOLE_VERSION": "125", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-150600.23.125-default\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "y", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "y", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_GENERIC_IRQ_INJECTION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_GENERIC_IRQ_CHIP": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "not set", "CONFIG_NO_HZ_FULL": "y", "CONFIG_CONTEXT_TRACKING_USER": "y", "CONFIG_CONTEXT_TRACKING_USER_FORCE": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "y", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_USERMODE_DRIVER": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "y", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "y", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "not set", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "y", "CONFIG_VIRT_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "y", "CONFIG_PSI_DEFAULT_DISABLED": "y", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_NEED_SRCU_NMI_SAFE": "not set", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_RCU_NOCB_CPU": "y", "CONFIG_RCU_NOCB_CPU_DEFAULT_ALL": "not set", "CONFIG_RCU_LAZY": "not set", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "18", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "15", "CONFIG_PRINTK_INDEX": "y", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC11_NO_ARRAY_BOUNDS": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_NUMA_BALANCING": "y", "CONFIG_NUMA_BALANCING_DEFAULT_ENABLED": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_KMEM": "y", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "y", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "y", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CGROUP_HUGETLB": "y", "CONFIG_CPUSETS": "y", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "y", "CONFIG_CGROUP_DEBUG": "not set", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "y", "CONFIG_BOOT_CONFIG_FORCE": "not set", "CONFIG_BOOT_CONFIG_EMBED": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "y", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_BASE_FULL": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "y", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_KALLSYMS_BASE_RELATIVE": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_DEBUG_RSEQ": "not set", "CONFIG_EMBEDDED": "not set", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_GUEST_PERF_EVENTS": "y", "CONFIG_PC104": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "y", "CONFIG_TRACEPOINTS": "y", "CONFIG_CRASH_CORE": "y", "CONFIG_KEXEC_CORE": "y", "CONFIG_HAVE_IMA_KEXEC": "y", "CONFIG_KEXEC": "y", "CONFIG_KEXEC_FILE": "y", "CONFIG_KEXEC_SIG": "y", "CONFIG_KEXEC_SIG_FORCE": "not set", "CONFIG_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_KEXEC_JUMP": "not set", "CONFIG_CRASH_DUMP": "y", "CONFIG_CRASH_HOTPLUG": "y", "CONFIG_CRASH_MAX_MEMORY_RANGES": "8192", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_DYNAMIC_PHYSICAL_MASK": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_FEATURE_NAMES": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_MPPARSE": "y", "CONFIG_GOLDFISH": "not set", "CONFIG_X86_CPU_RESCTRL": "y", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_NUMACHIP": "not set", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_UV": "y", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "y", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_XXL": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "y", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "y", "CONFIG_XEN_PV": "y", "CONFIG_XEN_512GB": "not set", "CONFIG_XEN_PV_SMP": "y", "CONFIG_XEN_PV_DOM0": "y", "CONFIG_XEN_PVHVM": "y", "CONFIG_XEN_PVHVM_SMP": "y", "CONFIG_XEN_PVHVM_GUEST": "y", "CONFIG_XEN_SAVE_RESTORE": "y", "CONFIG_XEN_DEBUG_FS": "y", "CONFIG_XEN_PVH": "y", "CONFIG_XEN_DOM0": "y", "CONFIG_XEN_PV_MSR_SAFE": "y", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "y", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "y", "CONFIG_ACRN_GUEST": "y", "CONFIG_INTEL_TDX_GUEST": "y", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "not set", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "y", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_TSC": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_PROCESSOR_SELECT": "not set", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "y", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "y", "CONFIG_NR_CPUS_RANGE_BEGIN": "8192", "CONFIG_NR_CPUS_RANGE_END": "8192", "CONFIG_NR_CPUS_DEFAULT": "8192", "CONFIG_NR_CPUS": "8192", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "y", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "y", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "m", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "m", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "y", "CONFIG_VM86": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "m", "CONFIG_X86_CPUID": "m", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_X86_MEM_ENCRYPT": "y", "CONFIG_AMD_MEM_ENCRYPT": "y", "CONFIG_NUMA": "y", "CONFIG_AMD_NUMA": "y", "CONFIG_X86_64_ACPI_NUMA": "y", "CONFIG_NUMA_EMU": "y", "CONFIG_NODES_SHIFT": "10", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_MEMORY_PROBE": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY_DEVICE": "y", "CONFIG_X86_PMEM_LEGACY": "m", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_ARCH_USES_PG_UNCACHED": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "not set", "CONFIG_X86_CET": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_X86_INTEL_TSX_MODE_OFF": "not set", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "y", "CONFIG_X86_SGX": "y", "CONFIG_X86_USER_SHADOW_STACK": "y", "CONFIG_INTEL_TDX_HOST": "y", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "y", "CONFIG_EFI_FAKE_MEMMAP": "not set", "CONFIG_EFI_RUNTIME_MAP": "y", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "y", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "not set", "CONFIG_HZ": "250", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SELECTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0xa", "CONFIG_ADDRESS_MASKING": "not set", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_BOOTPARAM_HOTPLUG_CPU0": "not set", "CONFIG_DEBUG_HOTPLUG_CPU0": "not set", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_LIVEPATCH": "y", "CONFIG_LIVEPATCH_IPA_CLONES": "y", "CONFIG_CC_HAS_SLS": "not set", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_SPECULATION_MITIGATIONS": "y", "CONFIG_PAGE_TABLE_ISOLATION": "y", "CONFIG_RETPOLINE": "y", "CONFIG_RETHUNK": "y", "CONFIG_CPU_UNRET_ENTRY": "y", "CONFIG_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_CPU_IBPB_ENTRY": "y", "CONFIG_CPU_IBRS_ENTRY": "y", "CONFIG_CPU_SRSO": "y", "CONFIG_GDS_FORCE_MITIGATION": "not set", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_MITIGATION_VMSCAPE": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_ARCH_HIBERNATION_HEADER": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_SUSPEND_SKIP_SYNC": "not set", "CONFIG_HIBERNATE_CALLBACKS": "y", "CONFIG_HIBERNATION": "y", "CONFIG_HIBERNATE_VERIFICATION": "y", "CONFIG_HIBERNATE_VERIFICATION_FORCE": "not set", "CONFIG_HIBERNATION_SNAPSHOT_DEV": "y", "CONFIG_PM_STD_PARTITION": "\\"\\"", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_DPM_WATCHDOG": "y", "CONFIG_DPM_WATCHDOG_TIMEOUT": "60", "CONFIG_PM_TRACE": "y", "CONFIG_PM_TRACE_RTC": "y", "CONFIG_PM_CLK": "y", "CONFIG_PM_GENERIC_DOMAINS": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_PM_GENERIC_DOMAINS_SLEEP": "y", "CONFIG_ENERGY_MODEL": "y", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_TABLE_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "y", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "m", "CONFIG_ACPI_AC": "m", "CONFIG_ACPI_BATTERY": "m", "CONFIG_ACPI_BUTTON": "m", "CONFIG_ACPI_TINY_POWER_BUTTON": "m", "CONFIG_ACPI_TINY_POWER_BUTTON_SIGNAL": "38", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "m", "CONFIG_ACPI_TAD": "m", "CONFIG_ACPI_DOCK": "y", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_IPMI": "m", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "m", "CONFIG_ACPI_THERMAL": "m", "CONFIG_ACPI_PLATFORM_PROFILE": "m", "CONFIG_ACPI_CUSTOM_DSDT_FILE": "\\"\\"", "CONFIG_ACPI_CUSTOM_DSDT": "not set", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "y", "CONFIG_ACPI_PCI_SLOT": "y", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_MEMORY": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "m", "CONFIG_ACPI_HED": "y", "CONFIG_ACPI_CUSTOM_METHOD": "not set", "CONFIG_ACPI_BGRT": "y", "CONFIG_ACPI_REDUCED_HARDWARE_ONLY": "not set", "CONFIG_ACPI_NFIT": "m", "CONFIG_NFIT_SECURITY_DEBUG": "not set", "CONFIG_ACPI_NUMA": "y", "CONFIG_ACPI_HMAT": "y", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "y", "CONFIG_ACPI_APEI_GHES": "y", "CONFIG_ACPI_APEI_PCIEAER": "y", "CONFIG_ACPI_APEI_MEMORY_FAILURE": "y", "CONFIG_ACPI_APEI_EINJ": "m", "CONFIG_ACPI_APEI_ERST_DEBUG": "not set", "CONFIG_ACPI_DPTF": "y", "CONFIG_DPTF_POWER": "m", "CONFIG_DPTF_PCH_FIVR": "m", "CONFIG_ACPI_WATCHDOG": "y", "CONFIG_ACPI_EXTLOG": "m", "CONFIG_ACPI_ADXL": "y", "CONFIG_ACPI_CONFIGFS": "m", "CONFIG_ACPI_PFRUT": "m", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "y", "CONFIG_PMIC_OPREGION": "y", "CONFIG_XPOWER_PMIC_OPREGION": "y", "CONFIG_BXT_WC_PMIC_OPREGION": "y", "CONFIG_TPS68470_PMIC_OPREGION": "y", "CONFIG_ACPI_VIOT": "y", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "not set", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "m", "CONFIG_CPU_FREQ_GOV_USERSPACE": "m", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "m", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "m", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "m", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "m", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "m", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_X86_SPEEDSTEP_LIB": "not set", "CONFIG_CPUFREQ_ARCH_CUR_FREQ": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "y", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "y", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "m", "CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED": "not set", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_PCI_XEN": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_PCI_CNB20LE_QUIRK": "not set", "CONFIG_ISA_BUS": "not set", "CONFIG_ISA_DMA_API": "y", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_HAVE_KVM": "y", "CONFIG_KVM_COMMON": "y", "CONFIG_HAVE_KVM_PFNCACHE": "y", "CONFIG_HAVE_KVM_IRQCHIP": "y", "CONFIG_HAVE_KVM_IRQ_ROUTING": "y", "CONFIG_HAVE_KVM_DIRTY_RING": "y", "CONFIG_HAVE_KVM_DIRTY_RING_TSO": "y", "CONFIG_HAVE_KVM_DIRTY_RING_ACQ_REL": "y", "CONFIG_KVM_MMIO": "y", "CONFIG_KVM_ASYNC_PF": "y", "CONFIG_HAVE_KVM_MSI": "y", "CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT": "y", "CONFIG_KVM_VFIO": "y", "CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT": "y", "CONFIG_KVM_COMPAT": "y", "CONFIG_HAVE_KVM_IRQ_BYPASS": "y", "CONFIG_HAVE_KVM_NO_POLL": "y", "CONFIG_KVM_XFER_TO_GUEST_WORK": "y", "CONFIG_HAVE_KVM_PM_NOTIFIER": "y", "CONFIG_KVM_GENERIC_HARDWARE_ENABLING": "y", "CONFIG_KVM_GENERIC_MMU_NOTIFIER": "y", "CONFIG_KVM_GENERIC_MEMORY_ATTRIBUTES": "y", "CONFIG_KVM_PRIVATE_MEM": "y", "CONFIG_KVM_GENERIC_PRIVATE_MEM": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "m", "CONFIG_KVM_WERROR": "not set", "CONFIG_KVM_SW_PROTECTED_VM": "y", "CONFIG_KVM_INTEL": "m", "CONFIG_X86_SGX_KVM": "y", "CONFIG_KVM_AMD": "m", "CONFIG_KVM_AMD_SEV": "y", "CONFIG_KVM_SMM": "y", "CONFIG_KVM_HYPERV": "y", "CONFIG_KVM_XEN": "not set", "CONFIG_KVM_PROVE_MMU": "not set", "CONFIG_KVM_EXTERNAL_WRITE_TRACKING": "y", "CONFIG_KVM_MAX_NR_VCPUS": "4096", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "y", "CONFIG_STATIC_KEYS_SELFTEST": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_64BIT_ALIGNED_ACCESS": "not set", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_ARCH_WANT_PMD_MKWRITE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_HAVE_RELIABLE_STACKTRACE": "y", "CONFIG_HAVE_ARCH_HASH": "not set", "CONFIG_ISA_BUS_API": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_EPHEMERAL_INODES": "not set", "CONFIG_CPU_NO_EFFICIENT_FFS": "not set", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "y", "CONFIG_ARCH_OPTIONAL_KERNEL_RWX": "not set", "CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_ARCH_HAS_CC_PLATFORM": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_HAVE_ARCH_NODE_DEV_GROUP": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_BASE_SMALL": "0", "CONFIG_MODULE_SIG_FORMAT": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUGFS": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "y", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "y", "CONFIG_MODVERSIONS": "y", "CONFIG_ASM_MODVERSIONS": "y", "CONFIG_MODULE_SRCVERSION_ALL": "y", "CONFIG_MODULE_SIG": "y", "CONFIG_MODULE_SIG_FORCE": "not set", "CONFIG_MODULE_SIG_ALL": "not set", "CONFIG_MODULE_SIG_SHA1": "not set", "CONFIG_MODULE_SIG_SHA224": "not set", "CONFIG_MODULE_SIG_SHA256": "y", "CONFIG_MODULE_SIG_SHA384": "not set", "CONFIG_MODULE_SIG_SHA512": "not set", "CONFIG_MODULE_SIG_HASH": "\\"sha256\\"", "CONFIG_MODULE_COMPRESS": "y", "CONFIG_MODULE_COMPRESS_GZIP": "not set", "CONFIG_MODULE_COMPRESS_XZ": "not set", "CONFIG_MODULE_COMPRESS_ZSTD": "y", "CONFIG_MODULE_COMPRESS_ALL": "not set", "CONFIG_MODULE_DECOMPRESS": "y", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_RQ_ALLOC_TIME": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "y", "CONFIG_BLK_DEV_INTEGRITY": "y", "CONFIG_BLK_DEV_INTEGRITY_T10": "m", "CONFIG_BLK_DEV_ZONED": "y", "CONFIG_BLK_DEV_THROTTLING": "y", "CONFIG_BLK_DEV_THROTTLING_LOW": "not set", "CONFIG_BLK_WBT": "y", "CONFIG_BLK_WBT_MQ": "y", "CONFIG_BLK_CGROUP_IOLATENCY": "y", "CONFIG_BLK_CGROUP_FC_APPID": "y", "CONFIG_BLK_CGROUP_IOCOST": "y", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_DEBUG_FS_ZONED": "y", "CONFIG_BLK_SED_OPAL": "y", "CONFIG_BLK_INLINE_ENCRYPTION": "y", "CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK": "y", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "y", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "y", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "y", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "y", "CONFIG_UNIXWARE_DISKLABEL": "y", "CONFIG_LDM_PARTITION": "y", "CONFIG_LDM_DEBUG": "not set", "CONFIG_SGI_PARTITION": "y", "CONFIG_ULTRIX_PARTITION": "y", "CONFIG_SUN_PARTITION": "y", "CONFIG_KARMA_PARTITION": "y", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "y", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_PREEMPT_NOTIFIERS": "y", "CONFIG_PADATA": "y", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_ZPOOL": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "y", "CONFIG_ZSWAP_DEFAULT_ON": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO": "y", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT": "\\"lzo\\"", "CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD": "y", "CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD": "not set", "CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC": "not set", "CONFIG_ZSWAP_ZPOOL_DEFAULT": "\\"zbud\\"", "CONFIG_ZBUD": "y", "CONFIG_Z3FOLD": "m", "CONFIG_ZSMALLOC": "y", "CONFIG_ZSMALLOC_STAT": "not set", "CONFIG_ZSMALLOC_CHAIN_SIZE": "8", "CONFIG_SLAB": "not set", "CONFIG_SLUB": "y", "CONFIG_SLUB_TINY": "not set", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "y", "CONFIG_SLAB_FREELIST_HARDENED": "y", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "y", "CONFIG_COMPAT_BRK": "not set", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_VMEMMAP": "y", "CONFIG_HAVE_FAST_GUP": "y", "CONFIG_ARCH_KEEP_MEMBLOCK": "y", "CONFIG_NUMA_KEEP_MEMINFO": "y", "CONFIG_MEMORY_ISOLATION": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_HAVE_BOOTMEM_INFO_NODE": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE": "y", "CONFIG_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE": "not set", "CONFIG_MEMORY_HOTREMOVE": "y", "CONFIG_MHP_MEMMAP_ON_MEMORY": "y", "CONFIG_SPLIT_PTLOCK_CPUS": "4", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_DEVICE_MIGRATION": "y", "CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION": "y", "CONFIG_ARCH_ENABLE_THP_MIGRATION": "y", "CONFIG_HUGETLB_PAGE_SIZE_VARIABLE": "not set", "CONFIG_CONTIG_ALLOC": "y", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "y", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "65536", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "y", "CONFIG_HWPOISON_INJECT": "m", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "y", "CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS": "y", "CONFIG_TRANSPARENT_HUGEPAGE_MADVISE": "not set", "CONFIG_THP_SWAP": "y", "CONFIG_READ_ONLY_THP_FOR_FS": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_USE_PERCPU_NUMA_NODE_ID": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_FRONTSWAP": "y", "CONFIG_CMA": "y", "CONFIG_CMA_DEBUG": "not set", "CONFIG_CMA_DEBUGFS": "not set", "CONFIG_CMA_SYSFS": "not set", "CONFIG_CMA_AREAS": "19", "CONFIG_MEM_SOFT_DIRTY": "y", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "y", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ARCH_HAS_ZONE_DMA_SET": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_ZONE_DEVICE": "y", "CONFIG_HMM_MIRROR": "y", "CONFIG_GET_FREE_REGION": "y", "CONFIG_DEVICE_PRIVATE": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MAPPING_DIRTY_HELPERS": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "y", "CONFIG_USERFAULTFD": "y", "CONFIG_HAVE_ARCH_USERFAULTFD_WP": "y", "CONFIG_HAVE_ARCH_USERFAULTFD_MINOR": "y", "CONFIG_PTE_MARKER_UFFD_WP": "y", "CONFIG_LRU_GEN": "y", "CONFIG_LRU_GEN_ENABLED": "not set", "CONFIG_LRU_GEN_STATS": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_WANT_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_NET_REDIRECT": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_PACKET": "m", "CONFIG_PACKET_DIAG": "m", "CONFIG_UNIX": "y", "CONFIG_UNIX_SCM": "y", "CONFIG_AF_UNIX_OOB": "not set", "CONFIG_UNIX_DIAG": "m", "CONFIG_TLS": "m", "CONFIG_TLS_DEVICE": "y", "CONFIG_TLS_TOE": "y", "CONFIG_XFRM": "y", "CONFIG_XFRM_OFFLOAD": "y", "CONFIG_XFRM_ALGO": "m", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "m", "CONFIG_XFRM_INTERFACE": "m", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "m", "CONFIG_XFRM_ESP": "m", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XFRM_ESPINTCP": "y", "CONFIG_SMC": "m", "CONFIG_SMC_DIAG": "m", "CONFIG_XDP_SOCKETS": "y", "CONFIG_XDP_SOCKETS_DIAG": "m", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "not set", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "m", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "y", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "m", "CONFIG_NET_UDP_TUNNEL": "m", "CONFIG_NET_FOU": "m", "CONFIG_NET_FOU_IP_TUNNELS": "y", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "m", "CONFIG_INET_ESPINTCP": "y", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "m", "CONFIG_INET_DIAG": "m", "CONFIG_INET_TCP_DIAG": "m", "CONFIG_INET_UDP_DIAG": "m", "CONFIG_INET_RAW_DIAG": "m", "CONFIG_INET_DIAG_DESTROY": "y", "CONFIG_TCP_CONG_ADVANCED": "y", "CONFIG_TCP_CONG_BIC": "m", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_TCP_CONG_WESTWOOD": "m", "CONFIG_TCP_CONG_HTCP": "m", "CONFIG_TCP_CONG_HSTCP": "m", "CONFIG_TCP_CONG_HYBLA": "m", "CONFIG_TCP_CONG_VEGAS": "m", "CONFIG_TCP_CONG_NV": "m", "CONFIG_TCP_CONG_SCALABLE": "m", "CONFIG_TCP_CONG_LP": "m", "CONFIG_TCP_CONG_VENO": "m", "CONFIG_TCP_CONG_YEAH": "m", "CONFIG_TCP_CONG_ILLINOIS": "m", "CONFIG_TCP_CONG_DCTCP": "m", "CONFIG_TCP_CONG_CDG": "m", "CONFIG_TCP_CONG_BBR": "m", "CONFIG_DEFAULT_CUBIC": "y", "CONFIG_DEFAULT_RENO": "not set", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_MD5SIG": "y", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "y", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "m", "CONFIG_INET6_ESP": "m", "CONFIG_INET6_ESP_OFFLOAD": "m", "CONFIG_INET6_ESPINTCP": "y", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "m", "CONFIG_IPV6_ILA": "m", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "m", "CONFIG_IPV6_SIT": "m", "CONFIG_IPV6_SIT_6RD": "y", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "m", "CONFIG_IPV6_FOU": "m", "CONFIG_IPV6_FOU_TUNNEL": "m", "CONFIG_IPV6_MULTIPLE_TABLES": "y", "CONFIG_IPV6_SUBTREES": "y", "CONFIG_IPV6_MROUTE": "y", "CONFIG_IPV6_MROUTE_MULTIPLE_TABLES": "y", "CONFIG_IPV6_PIMSM_V2": "y", "CONFIG_IPV6_SEG6_LWTUNNEL": "y", "CONFIG_IPV6_SEG6_HMAC": "y", "CONFIG_IPV6_SEG6_BPF": "y", "CONFIG_IPV6_RPL_LWTUNNEL": "y", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "y", "CONFIG_MPTCP": "y", "CONFIG_INET_MPTCP_DIAG": "m", "CONFIG_MPTCP_IPV6": "y", "CONFIG_NETWORK_SECMARK": "y", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "m", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "m", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "m", "CONFIG_NETFILTER_NETLINK_ACCT": "m", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "m", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_SECMARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "y", "CONFIG_NF_CONNTRACK_PROCFS": "y", "CONFIG_NF_CONNTRACK_EVENTS": "y", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "y", "CONFIG_NF_CONNTRACK_LABELS": "y", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "m", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "m", "CONFIG_NF_CT_NETLINK_HELPER": "m", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "y", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "m", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "m", "CONFIG_NFT_FIB_INET": "m", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "m", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "m", "CONFIG_NFT_DUP_NETDEV": "m", "CONFIG_NFT_FWD_NETDEV": "m", "CONFIG_NFT_FIB_NETDEV": "m", "CONFIG_NFT_REJECT_NETDEV": "m", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "y", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_SET": "m", "CONFIG_NETFILTER_XT_TARGET_AUDIT": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CONNSECMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "m", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "m", "CONFIG_NETFILTER_XT_TARGET_LED": "m", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "m", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "m", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "m", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "m", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_SECMARK": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "m", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "m", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "m", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "m", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "m", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "m", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "m", "CONFIG_NETFILTER_XT_MATCH_IPVS": "m", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "m", "CONFIG_NETFILTER_XT_MATCH_OSF": "m", "CONFIG_NETFILTER_XT_MATCH_OWNER": "m", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "m", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "m", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "m", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "m", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "m", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "m", "CONFIG_IP_SET_MAX": "256", "CONFIG_IP_SET_BITMAP_IP": "m", "CONFIG_IP_SET_BITMAP_IPMAC": "m", "CONFIG_IP_SET_BITMAP_PORT": "m", "CONFIG_IP_SET_HASH_IP": "m", "CONFIG_IP_SET_HASH_IPMARK": "m", "CONFIG_IP_SET_HASH_IPPORT": "m", "CONFIG_IP_SET_HASH_IPPORTIP": "m", "CONFIG_IP_SET_HASH_IPPORTNET": "m", "CONFIG_IP_SET_HASH_IPMAC": "m", "CONFIG_IP_SET_HASH_MAC": "m", "CONFIG_IP_SET_HASH_NETPORTNET": "m", "CONFIG_IP_SET_HASH_NET": "m", "CONFIG_IP_SET_HASH_NETNET": "m", "CONFIG_IP_SET_HASH_NETPORT": "m", "CONFIG_IP_SET_HASH_NETIFACE": "m", "CONFIG_IP_SET_LIST_SET": "m", "CONFIG_IP_VS": "m", "CONFIG_IP_VS_IPV6": "y", "CONFIG_IP_VS_DEBUG": "not set", "CONFIG_IP_VS_TAB_BITS": "12", "CONFIG_IP_VS_PROTO_TCP": "y", "CONFIG_IP_VS_PROTO_UDP": "y", "CONFIG_IP_VS_PROTO_AH_ESP": "y", "CONFIG_IP_VS_PROTO_ESP": "y", "CONFIG_IP_VS_PROTO_AH": "y", "CONFIG_IP_VS_PROTO_SCTP": "y", "CONFIG_IP_VS_RR": "m", "CONFIG_IP_VS_WRR": "m", "CONFIG_IP_VS_LC": "m", "CONFIG_IP_VS_WLC": "m", "CONFIG_IP_VS_FO": "m", "CONFIG_IP_VS_OVF": "m", "CONFIG_IP_VS_LBLC": "m", "CONFIG_IP_VS_LBLCR": "m", "CONFIG_IP_VS_DH": "m", "CONFIG_IP_VS_SH": "m", "CONFIG_IP_VS_MH": "m", "CONFIG_IP_VS_SED": "m", "CONFIG_IP_VS_NQ": "m", "CONFIG_IP_VS_TWOS": "m", "CONFIG_IP_VS_SH_TAB_BITS": "8", "CONFIG_IP_VS_MH_TAB_INDEX": "12", "CONFIG_IP_VS_FTP": "m", "CONFIG_IP_VS_NFCT": "y", "CONFIG_IP_VS_PE_SIP": "m", "CONFIG_NF_DEFRAG_IPV4": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "m", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "m", "CONFIG_NFT_FIB_IPV4": "m", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "m", "CONFIG_NF_LOG_ARP": "m", "CONFIG_NF_LOG_IPV4": "m", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_SNMP_BASIC": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "m", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "m", "CONFIG_NFT_FIB_IPV6": "m", "CONFIG_NF_DUP_IPV6": "m", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "m", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "m", "CONFIG_IP6_NF_MATCH_RPFILTER": "m", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "m", "CONFIG_IP6_NF_TARGET_HL": "m", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "m", "CONFIG_IP6_NF_TARGET_SYNPROXY": "m", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "m", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "m", "CONFIG_IP6_NF_TARGET_NPT": "m", "CONFIG_NF_DEFRAG_IPV6": "m", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "m", "CONFIG_NFT_BRIDGE_REJECT": "m", "CONFIG_NF_CONNTRACK_BRIDGE": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_BPFILTER": "y", "CONFIG_BPFILTER_UMH": "m", "CONFIG_IP_DCCP": "m", "CONFIG_INET_DCCP_DIAG": "m", "CONFIG_IP_DCCP_CCID2_DEBUG": "not set", "CONFIG_IP_DCCP_CCID3": "y", "CONFIG_IP_DCCP_CCID3_DEBUG": "not set", "CONFIG_IP_DCCP_TFRC_LIB": "y", "CONFIG_IP_DCCP_DEBUG": "not set", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "m", "CONFIG_RDS_RDMA": "m", "CONFIG_RDS_TCP": "m", "CONFIG_RDS_DEBUG": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_IB": "not set", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "m", "CONFIG_ATM_CLIP": "m", "CONFIG_ATM_CLIP_NO_ICMP": "not set", "CONFIG_ATM_LANE": "m", "CONFIG_ATM_MPOA": "m", "CONFIG_ATM_BR2684": "m", "CONFIG_ATM_BR2684_IPFILTER": "not set", "CONFIG_L2TP": "m", "CONFIG_L2TP_DEBUGFS": "m", "CONFIG_L2TP_V3": "y", "CONFIG_L2TP_IP": "m", "CONFIG_L2TP_ETH": "m", "CONFIG_STP": "m", "CONFIG_GARP": "m", "CONFIG_MRP": "m", "CONFIG_BRIDGE": "m", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "y", "CONFIG_BRIDGE_CFM": "y", "CONFIG_NET_DSA": "m", "CONFIG_NET_DSA_TAG_NONE": "m", "CONFIG_NET_DSA_TAG_AR9331": "m", "CONFIG_NET_DSA_TAG_BRCM_COMMON": "m", "CONFIG_NET_DSA_TAG_BRCM": "m", "CONFIG_NET_DSA_TAG_BRCM_LEGACY": "m", "CONFIG_NET_DSA_TAG_BRCM_PREPEND": "m", "CONFIG_NET_DSA_TAG_HELLCREEK": "m", "CONFIG_NET_DSA_TAG_GSWIP": "m", "CONFIG_NET_DSA_TAG_DSA_COMMON": "m", "CONFIG_NET_DSA_TAG_DSA": "m", "CONFIG_NET_DSA_TAG_EDSA": "m", "CONFIG_NET_DSA_TAG_MTK": "m", "CONFIG_NET_DSA_TAG_KSZ": "m", "CONFIG_NET_DSA_TAG_OCELOT": "m", "CONFIG_NET_DSA_TAG_OCELOT_8021Q": "m", "CONFIG_NET_DSA_TAG_QCA": "m", "CONFIG_NET_DSA_TAG_RTL4_A": "m", "CONFIG_NET_DSA_TAG_RTL8_4": "m", "CONFIG_NET_DSA_TAG_RZN1_A5PSW": "m", "CONFIG_NET_DSA_TAG_LAN9303": "m", "CONFIG_NET_DSA_TAG_SJA1105": "m", "CONFIG_NET_DSA_TAG_TRAILER": "m", "CONFIG_NET_DSA_TAG_XRS700X": "m", "CONFIG_VLAN_8021Q": "m", "CONFIG_VLAN_8021Q_GVRP": "y", "CONFIG_VLAN_8021Q_MVRP": "y", "CONFIG_LLC": "m", "CONFIG_LLC2": "m", "CONFIG_ATALK": "not set", "CONFIG_X25": "m", "CONFIG_LAPB": "m", "CONFIG_PHONET": "m", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "m", "CONFIG_6LOWPAN_GHC_UDP": "m", "CONFIG_6LOWPAN_GHC_ICMPV6": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "m", "CONFIG_IEEE802154": "m", "CONFIG_IEEE802154_NL802154_EXPERIMENTAL": "not set", "CONFIG_IEEE802154_SOCKET": "m", "CONFIG_IEEE802154_6LOWPAN": "m", "CONFIG_MAC802154": "m", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "m", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "m", "CONFIG_NET_SCH_ETF": "m", "CONFIG_NET_SCH_MQPRIO_LIB": "m", "CONFIG_NET_SCH_TAPRIO": "m", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "m", "CONFIG_NET_SCH_MQPRIO": "m", "CONFIG_NET_SCH_SKBPRIO": "m", "CONFIG_NET_SCH_CHOKE": "m", "CONFIG_NET_SCH_QFQ": "m", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "m", "CONFIG_NET_SCH_FQ": "m", "CONFIG_NET_SCH_HHF": "m", "CONFIG_NET_SCH_PIE": "m", "CONFIG_NET_SCH_FQ_PIE": "m", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "m", "CONFIG_NET_SCH_ETS": "m", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "m", "CONFIG_NET_CLS_ROUTE4": "m", "CONFIG_NET_CLS_FW": "m", "CONFIG_NET_CLS_U32": "m", "CONFIG_CLS_U32_PERF": "y", "CONFIG_CLS_U32_MARK": "y", "CONFIG_NET_CLS_FLOW": "m", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "m", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "m", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "m", "CONFIG_NET_EMATCH_NBYTE": "m", "CONFIG_NET_EMATCH_U32": "m", "CONFIG_NET_EMATCH_META": "m", "CONFIG_NET_EMATCH_TEXT": "m", "CONFIG_NET_EMATCH_CANID": "m", "CONFIG_NET_EMATCH_IPSET": "m", "CONFIG_NET_EMATCH_IPT": "m", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "m", "CONFIG_GACT_PROB": "y", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "m", "CONFIG_NET_ACT_IPT": "m", "CONFIG_NET_ACT_NAT": "m", "CONFIG_NET_ACT_PEDIT": "m", "CONFIG_NET_ACT_SIMP": "m", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "m", "CONFIG_NET_ACT_MPLS": "m", "CONFIG_NET_ACT_VLAN": "m", "CONFIG_NET_ACT_BPF": "m", "CONFIG_NET_ACT_CONNMARK": "m", "CONFIG_NET_ACT_CTINFO": "m", "CONFIG_NET_ACT_SKBMOD": "m", "CONFIG_NET_ACT_IFE": "m", "CONFIG_NET_ACT_TUNNEL_KEY": "m", "CONFIG_NET_ACT_CT": "m", "CONFIG_NET_ACT_GATE": "m", "CONFIG_NET_IFE_SKBMARK": "m", "CONFIG_NET_IFE_SKBPRIO": "m", "CONFIG_NET_IFE_SKBTCINDEX": "m", "CONFIG_NET_TC_SKB_EXT": "y", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "y", "CONFIG_DNS_RESOLVER": "m", "CONFIG_BATMAN_ADV": "m", "CONFIG_BATMAN_ADV_BATMAN_V": "y", "CONFIG_BATMAN_ADV_BLA": "y", "CONFIG_BATMAN_ADV_DAT": "y", "CONFIG_BATMAN_ADV_NC": "y", "CONFIG_BATMAN_ADV_MCAST": "y", "CONFIG_BATMAN_ADV_DEBUG": "y", "CONFIG_BATMAN_ADV_TRACING": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_OPENVSWITCH_GENEVE": "m", "CONFIG_VSOCKETS": "m", "CONFIG_VSOCKETS_DIAG": "m", "CONFIG_VSOCKETS_LOOPBACK": "m", "CONFIG_VMWARE_VMCI_VSOCKETS": "m", "CONFIG_VIRTIO_VSOCKETS": "m", "CONFIG_VIRTIO_VSOCKETS_COMMON": "m", "CONFIG_HYPERV_VSOCKETS": "m", "CONFIG_NETLINK_DIAG": "m", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "m", "CONFIG_MPLS_IPTUNNEL": "m", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "m", "CONFIG_NET_SWITCHDEV": "y", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "m", "CONFIG_QRTR_SMD": "m", "CONFIG_QRTR_TUN": "m", "CONFIG_QRTR_MHI": "m", "CONFIG_NET_NCSI": "y", "CONFIG_NCSI_OEM_CMD_GET_MAC": "y", "CONFIG_NCSI_OEM_CMD_KEEP_PHY": "y", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "y", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "y", "CONFIG_HAMRADIO": "y", "CONFIG_AX25": "m", "CONFIG_AX25_DAMA_SLAVE": "y", "CONFIG_NETROM": "m", "CONFIG_ROSE": "m", "CONFIG_MKISS": "m", "CONFIG_6PACK": "m", "CONFIG_BPQETHER": "m", "CONFIG_BAYCOM_SER_FDX": "m", "CONFIG_BAYCOM_SER_HDX": "m", "CONFIG_BAYCOM_PAR": "m", "CONFIG_YAM": "m", "CONFIG_CAN": "m", "CONFIG_CAN_RAW": "m", "CONFIG_CAN_BCM": "m", "CONFIG_CAN_GW": "m", "CONFIG_CAN_J1939": "m", "CONFIG_CAN_ISOTP": "m", "CONFIG_BT": "m", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_HS": "y", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "y", "CONFIG_BT_MSFTEXT": "y", "CONFIG_BT_AOSPEXT": "y", "CONFIG_BT_DEBUGFS": "not set", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_INTEL": "m", "CONFIG_BT_BCM": "m", "CONFIG_BT_RTL": "m", "CONFIG_BT_QCA": "m", "CONFIG_BT_MTK": "m", "CONFIG_BT_HCIBTUSB": "m", "CONFIG_BT_HCIBTUSB_AUTOSUSPEND": "y", "CONFIG_BT_HCIBTUSB_POLL_SYNC": "y", "CONFIG_BT_HCIBTUSB_BCM": "y", "CONFIG_BT_HCIBTUSB_MTK": "y", "CONFIG_BT_HCIBTUSB_RTL": "y", "CONFIG_BT_HCIBTSDIO": "m", "CONFIG_BT_HCIUART": "m", "CONFIG_BT_HCIUART_SERDEV": "y", "CONFIG_BT_HCIUART_H4": "y", "CONFIG_BT_HCIUART_NOKIA": "m", "CONFIG_BT_HCIUART_BCSP": "y", "CONFIG_BT_HCIUART_ATH3K": "y", "CONFIG_BT_HCIUART_LL": "y", "CONFIG_BT_HCIUART_3WIRE": "y", "CONFIG_BT_HCIUART_INTEL": "y", "CONFIG_BT_HCIUART_BCM": "y", "CONFIG_BT_HCIUART_RTL": "y", "CONFIG_BT_HCIUART_QCA": "y", "CONFIG_BT_HCIUART_AG6XX": "y", "CONFIG_BT_HCIUART_MRVL": "y", "CONFIG_BT_HCIBCM203X": "m", "CONFIG_BT_HCIBCM4377": "m", "CONFIG_BT_HCIBPA10X": "m", "CONFIG_BT_HCIBFUSB": "m", "CONFIG_BT_HCIVHCI": "m", "CONFIG_BT_MRVL": "m", "CONFIG_BT_MRVL_SDIO": "m", "CONFIG_BT_ATH3K": "m", "CONFIG_BT_MTKSDIO": "m", "CONFIG_BT_MTKUART": "m", "CONFIG_BT_HCIRSI": "m", "CONFIG_BT_VIRTIO": "m", "CONFIG_BT_NXPUART": "m", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "m", "CONFIG_STREAM_PARSER": "y", "CONFIG_MCTP": "y", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WIRELESS_EXT": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_WEXT_SPY": "y", "CONFIG_WEXT_PRIV": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_CERTIFICATION_ONUS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_CFG80211_WEXT_EXPORT": "y", "CONFIG_LIB80211": "m", "CONFIG_LIB80211_CRYPT_WEP": "m", "CONFIG_LIB80211_CRYPT_CCMP": "m", "CONFIG_LIB80211_CRYPT_TKIP": "m", "CONFIG_LIB80211_DEBUG": "not set", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "y", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_DEBUGFS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "m", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "m", "CONFIG_NET_9P": "m", "CONFIG_NET_9P_FD": "m", "CONFIG_NET_9P_VIRTIO": "m", "CONFIG_NET_9P_XEN": "m", "CONFIG_NET_9P_RDMA": "m", "CONFIG_NET_9P_DEBUG": "not set", "CONFIG_CAIF": "m", "CONFIG_CAIF_DEBUG": "not set", "CONFIG_CAIF_NETDEV": "m", "CONFIG_CAIF_USB": "m", "CONFIG_CEPH_LIB": "m", "CONFIG_CEPH_LIB_PRETTYDEBUG": "y", "CONFIG_CEPH_LIB_USE_DNS_RESOLVER": "not set", "CONFIG_NFC": "m", "CONFIG_NFC_DIGITAL": "m", "CONFIG_NFC_NCI": "m", "CONFIG_NFC_NCI_SPI": "not set", "CONFIG_NFC_NCI_UART": "m", "CONFIG_NFC_HCI": "m", "CONFIG_NFC_SHDLC": "y", "CONFIG_NFC_TRF7970A": "not set", "CONFIG_NFC_MEI_PHY": "m", "CONFIG_NFC_SIM": "m", "CONFIG_NFC_PORT100": "m", "CONFIG_NFC_VIRTUAL_NCI": "m", "CONFIG_NFC_FDP": "m", "CONFIG_NFC_FDP_I2C": "m", "CONFIG_NFC_PN544": "m", "CONFIG_NFC_PN544_I2C": "m", "CONFIG_NFC_PN544_MEI": "m", "CONFIG_NFC_PN533": "m", "CONFIG_NFC_PN533_USB": "m", "CONFIG_NFC_PN533_I2C": "m", "CONFIG_NFC_PN532_UART": "m", "CONFIG_NFC_MICROREAD": "m", "CONFIG_NFC_MICROREAD_I2C": "m", "CONFIG_NFC_MICROREAD_MEI": "m", "CONFIG_NFC_MRVL": "m", "CONFIG_NFC_MRVL_USB": "m", "CONFIG_NFC_MRVL_UART": "m", "CONFIG_NFC_MRVL_I2C": "m", "CONFIG_NFC_ST21NFCA": "m", "CONFIG_NFC_ST21NFCA_I2C": "m", "CONFIG_NFC_ST_NCI": "m", "CONFIG_NFC_ST_NCI_I2C": "m", "CONFIG_NFC_ST_NCI_SPI": "m", "CONFIG_NFC_NXP_NCI": "m", "CONFIG_NFC_NXP_NCI_I2C": "m", "CONFIG_NFC_S3FWRN5": "m", "CONFIG_NFC_S3FWRN5_I2C": "m", "CONFIG_NFC_S3FWRN82_UART": "m", "CONFIG_NFC_ST95HF": "m", "CONFIG_PSAMPLE": "m", "CONFIG_NET_IFE": "m", "CONFIG_LWTUNNEL": "y", "CONFIG_LWTUNNEL_BPF": "y", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_SOCK_VALIDATE_XMIT": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "y", "CONFIG_FAILOVER": "m", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_EISA": "y", "CONFIG_EISA": "not set", "CONFIG_HAVE_PCI": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "y", "CONFIG_PCIEAER": "y", "CONFIG_PCIEAER_INJECT": "m", "CONFIG_PCIE_ECRC": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_DPC": "y", "CONFIG_PCIE_PTM": "y", "CONFIG_PCIE_EDR": "y", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "y", "CONFIG_PCI_PF_STUB": "m", "CONFIG_XEN_PCIDEV_FRONTEND": "m", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_DOE": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_P2PDMA": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_PCI_HYPERV": "m", "CONFIG_PCIE_BUS_TUNE_OFF": "not set", "CONFIG_PCIE_BUS_DEFAULT": "y", "CONFIG_PCIE_BUS_SAFE": "not set", "CONFIG_PCIE_BUS_PERFORMANCE": "not set", "CONFIG_PCIE_BUS_PEER2PEER": "not set", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "y", "CONFIG_HOTPLUG_PCI_ACPI_IBM": "m", "CONFIG_HOTPLUG_PCI_CPCI": "y", "CONFIG_HOTPLUG_PCI_CPCI_ZT5550": "m", "CONFIG_HOTPLUG_PCI_CPCI_GENERIC": "m", "CONFIG_HOTPLUG_PCI_SHPC": "y", "CONFIG_VMD": "m", "CONFIG_PCI_HYPERV_INTERFACE": "m", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCIE_DW_PLAT_EP": "not set", "CONFIG_PCI_ENDPOINT": "y", "CONFIG_PCI_ENDPOINT_CONFIGFS": "not set", "CONFIG_PCI_EPF_TEST": "m", "CONFIG_PCI_EPF_NTB": "m", "CONFIG_PCI_EPF_VNTB": "m", "CONFIG_PCI_SW_SWITCHTEC": "m", "CONFIG_CXL_BUS": "m", "CONFIG_CXL_PCI": "m", "CONFIG_CXL_MEM_RAW_COMMANDS": "not set", "CONFIG_CXL_ACPI": "m", "CONFIG_CXL_PMEM": "m", "CONFIG_CXL_MEM": "m", "CONFIG_CXL_PORT": "m", "CONFIG_CXL_SUSPEND": "y", "CONFIG_CXL_REGION": "y", "CONFIG_CXL_REGION_INVALIDATION_TEST": "not set", "CONFIG_PCCARD": "m", "CONFIG_PCMCIA": "not set", "CONFIG_CARDBUS": "y", "CONFIG_YENTA": "m", "CONFIG_YENTA_O2": "y", "CONFIG_YENTA_RICOH": "y", "CONFIG_YENTA_TI": "y", "CONFIG_YENTA_ENE_TUNE": "y", "CONFIG_YENTA_TOSHIBA": "y", "CONFIG_RAPIDIO": "m", "CONFIG_RAPIDIO_TSI721": "m", "CONFIG_RAPIDIO_DISC_TIMEOUT": "30", "CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS": "y", "CONFIG_RAPIDIO_DMA_ENGINE": "y", "CONFIG_RAPIDIO_DEBUG": "y", "CONFIG_RAPIDIO_ENUM_BASIC": "m", "CONFIG_RAPIDIO_CHMAN": "m", "CONFIG_RAPIDIO_MPORT_CDEV": "m", "CONFIG_RAPIDIO_CPS_XX": "m", "CONFIG_RAPIDIO_CPS_GEN2": "m", "CONFIG_RAPIDIO_RXS_GEN3": "m", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "y", "CONFIG_UEVENT_HELPER_PATH": "\\"\\"", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "not set", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_FW_LOADER_DEBUG": "y", "CONFIG_FW_LOADER_PAGED_BUF": "y", "CONFIG_FW_LOADER_SYSFS": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "y", "CONFIG_FW_LOADER_USER_HELPER_FALLBACK": "not set", "CONFIG_FW_LOADER_COMPRESS": "y", "CONFIG_FW_LOADER_COMPRESS_XZ": "y", "CONFIG_FW_LOADER_COMPRESS_ZSTD": "y", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "y", "CONFIG_WANT_DEV_COREDUMP": "y", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_HMEM_REPORTING": "y", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_SYS_HYPERVISOR": "y", "CONFIG_GENERIC_CPU_DEVICES": "not set", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_SOC_BUS": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_REGMAP_SPI": "m", "CONFIG_REGMAP_SPMI": "m", "CONFIG_REGMAP_W1": "m", "CONFIG_REGMAP_MMIO": "m", "CONFIG_REGMAP_IRQ": "y", "CONFIG_REGMAP_SOUNDWIRE": "m", "CONFIG_REGMAP_SOUNDWIRE_MBQ": "m", "CONFIG_REGMAP_SCCB": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "m", "CONFIG_MHI_BUS_DEBUG": "y", "CONFIG_MHI_BUS_PCI_GENERIC": "m", "CONFIG_MHI_BUS_EP": "m", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "m", "CONFIG_EDD_OFF": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "m", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT_FIND": "y", "CONFIG_ISCSI_IBFT": "m", "CONFIG_FW_CFG_SYSFS": "m", "CONFIG_FW_CFG_SYSFS_CMDLINE": "y", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "y", "CONFIG_FW_CS_DSP": "m", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_VARS_PSTORE": "m", "CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE": "y", "CONFIG_EFI_SOFT_RESERVE": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "m", "CONFIG_EFI_CAPSULE_LOADER": "m", "CONFIG_EFI_TEST": "not set", "CONFIG_EFI_DEV_PATH_PARSER": "y", "CONFIG_APPLE_PROPERTIES": "y", "CONFIG_RESET_ATTACK_MITIGATION": "y", "CONFIG_EFI_RCI2_TABLE": "y", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "y", "CONFIG_UNACCEPTED_MEMORY": "y", "CONFIG_EFI_EMBEDDED_FIRMWARE": "y", "CONFIG_EFI_SECRET_KEY": "y", "CONFIG_UEFI_CPER": "y", "CONFIG_UEFI_CPER_X86": "y", "CONFIG_GNSS": "m", "CONFIG_GNSS_SERIAL": "m", "CONFIG_GNSS_MTK_SERIAL": "m", "CONFIG_GNSS_SIRF_SERIAL": "m", "CONFIG_GNSS_UBX_SERIAL": "m", "CONFIG_GNSS_USB": "m", "CONFIG_MTD": "m", "CONFIG_MTD_TESTS": "m", "CONFIG_MTD_AR7_PARTS": "m", "CONFIG_MTD_CMDLINE_PARTS": "not set", "CONFIG_MTD_REDBOOT_PARTS": "m", "CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK": "-1", "CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED": "not set", "CONFIG_MTD_REDBOOT_PARTS_READONLY": "not set", "CONFIG_MTD_BLKDEVS": "m", "CONFIG_MTD_BLOCK": "m", "CONFIG_MTD_BLOCK_RO": "m", "CONFIG_FTL": "m", "CONFIG_NFTL": "m", "CONFIG_NFTL_RW": "y", "CONFIG_INFTL": "m", "CONFIG_RFD_FTL": "m", "CONFIG_SSFDC": "m", "CONFIG_SM_FTL": "not set", "CONFIG_MTD_OOPS": "m", "CONFIG_MTD_PSTORE": "m", "CONFIG_MTD_SWAP": "m", "CONFIG_MTD_PARTITIONED_MASTER": "y", "CONFIG_MTD_CFI": "m", "CONFIG_MTD_JEDECPROBE": "m", "CONFIG_MTD_GEN_PROBE": "m", "CONFIG_MTD_CFI_ADV_OPTIONS": "y", "CONFIG_MTD_CFI_NOSWAP": "y", "CONFIG_MTD_CFI_BE_BYTE_SWAP": "not set", "CONFIG_MTD_CFI_LE_BYTE_SWAP": "not set", "CONFIG_MTD_CFI_GEOMETRY": "y", "CONFIG_MTD_MAP_BANK_WIDTH_1": "y", "CONFIG_MTD_MAP_BANK_WIDTH_2": "y", "CONFIG_MTD_MAP_BANK_WIDTH_4": "y", "CONFIG_MTD_MAP_BANK_WIDTH_8": "y", "CONFIG_MTD_MAP_BANK_WIDTH_16": "y", "CONFIG_MTD_MAP_BANK_WIDTH_32": "y", "CONFIG_MTD_CFI_I1": "y", "CONFIG_MTD_CFI_I2": "y", "CONFIG_MTD_CFI_I4": "y", "CONFIG_MTD_CFI_I8": "y", "CONFIG_MTD_OTP": "y", "CONFIG_MTD_CFI_INTELEXT": "m", "CONFIG_MTD_CFI_AMDSTD": "m", "CONFIG_MTD_CFI_STAA": "m", "CONFIG_MTD_CFI_UTIL": "m", "CONFIG_MTD_RAM": "m", "CONFIG_MTD_ROM": "m", "CONFIG_MTD_ABSENT": "m", "CONFIG_MTD_COMPLEX_MAPPINGS": "y", "CONFIG_MTD_PHYSMAP": "m", "CONFIG_MTD_PHYSMAP_COMPAT": "y", "CONFIG_MTD_PHYSMAP_START": "0x8000000", "CONFIG_MTD_PHYSMAP_LEN": "0", "CONFIG_MTD_PHYSMAP_BANKWIDTH": "2", "CONFIG_MTD_PHYSMAP_GPIO_ADDR": "y", "CONFIG_MTD_SBC_GXX": "m", "CONFIG_MTD_AMD76XROM": "m", "CONFIG_MTD_ICHXROM": "m", "CONFIG_MTD_ESB2ROM": "m", "CONFIG_MTD_CK804XROM": "m", "CONFIG_MTD_SCB2_FLASH": "m", "CONFIG_MTD_NETtel": "m", "CONFIG_MTD_L440GX": "m", "CONFIG_MTD_PCI": "m", "CONFIG_MTD_INTEL_VR_NOR": "m", "CONFIG_MTD_PLATRAM": "m", "CONFIG_MTD_PMC551": "m", "CONFIG_MTD_PMC551_BUGFIX": "y", "CONFIG_MTD_PMC551_DEBUG": "not set", "CONFIG_MTD_DATAFLASH": "not set", "CONFIG_MTD_MCHP23K256": "not set", "CONFIG_MTD_MCHP48L640": "not set", "CONFIG_MTD_SST25L": "not set", "CONFIG_MTD_SLRAM": "m", "CONFIG_MTD_PHRAM": "m", "CONFIG_MTD_MTDRAM": "m", "CONFIG_MTDRAM_TOTAL_SIZE": "4096", "CONFIG_MTDRAM_ERASE_SIZE": "128", "CONFIG_MTD_BLOCK2MTD": "m", "CONFIG_MTD_DOCG3": "m", "CONFIG_BCH_CONST_M": "14", "CONFIG_BCH_CONST_T": "4", "CONFIG_MTD_NAND_CORE": "m", "CONFIG_MTD_ONENAND": "m", "CONFIG_MTD_ONENAND_VERIFY_WRITE": "y", "CONFIG_MTD_ONENAND_GENERIC": "m", "CONFIG_MTD_ONENAND_OTP": "y", "CONFIG_MTD_ONENAND_2X_PROGRAM": "y", "CONFIG_MTD_RAW_NAND": "m", "CONFIG_MTD_NAND_DENALI_PCI": "not set", "CONFIG_MTD_NAND_OMAP_BCH_BUILD": "not set", "CONFIG_MTD_NAND_CAFE": "m", "CONFIG_MTD_NAND_MXIC": "m", "CONFIG_MTD_NAND_GPIO": "m", "CONFIG_MTD_NAND_PLATFORM": "m", "CONFIG_MTD_NAND_ARASAN": "m", "CONFIG_MTD_SM_COMMON": "m", "CONFIG_MTD_NAND_NANDSIM": "m", "CONFIG_MTD_NAND_RICOH": "m", "CONFIG_MTD_NAND_DISKONCHIP": "m", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED": "y", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS": "0", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_HIGH": "y", "CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE": "y", "CONFIG_MTD_SPI_NAND": "m", "CONFIG_MTD_NAND_ECC": "y", "CONFIG_MTD_NAND_ECC_SW_HAMMING": "y", "CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC": "not set", "CONFIG_MTD_NAND_ECC_SW_BCH": "y", "CONFIG_MTD_NAND_ECC_MXIC": "not set", "CONFIG_MTD_LPDDR": "m", "CONFIG_MTD_QINFO_PROBE": "m", "CONFIG_MTD_SPI_NOR": "m", "CONFIG_MTD_SPI_NOR_USE_4K_SECTORS": "y", "CONFIG_MTD_SPI_NOR_SWP_DISABLE": "not set", "CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE": "y", "CONFIG_MTD_SPI_NOR_SWP_KEEP": "not set", "CONFIG_MTD_UBI": "m", "CONFIG_MTD_UBI_WL_THRESHOLD": "4096", "CONFIG_MTD_UBI_BEB_LIMIT": "20", "CONFIG_MTD_UBI_FASTMAP": "not set", "CONFIG_MTD_UBI_GLUEBI": "m", "CONFIG_MTD_UBI_BLOCK": "not set", "CONFIG_MTD_HYPERBUS": "m", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "m", "CONFIG_PARPORT_PC_FIFO": "y", "CONFIG_PARPORT_PC_SUPERIO": "y", "CONFIG_PARPORT_GSC": "not set", "CONFIG_PARPORT_1284": "y", "CONFIG_PARPORT_NOT_PC": "y", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "not set", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "m", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "m", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "m", "CONFIG_ZRAM": "m", "CONFIG_ZRAM_DEF_COMP_LZORLE": "y", "CONFIG_ZRAM_DEF_COMP_ZSTD": "not set", "CONFIG_ZRAM_DEF_COMP_LZ4": "not set", "CONFIG_ZRAM_DEF_COMP_LZO": "not set", "CONFIG_ZRAM_DEF_COMP_LZ4HC": "not set", "CONFIG_ZRAM_DEF_COMP_842": "not set", "CONFIG_ZRAM_DEF_COMP": "\\"lzo-rle\\"", "CONFIG_ZRAM_WRITEBACK": "y", "CONFIG_ZRAM_TRACK_ENTRY_ACTIME": "not set", "CONFIG_ZRAM_MEMORY_TRACKING": "not set", "CONFIG_ZRAM_MULTI_COMP": "y", "CONFIG_BLK_DEV_COW_COMMON": "not set", "CONFIG_BLK_DEV_LOOP": "m", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "m", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "131072", "CONFIG_CDROM_PKTCDVD": "m", "CONFIG_CDROM_PKTCDVD_BUFFERS": "8", "CONFIG_CDROM_PKTCDVD_WCACHE": "y", "CONFIG_ATA_OVER_ETH": "m", "CONFIG_XEN_BLKDEV_FRONTEND": "m", "CONFIG_XEN_BLKDEV_BACKEND": "m", "CONFIG_VIRTIO_BLK": "m", "CONFIG_BLK_DEV_RBD": "m", "CONFIG_BLK_DEV_UBLK": "m", "CONFIG_BLKDEV_UBLK_LEGACY_OPCODES": "y", "CONFIG_BLK_DEV_RNBD": "y", "CONFIG_BLK_DEV_RNBD_CLIENT": "m", "CONFIG_BLK_DEV_RNBD_SERVER": "m", "CONFIG_NVME_KEYRING": "m", "CONFIG_NVME_AUTH": "m", "CONFIG_NVME_CORE": "m", "CONFIG_BLK_DEV_NVME": "m", "CONFIG_NVME_MULTIPATH": "y", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "y", "CONFIG_NVME_FABRICS": "m", "CONFIG_NVME_RDMA": "m", "CONFIG_NVME_FC": "m", "CONFIG_NVME_TCP": "m", "CONFIG_NVME_TCP_TLS": "y", "CONFIG_NVME_HOST_AUTH": "y", "CONFIG_NVME_TARGET": "m", "CONFIG_NVME_TARGET_PASSTHRU": "y", "CONFIG_NVME_TARGET_LOOP": "m", "CONFIG_NVME_TARGET_RDMA": "m", "CONFIG_NVME_TARGET_FC": "m", "CONFIG_NVME_TARGET_FCLOOP": "m", "CONFIG_NVME_TARGET_TCP": "m", "CONFIG_NVME_TARGET_TCP_TLS": "y", "CONFIG_NVME_TARGET_AUTH": "y", "CONFIG_SENSORS_LIS3LV02D": "m", "CONFIG_AD525X_DPOT": "m", "CONFIG_AD525X_DPOT_I2C": "m", "CONFIG_AD525X_DPOT_SPI": "not set", "CONFIG_DUMMY_IRQ": "m", "CONFIG_IBM_ASM": "m", "CONFIG_PHANTOM": "m", "CONFIG_TIFM_CORE": "m", "CONFIG_TIFM_7XX1": "m", "CONFIG_ICS932S401": "m", "CONFIG_ENCLOSURE_SERVICES": "m", "CONFIG_SGI_XP": "m", "CONFIG_HP_ILO": "m", "CONFIG_SGI_GRU": "m", "CONFIG_SGI_GRU_DEBUG": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "m", "CONFIG_SENSORS_TSL2550": "m", "CONFIG_SENSORS_BH1770": "m", "CONFIG_SENSORS_APDS990X": "m", "CONFIG_HMC6352": "m", "CONFIG_DS1682": "m", "CONFIG_VMWARE_BALLOON": "m", "CONFIG_LATTICE_ECP3_CONFIG": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "m", "CONFIG_PCI_ENDPOINT_TEST": "m", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_MISC_RTSX": "m", "CONFIG_C2PORT": "m", "CONFIG_C2PORT_DURAMAR_2150": "m", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_AT25": "not set", "CONFIG_EEPROM_LEGACY": "m", "CONFIG_EEPROM_MAX6875": "m", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_93XX46": "not set", "CONFIG_EEPROM_IDT_89HPESX": "m", "CONFIG_EEPROM_EE1004": "m", "CONFIG_CB710_CORE": "m", "CONFIG_CB710_DEBUG": "not set", "CONFIG_CB710_DEBUG_ASSUMPTIONS": "y", "CONFIG_TI_ST": "m", "CONFIG_SENSORS_LIS3_I2C": "m", "CONFIG_ALTERA_STAPL": "m", "CONFIG_INTEL_MEI": "m", "CONFIG_INTEL_MEI_ME": "m", "CONFIG_INTEL_MEI_TXE": "m", "CONFIG_INTEL_MEI_GSC": "m", "CONFIG_INTEL_MEI_HDCP": "m", "CONFIG_INTEL_MEI_PXP": "m", "CONFIG_INTEL_MEI_GSC_PROXY": "m", "CONFIG_VMWARE_VMCI": "m", "CONFIG_GENWQE": "m", "CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY": "0", "CONFIG_ECHO": "m", "CONFIG_BCM_VK": "m", "CONFIG_BCM_VK_TTY": "y", "CONFIG_MISC_ALCOR_PCI": "m", "CONFIG_MISC_RTSX_PCI": "m", "CONFIG_MISC_RTSX_USB": "m", "CONFIG_UACCE": "m", "CONFIG_PVPANIC": "y", "CONFIG_PVPANIC_MMIO": "m", "CONFIG_PVPANIC_PCI": "m", "CONFIG_GP_PCI1XXXX": "m", "CONFIG_SCSI_MOD": "m", "CONFIG_RAID_ATTRS": "m", "CONFIG_SCSI_COMMON": "m", "CONFIG_SCSI": "m", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_NETLINK": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "m", "CONFIG_CHR_DEV_ST": "m", "CONFIG_BLK_DEV_SR": "m", "CONFIG_CHR_DEV_SG": "m", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "m", "CONFIG_SCSI_ENCLOSURE": "m", "CONFIG_SCSI_CONSTANTS": "y", "CONFIG_SCSI_LOGGING": "y", "CONFIG_SCSI_SCAN_ASYNC": "y", "CONFIG_SCSI_SPI_ATTRS": "m", "CONFIG_SCSI_FC_ATTRS": "m", "CONFIG_SCSI_ISCSI_ATTRS": "m", "CONFIG_SCSI_SAS_ATTRS": "m", "CONFIG_SCSI_SAS_LIBSAS": "m", "CONFIG_SCSI_SAS_ATA": "y", "CONFIG_SCSI_SAS_HOST_SMP": "y", "CONFIG_SCSI_SRP_ATTRS": "m", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "m", "CONFIG_ISCSI_BOOT_SYSFS": "m", "CONFIG_SCSI_CXGB3_ISCSI": "m", "CONFIG_SCSI_CXGB4_ISCSI": "m", "CONFIG_SCSI_BNX2_ISCSI": "m", "CONFIG_SCSI_BNX2X_FCOE": "m", "CONFIG_BE2ISCSI": "m", "CONFIG_BLK_DEV_3W_XXXX_RAID": "m", "CONFIG_SCSI_HPSA": "m", "CONFIG_SCSI_3W_9XXX": "m", "CONFIG_SCSI_3W_SAS": "m", "CONFIG_SCSI_ACARD": "m", "CONFIG_SCSI_AACRAID": "m", "CONFIG_SCSI_AIC7XXX": "m", "CONFIG_AIC7XXX_CMDS_PER_DEVICE": "32", "CONFIG_AIC7XXX_RESET_DELAY_MS": "15000", "CONFIG_AIC7XXX_DEBUG_ENABLE": "not set", "CONFIG_AIC7XXX_DEBUG_MASK": "0", "CONFIG_AIC7XXX_REG_PRETTY_PRINT": "y", "CONFIG_SCSI_AIC79XX": "m", "CONFIG_AIC79XX_CMDS_PER_DEVICE": "32", "CONFIG_AIC79XX_RESET_DELAY_MS": "5000", "CONFIG_AIC79XX_DEBUG_ENABLE": "not set", "CONFIG_AIC79XX_DEBUG_MASK": "0", "CONFIG_AIC79XX_REG_PRETTY_PRINT": "y", "CONFIG_SCSI_AIC94XX": "m", "CONFIG_AIC94XX_DEBUG": "not set", "CONFIG_SCSI_MVSAS": "m", "CONFIG_SCSI_MVSAS_DEBUG": "not set", "CONFIG_SCSI_MVSAS_TASKLET": "y", "CONFIG_SCSI_MVUMI": "m", "CONFIG_SCSI_ADVANSYS": "m", "CONFIG_SCSI_ARCMSR": "m", "CONFIG_SCSI_ESAS2R": "m", "CONFIG_MEGARAID_NEWGEN": "y", "CONFIG_MEGARAID_MM": "m", "CONFIG_MEGARAID_MAILBOX": "m", "CONFIG_MEGARAID_LEGACY": "m", "CONFIG_MEGARAID_SAS": "m", "CONFIG_SCSI_MPT3SAS": "m", "CONFIG_SCSI_MPT2SAS_MAX_SGE": "128", "CONFIG_SCSI_MPT3SAS_MAX_SGE": "128", "CONFIG_SCSI_MPT2SAS": "m", "CONFIG_SCSI_MPI3MR": "m", "CONFIG_SCSI_SMARTPQI": "m", "CONFIG_SCSI_HPTIOP": "m", "CONFIG_SCSI_BUSLOGIC": "m", "CONFIG_SCSI_FLASHPOINT": "not set", "CONFIG_SCSI_MYRB": "m", "CONFIG_SCSI_MYRS": "m", "CONFIG_VMWARE_PVSCSI": "m", "CONFIG_XEN_SCSI_FRONTEND": "m", "CONFIG_HYPERV_STORAGE": "m", "CONFIG_LIBFC": "m", "CONFIG_LIBFCOE": "m", "CONFIG_FCOE": "m", "CONFIG_FCOE_FNIC": "m", "CONFIG_SCSI_SNIC": "m", "CONFIG_SCSI_SNIC_DEBUG_FS": "y", "CONFIG_SCSI_DMX3191D": "m", "CONFIG_SCSI_FDOMAIN": "m", "CONFIG_SCSI_FDOMAIN_PCI": "m", "CONFIG_SCSI_ISCI": "m", "CONFIG_SCSI_IPS": "m", "CONFIG_SCSI_INITIO": "m", "CONFIG_SCSI_INIA100": "m", "CONFIG_SCSI_PPA": "m", "CONFIG_SCSI_IMM": "m", "CONFIG_SCSI_IZIP_EPP16": "not set", "CONFIG_SCSI_IZIP_SLOW_CTR": "not set", "CONFIG_SCSI_STEX": "m", "CONFIG_SCSI_SYM53C8XX_2": "m", "CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE": "1", "CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS": "16", "CONFIG_SCSI_SYM53C8XX_MAX_TAGS": "64", "CONFIG_SCSI_SYM53C8XX_MMIO": "y", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "m", "CONFIG_SCSI_QLA_FC": "m", "CONFIG_TCM_QLA2XXX": "m", "CONFIG_TCM_QLA2XXX_DEBUG": "not set", "CONFIG_SCSI_QLA_ISCSI": "m", "CONFIG_QEDI": "m", "CONFIG_QEDF": "m", "CONFIG_SCSI_LPFC": "m", "CONFIG_SCSI_LPFC_DEBUG_FS": "not set", "CONFIG_SCSI_EFCT": "m", "CONFIG_SCSI_DC395x": "m", "CONFIG_SCSI_AM53C974": "m", "CONFIG_SCSI_WD719X": "m", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "m", "CONFIG_SCSI_PM8001": "m", "CONFIG_SCSI_BFA_FC": "m", "CONFIG_SCSI_VIRTIO": "m", "CONFIG_SCSI_CHELSIO_FCOE": "m", "CONFIG_SCSI_DH": "y", "CONFIG_SCSI_DH_RDAC": "m", "CONFIG_SCSI_DH_HP_SW": "m", "CONFIG_SCSI_DH_EMC": "m", "CONFIG_SCSI_DH_ALUA": "m", "CONFIG_ATA": "m", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "y", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "m", "CONFIG_SATA_MOBILE_LPM_POLICY": "0", "CONFIG_SATA_AHCI_PLATFORM": "m", "CONFIG_AHCI_DWC": "m", "CONFIG_SATA_INIC162X": "m", "CONFIG_SATA_ACARD_AHCI": "m", "CONFIG_SATA_SIL24": "m", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "m", "CONFIG_SATA_QSTOR": "m", "CONFIG_SATA_SX4": "m", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "m", "CONFIG_SATA_DWC": "not set", "CONFIG_SATA_MV": "m", "CONFIG_SATA_NV": "m", "CONFIG_SATA_PROMISE": "m", "CONFIG_SATA_SIL": "m", "CONFIG_SATA_SIS": "m", "CONFIG_SATA_SVW": "m", "CONFIG_SATA_ULI": "m", "CONFIG_SATA_VIA": "m", "CONFIG_SATA_VITESSE": "m", "CONFIG_PATA_ALI": "m", "CONFIG_PATA_AMD": "m", "CONFIG_PATA_ARTOP": "m", "CONFIG_PATA_ATIIXP": "m", "CONFIG_PATA_ATP867X": "m", "CONFIG_PATA_CMD64X": "m", "CONFIG_PATA_CYPRESS": "m", "CONFIG_PATA_EFAR": "m", "CONFIG_PATA_HPT366": "m", "CONFIG_PATA_HPT37X": "m", "CONFIG_PATA_HPT3X2N": "m", "CONFIG_PATA_HPT3X3": "m", "CONFIG_PATA_HPT3X3_DMA": "not set", "CONFIG_PATA_IT8213": "m", "CONFIG_PATA_IT821X": "m", "CONFIG_PATA_JMICRON": "m", "CONFIG_PATA_MARVELL": "m", "CONFIG_PATA_NETCELL": "m", "CONFIG_PATA_NINJA32": "m", "CONFIG_PATA_NS87415": "m", "CONFIG_PATA_OLDPIIX": "m", "CONFIG_PATA_OPTIDMA": "m", "CONFIG_PATA_PDC2027X": "m", "CONFIG_PATA_PDC_OLD": "m", "CONFIG_PATA_RADISYS": "m", "CONFIG_PATA_RDC": "m", "CONFIG_PATA_SCH": "m", "CONFIG_PATA_SERVERWORKS": "m", "CONFIG_PATA_SIL680": "m", "CONFIG_PATA_SIS": "m", "CONFIG_PATA_TOSHIBA": "m", "CONFIG_PATA_TRIFLEX": "m", "CONFIG_PATA_VIA": "m", "CONFIG_PATA_WINBOND": "m", "CONFIG_PATA_CMD640_PCI": "m", "CONFIG_PATA_MPIIX": "m", "CONFIG_PATA_NS87410": "m", "CONFIG_PATA_OPTI": "m", "CONFIG_PATA_RZ1000": "m", "CONFIG_PATA_PARPORT": "m", "CONFIG_PATA_PARPORT_ATEN": "m", "CONFIG_PATA_PARPORT_BPCK": "m", "CONFIG_PATA_PARPORT_BPCK6": "m", "CONFIG_PATA_PARPORT_COMM": "m", "CONFIG_PATA_PARPORT_DSTR": "m", "CONFIG_PATA_PARPORT_FIT2": "m", "CONFIG_PATA_PARPORT_FIT3": "m", "CONFIG_PATA_PARPORT_EPAT": "m", "CONFIG_PATA_PARPORT_EPATC8": "y", "CONFIG_PATA_PARPORT_EPIA": "m", "CONFIG_PATA_PARPORT_FRIQ": "m", "CONFIG_PATA_PARPORT_FRPW": "m", "CONFIG_PATA_PARPORT_KBIC": "m", "CONFIG_PATA_PARPORT_KTTI": "m", "CONFIG_PATA_PARPORT_ON20": "m", "CONFIG_PATA_PARPORT_ON26": "m", "CONFIG_PATA_ACPI": "m", "CONFIG_ATA_GENERIC": "m", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "m", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "m", "CONFIG_MD_RAID0": "m", "CONFIG_MD_RAID1": "m", "CONFIG_MD_RAID10": "m", "CONFIG_MD_RAID456": "m", "CONFIG_MD_MULTIPATH": "not set", "CONFIG_MD_FAULTY": "m", "CONFIG_MD_CLUSTER": "m", "CONFIG_BCACHE": "m", "CONFIG_BCACHE_DEBUG": "not set", "CONFIG_BCACHE_ASYNC_REGISTRATION": "y", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "m", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "m", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "m", "CONFIG_DM_CRYPT": "m", "CONFIG_DM_SNAPSHOT": "m", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "m", "CONFIG_DM_CACHE_SMQ": "m", "CONFIG_DM_WRITECACHE": "m", "CONFIG_DM_EBS": "m", "CONFIG_DM_ERA": "m", "CONFIG_DM_CLONE": "m", "CONFIG_DM_MIRROR": "m", "CONFIG_DM_LOG_USERSPACE": "m", "CONFIG_DM_RAID": "m", "CONFIG_DM_ZERO": "m", "CONFIG_DM_MULTIPATH": "m", "CONFIG_DM_MULTIPATH_QL": "m", "CONFIG_DM_MULTIPATH_ST": "m", "CONFIG_DM_MULTIPATH_HST": "m", "CONFIG_DM_MULTIPATH_IOA": "m", "CONFIG_DM_DELAY": "m", "CONFIG_DM_DUST": "m", "CONFIG_DM_UEVENT": "y", "CONFIG_DM_FLAKEY": "m", "CONFIG_DM_VERITY": "m", "CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG": "y", "CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING": "y", "CONFIG_DM_VERITY_FEC": "y", "CONFIG_DM_SWITCH": "m", "CONFIG_DM_LOG_WRITES": "m", "CONFIG_DM_INTEGRITY": "m", "CONFIG_DM_ZONED": "m", "CONFIG_DM_AUDIT": "y", "CONFIG_TARGET_CORE": "m", "CONFIG_TCM_IBLOCK": "m", "CONFIG_TCM_FILEIO": "m", "CONFIG_TCM_PSCSI": "m", "CONFIG_TCM_USER2": "m", "CONFIG_LOOPBACK_TARGET": "m", "CONFIG_TCM_FC": "m", "CONFIG_ISCSI_TARGET": "m", "CONFIG_ISCSI_TARGET_CXGB4": "m", "CONFIG_SBP_TARGET": "m", "CONFIG_REMOTE_TARGET": "m", "CONFIG_FUSION": "y", "CONFIG_FUSION_SPI": "m", "CONFIG_FUSION_FC": "m", "CONFIG_FUSION_SAS": "m", "CONFIG_FUSION_MAX_SGE": "128", "CONFIG_FUSION_CTL": "m", "CONFIG_FUSION_LAN": "m", "CONFIG_FUSION_LOGGING": "not set", "CONFIG_FIREWIRE": "m", "CONFIG_FIREWIRE_OHCI": "m", "CONFIG_FIREWIRE_SBP2": "m", "CONFIG_FIREWIRE_NET": "m", "CONFIG_FIREWIRE_NOSY": "m", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "m", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "m", "CONFIG_WIREGUARD_DEBUG": "not set", "CONFIG_EQUALIZER": "m", "CONFIG_NET_FC": "y", "CONFIG_IFB": "m", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "m", "CONFIG_MACVTAP": "m", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "m", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "m", "CONFIG_BAREUDP": "m", "CONFIG_GTP": "m", "CONFIG_AMT": "m", "CONFIG_MACSEC": "m", "CONFIG_NETCONSOLE": "m", "CONFIG_NETCONSOLE_DYNAMIC": "y", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_NTB_NETDEV": "m", "CONFIG_RIONET": "m", "CONFIG_RIONET_TX_SIZE": "128", "CONFIG_RIONET_RX_SIZE": "128", "CONFIG_TUN": "m", "CONFIG_TAP": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "m", "CONFIG_VIRTIO_NET": "m", "CONFIG_NLMON": "m", "CONFIG_NET_VRF": "m", "CONFIG_VSOCKMON": "m", "CONFIG_MHI_NET": "m", "CONFIG_SUNGEM_PHY": "m", "CONFIG_ARCNET": "not set", "CONFIG_ATM_DRIVERS": "y", "CONFIG_ATM_DUMMY": "m", "CONFIG_ATM_TCP": "m", "CONFIG_ATM_LANAI": "m", "CONFIG_ATM_ENI": "m", "CONFIG_ATM_ENI_DEBUG": "not set", "CONFIG_ATM_ENI_TUNE_BURST": "y", "CONFIG_ATM_ENI_BURST_TX_16W": "y", "CONFIG_ATM_ENI_BURST_TX_8W": "y", "CONFIG_ATM_ENI_BURST_TX_4W": "y", "CONFIG_ATM_ENI_BURST_TX_2W": "y", "CONFIG_ATM_ENI_BURST_RX_16W": "y", "CONFIG_ATM_ENI_BURST_RX_8W": "y", "CONFIG_ATM_ENI_BURST_RX_4W": "y", "CONFIG_ATM_ENI_BURST_RX_2W": "y", "CONFIG_ATM_NICSTAR": "m", "CONFIG_ATM_NICSTAR_USE_SUNI": "y", "CONFIG_ATM_NICSTAR_USE_IDT77105": "y", "CONFIG_ATM_IDT77252": "m", "CONFIG_ATM_IDT77252_DEBUG": "not set", "CONFIG_ATM_IDT77252_RCV_ALL": "not set", "CONFIG_ATM_IDT77252_USE_SUNI": "y", "CONFIG_ATM_IA": "m", "CONFIG_ATM_IA_DEBUG": "not set", "CONFIG_ATM_FORE200E": "m", "CONFIG_ATM_FORE200E_USE_TASKLET": "y", "CONFIG_ATM_FORE200E_TX_RETRY": "16", "CONFIG_ATM_FORE200E_DEBUG": "0", "CONFIG_ATM_HE": "m", "CONFIG_ATM_HE_USE_SUNI": "y", "CONFIG_ATM_SOLOS": "m", "CONFIG_CAIF_DRIVERS": "y", "CONFIG_CAIF_TTY": "m", "CONFIG_CAIF_VIRTIO": "m", "CONFIG_B53": "m", "CONFIG_B53_SPI_DRIVER": "not set", "CONFIG_B53_MDIO_DRIVER": "not set", "CONFIG_B53_MMAP_DRIVER": "not set", "CONFIG_B53_SRAB_DRIVER": "not set", "CONFIG_B53_SERDES": "not set", "CONFIG_NET_DSA_BCM_SF2": "m", "CONFIG_NET_DSA_LOOP": "m", "CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK": "m", "CONFIG_NET_DSA_LANTIQ_GSWIP": "m", "CONFIG_NET_DSA_MT7530": "m", "CONFIG_NET_DSA_MT7530_MDIO": "m", "CONFIG_NET_DSA_MT7530_MMIO": "m", "CONFIG_NET_DSA_MV88E6060": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_SPI": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_PTP": "y", "CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI": "m", "CONFIG_NET_DSA_MV88E6XXX": "m", "CONFIG_NET_DSA_MV88E6XXX_PTP": "y", "CONFIG_NET_DSA_MSCC_FELIX_DSA_LIB": "m", "CONFIG_NET_DSA_MSCC_OCELOT_EXT": "m", "CONFIG_NET_DSA_MSCC_SEVILLE": "m", "CONFIG_NET_DSA_AR9331": "m", "CONFIG_NET_DSA_QCA8K": "m", "CONFIG_NET_DSA_QCA8K_LEDS_SUPPORT": "y", "CONFIG_NET_DSA_SJA1105": "m", "CONFIG_NET_DSA_SJA1105_PTP": "y", "CONFIG_NET_DSA_SJA1105_TAS": "y", "CONFIG_NET_DSA_SJA1105_VL": "y", "CONFIG_NET_DSA_XRS700X": "m", "CONFIG_NET_DSA_XRS700X_I2C": "m", "CONFIG_NET_DSA_XRS700X_MDIO": "m", "CONFIG_NET_DSA_REALTEK": "m", "CONFIG_NET_DSA_REALTEK_RTL8365MB": "not set", "CONFIG_NET_DSA_REALTEK_RTL8366RB": "not set", "CONFIG_NET_DSA_SMSC_LAN9303": "m", "CONFIG_NET_DSA_SMSC_LAN9303_I2C": "m", "CONFIG_NET_DSA_SMSC_LAN9303_MDIO": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX_SPI": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM": "m", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "m", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "m", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "m", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "m", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "m", "CONFIG_ACENIC_OMIT_TIGON_I": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "m", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "m", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "m", "CONFIG_AMD_XGBE_DCB": "y", "CONFIG_AMD_XGBE_HAVE_ECC": "y", "CONFIG_PDS_CORE": "m", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "m", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_SPI_AX88796C": "m", "CONFIG_SPI_AX88796C_COMPRESSION": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "m", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "m", "CONFIG_B44_PCI_AUTOSELECT": "y", "CONFIG_B44_PCICORE_AUTOSELECT": "y", "CONFIG_B44_PCI": "y", "CONFIG_BCMGENET": "m", "CONFIG_BNX2": "m", "CONFIG_CNIC": "m", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "m", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_DCB": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "m", "CONFIG_LIQUIDIO": "m", "CONFIG_LIQUIDIO_VF": "m", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "m", "CONFIG_CHELSIO_T1_1G": "y", "CONFIG_CHELSIO_T3": "m", "CONFIG_CHELSIO_T4": "m", "CONFIG_CHELSIO_T4_DCB": "y", "CONFIG_CHELSIO_T4_FCOE": "y", "CONFIG_CHELSIO_T4VF": "m", "CONFIG_CHELSIO_LIB": "m", "CONFIG_CHELSIO_INLINE_CRYPTO": "y", "CONFIG_CRYPTO_DEV_CHELSIO_TLS": "m", "CONFIG_CHELSIO_IPSEC_INLINE": "m", "CONFIG_CHELSIO_TLS_DEVICE": "m", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "m", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DM9051": "m", "CONFIG_DNET": "m", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "y", "CONFIG_DE2104X": "m", "CONFIG_DE2104X_DSL": "0", "CONFIG_TULIP": "m", "CONFIG_TULIP_MWI": "not set", "CONFIG_TULIP_MMIO": "not set", "CONFIG_TULIP_NAPI": "y", "CONFIG_TULIP_NAPI_HW_MITIGATION": "y", "CONFIG_WINBOND_840": "m", "CONFIG_DM9102": "m", "CONFIG_ULI526X": "m", "CONFIG_PCMCIA_XIRCOM": "m", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "m", "CONFIG_SUNDANCE_MMIO": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "m", "CONFIG_BE2NET_HWMON": "y", "CONFIG_BE2NET_BE2": "y", "CONFIG_BE2NET_BE3": "y", "CONFIG_BE2NET_LANCER": "y", "CONFIG_BE2NET_SKYHAWK": "y", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "m", "CONFIG_TSNEP_SELFTESTS": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_CORE": "m", "CONFIG_FUN_ETH": "m", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "m", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "m", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "m", "CONFIG_E1000": "m", "CONFIG_E1000E": "m", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "m", "CONFIG_IGB_HWMON": "y", "CONFIG_IGB_DCA": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "m", "CONFIG_IXGBE_HWMON": "y", "CONFIG_IXGBE_DCA": "y", "CONFIG_IXGBE_DCB": "y", "CONFIG_IXGBE_IPSEC": "y", "CONFIG_IXGBEVF": "m", "CONFIG_IXGBEVF_IPSEC": "y", "CONFIG_I40E": "m", "CONFIG_I40E_DCB": "y", "CONFIG_IAVF": "m", "CONFIG_I40EVF": "m", "CONFIG_ICE": "m", "CONFIG_ICE_HWMON": "y", "CONFIG_ICE_SWITCHDEV": "y", "CONFIG_ICE_HWTS": "y", "CONFIG_FM10K": "m", "CONFIG_IGC": "m", "CONFIG_IDPF": "m", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_ADI": "y", "CONFIG_ADIN1110": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "y", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "m", "CONFIG_PRESTERA": "m", "CONFIG_PRESTERA_PCI": "m", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "m", "CONFIG_MLX4_EN_DCB": "y", "CONFIG_MLX4_CORE": "m", "CONFIG_MLX4_DEBUG": "y", "CONFIG_MLX4_CORE_GEN2": "y", "CONFIG_MLX5_CORE": "m", "CONFIG_MLX5_FPGA": "y", "CONFIG_MLX5_CORE_EN": "y", "CONFIG_MLX5_EN_ARFS": "y", "CONFIG_MLX5_EN_RXNFC": "y", "CONFIG_MLX5_MPFS": "y", "CONFIG_MLX5_ESWITCH": "y", "CONFIG_MLX5_BRIDGE": "y", "CONFIG_MLX5_CLS_ACT": "y", "CONFIG_MLX5_TC_CT": "y", "CONFIG_MLX5_TC_SAMPLE": "y", "CONFIG_MLX5_CORE_EN_DCB": "y", "CONFIG_MLX5_CORE_IPOIB": "y", "CONFIG_MLX5_MACSEC": "y", "CONFIG_MLX5_EN_IPSEC": "y", "CONFIG_MLX5_EN_TLS": "y", "CONFIG_MLX5_SW_STEERING": "y", "CONFIG_MLX5_SF": "y", "CONFIG_MLX5_SF_MANAGER": "y", "CONFIG_MLX5_DPLL": "m", "CONFIG_MLXSW_CORE": "m", "CONFIG_MLXSW_CORE_HWMON": "y", "CONFIG_MLXSW_CORE_THERMAL": "y", "CONFIG_MLXSW_PCI": "m", "CONFIG_MLXSW_I2C": "m", "CONFIG_MLXSW_SPECTRUM": "m", "CONFIG_MLXSW_SPECTRUM_DCB": "y", "CONFIG_MLXSW_MINIMAL": "m", "CONFIG_MLXFW": "m", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8842": "m", "CONFIG_KS8851": "not set", "CONFIG_KS8851_MLL": "m", "CONFIG_KSZ884X_PCI": "m", "CONFIG_NET_VENDOR_MICROCHIP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_MSCC_OCELOT_SWITCH_LIB": "m", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_MICROSOFT_MANA": "m", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "m", "CONFIG_MYRI10GE_DCA": "y", "CONFIG_FEALNX": "m", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "m", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "m", "CONFIG_NS83820": "m", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "m", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "m", "CONFIG_NFP_APP_FLOWER": "y", "CONFIG_NFP_APP_ABM_NIC": "y", "CONFIG_NFP_NET_IPSEC": "y", "CONFIG_NFP_DEBUG": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "m", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "m", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "m", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "m", "CONFIG_YELLOWFIN": "m", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "m", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "m", "CONFIG_QLCNIC": "m", "CONFIG_QLCNIC_SRIOV": "y", "CONFIG_QLCNIC_DCB": "y", "CONFIG_QLCNIC_HWMON": "y", "CONFIG_NETXEN_NIC": "m", "CONFIG_QED": "m", "CONFIG_QED_LL2": "y", "CONFIG_QED_SRIOV": "y", "CONFIG_QEDE": "m", "CONFIG_QED_RDMA": "y", "CONFIG_QED_ISCSI": "y", "CONFIG_QED_FCOE": "y", "CONFIG_QED_OOO": "y", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "m", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "m", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "m", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "not set", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "y", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_ROCKER": "m", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "m", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "m", "CONFIG_SIS190": "m", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "m", "CONFIG_SFC_MTD": "y", "CONFIG_SFC_MCDI_MON": "y", "CONFIG_SFC_SRIOV": "y", "CONFIG_SFC_MCDI_LOGGING": "y", "CONFIG_SFC_FALCON": "m", "CONFIG_SFC_FALCON_MTD": "y", "CONFIG_SFC_SIENA": "m", "CONFIG_SFC_SIENA_MTD": "y", "CONFIG_SFC_SIENA_MCDI_MON": "y", "CONFIG_SFC_SIENA_SRIOV": "y", "CONFIG_SFC_SIENA_MCDI_LOGGING": "y", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "m", "CONFIG_SMSC911X": "m", "CONFIG_SMSC911X_ARCH_HOOKS": "not set", "CONFIG_SMSC9420": "m", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "m", "CONFIG_STMMAC_SELFTESTS": "not set", "CONFIG_STMMAC_PLATFORM": "not set", "CONFIG_DWMAC_INTEL": "m", "CONFIG_STMMAC_PCI": "m", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "m", "CONFIG_SUNGEM": "m", "CONFIG_CASSINI": "m", "CONFIG_NIU": "m", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "m", "CONFIG_DWC_XLGMAC_PCI": "m", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "m", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "m", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_MSE102X": "m", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "m", "CONFIG_VIA_RHINE_MMIO": "y", "CONFIG_VIA_VELOCITY": "m", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_LIBWX": "m", "CONFIG_NGBE": "m", "CONFIG_TXGBE": "m", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "m", "CONFIG_WIZNET_W5300": "m", "CONFIG_WIZNET_BUS_DIRECT": "not set", "CONFIG_WIZNET_BUS_INDIRECT": "not set", "CONFIG_WIZNET_BUS_ANY": "y", "CONFIG_WIZNET_W5100_SPI": "m", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_AXI_EMAC": "m", "CONFIG_XILINX_LL_TEMAC": "m", "CONFIG_FDDI": "m", "CONFIG_DEFXX": "m", "CONFIG_SKFP": "m", "CONFIG_HIPPI": "y", "CONFIG_ROADRUNNER": "m", "CONFIG_ROADRUNNER_LARGE_RINGS": "not set", "CONFIG_NET_SB1000": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "y", "CONFIG_PHYLIB_LEDS": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "m", "CONFIG_AMD_PHY": "m", "CONFIG_ADIN_PHY": "m", "CONFIG_ADIN1100_PHY": "m", "CONFIG_AQUANTIA_PHY": "m", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "m", "CONFIG_BCM54140_PHY": "m", "CONFIG_BCM7XXX_PHY": "m", "CONFIG_BCM84881_PHY": "m", "CONFIG_BCM87XX_PHY": "m", "CONFIG_BCM_NET_PHYLIB": "m", "CONFIG_CICADA_PHY": "m", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "m", "CONFIG_ICPLUS_PHY": "m", "CONFIG_LXT_PHY": "m", "CONFIG_INTEL_XWAY_PHY": "m", "CONFIG_LSI_ET1011C_PHY": "m", "CONFIG_MARVELL_PHY": "m", "CONFIG_MARVELL_10G_PHY": "m", "CONFIG_MARVELL_88X2222_PHY": "m", "CONFIG_MAXLINEAR_GPHY": "m", "CONFIG_MEDIATEK_GE_PHY": "m", "CONFIG_MICREL_PHY": "m", "CONFIG_MICROCHIP_T1S_PHY": "m", "CONFIG_MICROCHIP_PHY": "m", "CONFIG_MICROCHIP_T1_PHY": "m", "CONFIG_MICROSEMI_PHY": "m", "CONFIG_MOTORCOMM_PHY": "m", "CONFIG_NATIONAL_PHY": "m", "CONFIG_NXP_CBTX_PHY": "m", "CONFIG_NXP_C45_TJA11XX_PHY": "m", "CONFIG_NXP_TJA11XX_PHY": "m", "CONFIG_NCN26000_PHY": "m", "CONFIG_AT803X_PHY": "m", "CONFIG_QSEMI_PHY": "m", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "m", "CONFIG_ROCKCHIP_PHY": "m", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "m", "CONFIG_TERANETICS_PHY": "m", "CONFIG_DP83822_PHY": "m", "CONFIG_DP83TC811_PHY": "m", "CONFIG_DP83848_PHY": "m", "CONFIG_DP83867_PHY": "m", "CONFIG_DP83869_PHY": "m", "CONFIG_DP83TD510_PHY": "m", "CONFIG_VITESSE_PHY": "m", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MICREL_KS8995MA": "not set", "CONFIG_PSE_CONTROLLER": "y", "CONFIG_PSE_REGULATOR": "m", "CONFIG_CAN_DEV": "m", "CONFIG_CAN_VCAN": "m", "CONFIG_CAN_VXCAN": "m", "CONFIG_CAN_NETLINK": "y", "CONFIG_CAN_CALC_BITTIMING": "y", "CONFIG_CAN_RX_OFFLOAD": "y", "CONFIG_CAN_CAN327": "m", "CONFIG_CAN_KVASER_PCIEFD": "m", "CONFIG_CAN_SLCAN": "m", "CONFIG_CAN_C_CAN": "m", "CONFIG_CAN_C_CAN_PLATFORM": "not set", "CONFIG_CAN_C_CAN_PCI": "m", "CONFIG_CAN_CC770": "not set", "CONFIG_CAN_CTUCANFD": "m", "CONFIG_CAN_CTUCANFD_PCI": "m", "CONFIG_CAN_IFI_CANFD": "m", "CONFIG_CAN_M_CAN": "m", "CONFIG_CAN_M_CAN_PCI": "m", "CONFIG_CAN_M_CAN_PLATFORM": "m", "CONFIG_CAN_M_CAN_TCAN4X5X": "m", "CONFIG_CAN_PEAK_PCIEFD": "m", "CONFIG_CAN_SJA1000": "m", "CONFIG_CAN_EMS_PCI": "m", "CONFIG_CAN_F81601": "m", "CONFIG_CAN_KVASER_PCI": "m", "CONFIG_CAN_PEAK_PCI": "m", "CONFIG_CAN_PEAK_PCIEC": "y", "CONFIG_CAN_PLX_PCI": "m", "CONFIG_CAN_SJA1000_ISA": "not set", "CONFIG_CAN_SJA1000_PLATFORM": "not set", "CONFIG_CAN_SOFTING": "m", "CONFIG_CAN_HI311X": "m", "CONFIG_CAN_MCP251X": "not set", "CONFIG_CAN_MCP251XFD": "m", "CONFIG_CAN_MCP251XFD_SANITY": "not set", "CONFIG_CAN_8DEV_USB": "m", "CONFIG_CAN_EMS_USB": "m", "CONFIG_CAN_ESD_USB": "m", "CONFIG_CAN_ETAS_ES58X": "m", "CONFIG_CAN_GS_USB": "m", "CONFIG_CAN_KVASER_USB": "m", "CONFIG_CAN_MCBA_USB": "m", "CONFIG_CAN_PEAK_USB": "m", "CONFIG_CAN_UCAN": "m", "CONFIG_CAN_DEBUG_DEVICES": "not set", "CONFIG_MCTP_SERIAL": "m", "CONFIG_MDIO_DEVICE": "m", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "m", "CONFIG_MDIO_BCM_UNIMAC": "m", "CONFIG_MDIO_GPIO": "m", "CONFIG_MDIO_I2C": "m", "CONFIG_MDIO_MVUSB": "m", "CONFIG_MDIO_MSCC_MIIM": "m", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "m", "CONFIG_PCS_LYNX": "m", "CONFIG_PCS_MTK_LYNXI": "m", "CONFIG_PLIP": "m", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "m", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOATM": "m", "CONFIG_PPPOE": "m", "CONFIG_PPTP": "m", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "m", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "m", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "m", "CONFIG_USB_NET_CDC_MBIM": "m", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "m", "CONFIG_USB_NET_SR9800": "m", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "m", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "m", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "y", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "m", "CONFIG_USB_NET_KALMIA": "m", "CONFIG_USB_NET_QMI_WWAN": "m", "CONFIG_USB_HSO": "m", "CONFIG_USB_NET_INT51X1": "m", "CONFIG_USB_CDC_PHONET": "m", "CONFIG_USB_IPHETH": "m", "CONFIG_USB_SIERRA_NET": "m", "CONFIG_USB_VL600": "m", "CONFIG_USB_NET_CH9200": "m", "CONFIG_USB_NET_AQC111": "m", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "m", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DEBUGFS": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "y", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "y", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "m", "CONFIG_ATH9K_HTC": "m", "CONFIG_ATH9K_HTC_DEBUGFS": "not set", "CONFIG_ATH9K_HWRNG": "y", "CONFIG_CARL9170": "m", "CONFIG_CARL9170_LEDS": "y", "CONFIG_CARL9170_DEBUGFS": "not set", "CONFIG_CARL9170_WPC": "y", "CONFIG_CARL9170_HWRNG": "y", "CONFIG_ATH6KL": "m", "CONFIG_ATH6KL_SDIO": "m", "CONFIG_ATH6KL_USB": "m", "CONFIG_ATH6KL_DEBUG": "not set", "CONFIG_ATH6KL_TRACING": "not set", "CONFIG_AR5523": "m", "CONFIG_WIL6210": "m", "CONFIG_WIL6210_ISR_COR": "y", "CONFIG_WIL6210_TRACING": "y", "CONFIG_WIL6210_DEBUGFS": "not set", "CONFIG_ATH10K": "m", "CONFIG_ATH10K_CE": "y", "CONFIG_ATH10K_PCI": "m", "CONFIG_ATH10K_SDIO": "m", "CONFIG_ATH10K_USB": "m", "CONFIG_ATH10K_DEBUG": "not set", "CONFIG_ATH10K_DEBUGFS": "not set", "CONFIG_ATH10K_TRACING": "not set", "CONFIG_WCN36XX": "m", "CONFIG_WCN36XX_DEBUGFS": "not set", "CONFIG_ATH11K": "m", "CONFIG_ATH11K_PCI": "m", "CONFIG_ATH11K_DEBUG": "not set", "CONFIG_ATH11K_DEBUGFS": "not set", "CONFIG_ATH11K_TRACING": "not set", "CONFIG_ATH12K": "m", "CONFIG_ATH12K_DEBUG": "not set", "CONFIG_ATH12K_TRACING": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_ATMEL": "m", "CONFIG_PCI_ATMEL": "m", "CONFIG_AT76C50X_USB": "m", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "m", "CONFIG_B43_BCMA": "y", "CONFIG_B43_SSB": "y", "CONFIG_B43_BUSES_BCMA_AND_SSB": "y", "CONFIG_B43_BUSES_BCMA": "not set", "CONFIG_B43_BUSES_SSB": "not set", "CONFIG_B43_PCI_AUTOSELECT": "y", "CONFIG_B43_PCICORE_AUTOSELECT": "y", "CONFIG_B43_SDIO": "y", "CONFIG_B43_BCMA_PIO": "y", "CONFIG_B43_PIO": "y", "CONFIG_B43_PHY_G": "y", "CONFIG_B43_PHY_N": "y", "CONFIG_B43_PHY_LP": "y", "CONFIG_B43_PHY_HT": "y", "CONFIG_B43_LEDS": "y", "CONFIG_B43_HWRNG": "y", "CONFIG_B43_DEBUG": "not set", "CONFIG_B43LEGACY": "m", "CONFIG_B43LEGACY_PCI_AUTOSELECT": "y", "CONFIG_B43LEGACY_PCICORE_AUTOSELECT": "y", "CONFIG_B43LEGACY_LEDS": "y", "CONFIG_B43LEGACY_HWRNG": "y", "CONFIG_B43LEGACY_DEBUG": "not set", "CONFIG_B43LEGACY_DMA": "y", "CONFIG_B43LEGACY_PIO": "y", "CONFIG_B43LEGACY_DMA_AND_PIO_MODE": "y", "CONFIG_B43LEGACY_DMA_MODE": "not set", "CONFIG_B43LEGACY_PIO_MODE": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMSMAC_LEDS": "y", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_CISCO": "y", "CONFIG_AIRO": "m", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "m", "CONFIG_IPW2100_MONITOR": "y", "CONFIG_IPW2100_DEBUG": "y", "CONFIG_IPW2200": "m", "CONFIG_IPW2200_MONITOR": "y", "CONFIG_IPW2200_RADIOTAP": "y", "CONFIG_IPW2200_PROMISCUOUS": "y", "CONFIG_IPW2200_QOS": "y", "CONFIG_IPW2200_DEBUG": "y", "CONFIG_LIBIPW": "m", "CONFIG_LIBIPW_DEBUG": "y", "CONFIG_IWLEGACY": "m", "CONFIG_IWL4965": "m", "CONFIG_IWL3945": "m", "CONFIG_IWLEGACY_DEBUG": "not set", "CONFIG_IWLEGACY_DEBUGFS": "not set", "CONFIG_IWLWIFI": "m", "CONFIG_IWLWIFI_LEDS": "y", "CONFIG_IWLDVM": "m", "CONFIG_IWLMVM": "m", "CONFIG_IWLWIFI_OPMODE_MODULAR": "y", "CONFIG_IWLWIFI_DEBUG": "y", "CONFIG_IWLWIFI_DEBUGFS": "y", "CONFIG_IWLWIFI_DEVICE_TRACING": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_HOSTAP": "m", "CONFIG_HOSTAP_FIRMWARE": "y", "CONFIG_HOSTAP_FIRMWARE_NVRAM": "y", "CONFIG_HOSTAP_PLX": "m", "CONFIG_HOSTAP_PCI": "m", "CONFIG_HERMES": "m", "CONFIG_HERMES_PRISM": "y", "CONFIG_HERMES_CACHE_FW_ON_INIT": "y", "CONFIG_PLX_HERMES": "m", "CONFIG_TMD_HERMES": "m", "CONFIG_NORTEL_HERMES": "m", "CONFIG_PCI_HERMES": "m", "CONFIG_ORINOCO_USB": "m", "CONFIG_P54_COMMON": "m", "CONFIG_P54_USB": "m", "CONFIG_P54_PCI": "m", "CONFIG_P54_SPI": "not set", "CONFIG_P54_LEDS": "y", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "m", "CONFIG_LIBERTAS_USB": "m", "CONFIG_LIBERTAS_SDIO": "m", "CONFIG_LIBERTAS_SPI": "not set", "CONFIG_LIBERTAS_DEBUG": "not set", "CONFIG_LIBERTAS_MESH": "y", "CONFIG_LIBERTAS_THINFIRM": "m", "CONFIG_LIBERTAS_THINFIRM_DEBUG": "not set", "CONFIG_LIBERTAS_THINFIRM_USB": "m", "CONFIG_MWIFIEX": "m", "CONFIG_MWIFIEX_SDIO": "m", "CONFIG_MWIFIEX_PCIE": "m", "CONFIG_MWIFIEX_USB": "m", "CONFIG_MWL8K": "m", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76_CORE": "m", "CONFIG_MT76_LEDS": "y", "CONFIG_MT76_USB": "m", "CONFIG_MT76_SDIO": "m", "CONFIG_MT76x02_LIB": "m", "CONFIG_MT76x02_USB": "m", "CONFIG_MT76_CONNAC_LIB": "m", "CONFIG_MT792x_LIB": "m", "CONFIG_MT792x_USB": "m", "CONFIG_MT76x0_COMMON": "m", "CONFIG_MT76x0U": "m", "CONFIG_MT76x0E": "m", "CONFIG_MT76x2_COMMON": "m", "CONFIG_MT76x2E": "m", "CONFIG_MT76x2U": "m", "CONFIG_MT7603E": "m", "CONFIG_MT7615_COMMON": "m", "CONFIG_MT7615E": "m", "CONFIG_MT7663_USB_SDIO_COMMON": "m", "CONFIG_MT7663U": "m", "CONFIG_MT7663S": "m", "CONFIG_MT7915E": "m", "CONFIG_MT7921_COMMON": "m", "CONFIG_MT7921E": "m", "CONFIG_MT7921S": "m", "CONFIG_MT7921U": "m", "CONFIG_MT7996E": "m", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WILC1000_SPI": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "m", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "m", "CONFIG_RT2500PCI": "m", "CONFIG_RT61PCI": "m", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "m", "CONFIG_RT73USB": "m", "CONFIG_RT2800USB": "m", "CONFIG_RT2800USB_RT33XX": "y", "CONFIG_RT2800USB_RT35XX": "y", "CONFIG_RT2800USB_RT3573": "y", "CONFIG_RT2800USB_RT53XX": "y", "CONFIG_RT2800USB_RT55XX": "y", "CONFIG_RT2800USB_UNKNOWN": "y", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB_USB": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_LIB_DEBUGFS": "not set", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "m", "CONFIG_RTL8187": "m", "CONFIG_RTL8187_LEDS": "y", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "m", "CONFIG_RTL8192SE": "m", "CONFIG_RTL8192DE": "m", "CONFIG_RTL8723AE": "m", "CONFIG_RTL8723BE": "m", "CONFIG_RTL8188EE": "m", "CONFIG_RTL8192EE": "m", "CONFIG_RTL8821AE": "m", "CONFIG_RTL8192CU": "m", "CONFIG_RTLWIFI": "m", "CONFIG_RTLWIFI_PCI": "m", "CONFIG_RTLWIFI_USB": "m", "CONFIG_RTLWIFI_DEBUG": "y", "CONFIG_RTL8192C_COMMON": "m", "CONFIG_RTL8723_COMMON": "m", "CONFIG_RTLBTCOEXIST": "m", "CONFIG_RTL8XXXU": "m", "CONFIG_RTL8XXXU_UNTESTED": "y", "CONFIG_RTW88": "m", "CONFIG_RTW88_CORE": "m", "CONFIG_RTW88_PCI": "m", "CONFIG_RTW88_SDIO": "m", "CONFIG_RTW88_USB": "m", "CONFIG_RTW88_8822B": "m", "CONFIG_RTW88_8822C": "m", "CONFIG_RTW88_8723D": "m", "CONFIG_RTW88_8821C": "m", "CONFIG_RTW88_8822BE": "m", "CONFIG_RTW88_8822BS": "m", "CONFIG_RTW88_8822BU": "m", "CONFIG_RTW88_8822CE": "m", "CONFIG_RTW88_8822CS": "m", "CONFIG_RTW88_8822CU": "m", "CONFIG_RTW88_8723DE": "m", "CONFIG_RTW88_8723DS": "not set", "CONFIG_RTW88_8723DU": "m", "CONFIG_RTW88_8821CE": "m", "CONFIG_RTW88_8821CS": "m", "CONFIG_RTW88_8821CU": "m", "CONFIG_RTW88_DEBUG": "not set", "CONFIG_RTW88_DEBUGFS": "not set", "CONFIG_RTW89": "m", "CONFIG_RTW89_CORE": "m", "CONFIG_RTW89_PCI": "m", "CONFIG_RTW89_8852A": "m", "CONFIG_RTW89_8852B": "m", "CONFIG_RTW89_8852C": "m", "CONFIG_RTW89_8851BE": "not set", "CONFIG_RTW89_8852AE": "m", "CONFIG_RTW89_8852BE": "m", "CONFIG_RTW89_8852CE": "m", "CONFIG_RTW89_DEBUGMSG": "not set", "CONFIG_RTW89_DEBUGFS": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "m", "CONFIG_RSI_DEBUGFS": "not set", "CONFIG_RSI_SDIO": "m", "CONFIG_RSI_USB": "m", "CONFIG_RSI_COEX": "y", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "m", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "m", "CONFIG_CW1200_WLAN_SDIO": "m", "CONFIG_CW1200_WLAN_SPI": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "m", "CONFIG_WL1251_SPI": "not set", "CONFIG_WL1251_SDIO": "m", "CONFIG_WL12XX": "m", "CONFIG_WL18XX": "m", "CONFIG_WLCORE": "m", "CONFIG_WLCORE_SDIO": "m", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_USB_ZD1201": "m", "CONFIG_ZD1211RW": "m", "CONFIG_ZD1211RW_DEBUG": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC": "m", "CONFIG_QTNFMAC_PCIE": "m", "CONFIG_USB_NET_RNDIS_WLAN": "m", "CONFIG_MAC80211_HWSIM": "m", "CONFIG_VIRT_WIFI": "m", "CONFIG_WAN": "y", "CONFIG_HDLC": "m", "CONFIG_HDLC_RAW": "m", "CONFIG_HDLC_RAW_ETH": "m", "CONFIG_HDLC_CISCO": "m", "CONFIG_HDLC_FR": "m", "CONFIG_HDLC_PPP": "m", "CONFIG_HDLC_X25": "m", "CONFIG_PCI200SYN": "m", "CONFIG_WANXL": "m", "CONFIG_PC300TOO": "m", "CONFIG_FARSYNC": "m", "CONFIG_LAPBETHER": "m", "CONFIG_IEEE802154_DRIVERS": "m", "CONFIG_IEEE802154_FAKELB": "m", "CONFIG_IEEE802154_AT86RF230": "not set", "CONFIG_IEEE802154_MRF24J40": "not set", "CONFIG_IEEE802154_CC2520": "not set", "CONFIG_IEEE802154_ATUSB": "not set", "CONFIG_IEEE802154_ADF7242": "m", "CONFIG_IEEE802154_CA8210": "m", "CONFIG_IEEE802154_CA8210_DEBUGFS": "not set", "CONFIG_IEEE802154_MCR20A": "m", "CONFIG_IEEE802154_HWSIM": "m", "CONFIG_WWAN": "y", "CONFIG_WWAN_DEBUGFS": "not set", "CONFIG_WWAN_HWSIM": "m", "CONFIG_MHI_WWAN_CTRL": "m", "CONFIG_MHI_WWAN_MBIM": "m", "CONFIG_RPMSG_WWAN_CTRL": "m", "CONFIG_IOSM": "m", "CONFIG_MTK_T7XX": "m", "CONFIG_XEN_NETDEV_FRONTEND": "m", "CONFIG_XEN_NETDEV_BACKEND": "m", "CONFIG_VMXNET3": "m", "CONFIG_FUJITSU_ES": "m", "CONFIG_USB4_NET": "m", "CONFIG_HYPERV_NET": "m", "CONFIG_NETDEVSIM": "m", "CONFIG_NET_FAILOVER": "m", "CONFIG_ISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "m", "CONFIG_INPUT_SPARSEKMAP": "m", "CONFIG_INPUT_MATRIXKMAP": "m", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "y", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "m", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADC": "not set", "CONFIG_KEYBOARD_ADP5588": "m", "CONFIG_KEYBOARD_ADP5589": "m", "CONFIG_KEYBOARD_APPLESPI": "m", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "m", "CONFIG_KEYBOARD_QT1070": "m", "CONFIG_KEYBOARD_QT2160": "m", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "m", "CONFIG_KEYBOARD_GPIO_POLLED": "m", "CONFIG_KEYBOARD_TCA6416": "m", "CONFIG_KEYBOARD_TCA8418": "m", "CONFIG_KEYBOARD_MATRIX": "m", "CONFIG_KEYBOARD_LM8323": "m", "CONFIG_KEYBOARD_LM8333": "m", "CONFIG_KEYBOARD_MAX7359": "m", "CONFIG_KEYBOARD_MCS": "m", "CONFIG_KEYBOARD_MPR121": "m", "CONFIG_KEYBOARD_NEWTON": "m", "CONFIG_KEYBOARD_OPENCORES": "m", "CONFIG_KEYBOARD_PINEPHONE": "m", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "m", "CONFIG_KEYBOARD_IQS62X": "m", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "m", "CONFIG_KEYBOARD_CROS_EC": "m", "CONFIG_KEYBOARD_CYPRESS_SF": "m", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "y", "CONFIG_MOUSE_PS2_ELANTECH_SMBUS": "y", "CONFIG_MOUSE_PS2_SENTELIC": "y", "CONFIG_MOUSE_PS2_TOUCHKIT": "y", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "y", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "m", "CONFIG_MOUSE_APPLETOUCH": "m", "CONFIG_MOUSE_BCM5974": "m", "CONFIG_MOUSE_CYAPA": "m", "CONFIG_MOUSE_ELAN_I2C": "m", "CONFIG_MOUSE_ELAN_I2C_I2C": "y", "CONFIG_MOUSE_ELAN_I2C_SMBUS": "y", "CONFIG_MOUSE_VSXXXAA": "m", "CONFIG_MOUSE_GPIO": "m", "CONFIG_MOUSE_SYNAPTICS_I2C": "m", "CONFIG_MOUSE_SYNAPTICS_USB": "m", "CONFIG_INPUT_JOYSTICK": "y", "CONFIG_JOYSTICK_ANALOG": "not set", "CONFIG_JOYSTICK_A3D": "not set", "CONFIG_JOYSTICK_ADC": "m", "CONFIG_JOYSTICK_ADI": "not set", "CONFIG_JOYSTICK_COBRA": "not set", "CONFIG_JOYSTICK_GF2K": "not set", "CONFIG_JOYSTICK_GRIP": "not set", "CONFIG_JOYSTICK_GRIP_MP": "not set", "CONFIG_JOYSTICK_GUILLEMOT": "not set", "CONFIG_JOYSTICK_INTERACT": "not set", "CONFIG_JOYSTICK_SIDEWINDER": "not set", "CONFIG_JOYSTICK_TMDC": "not set", "CONFIG_JOYSTICK_IFORCE": "m", "CONFIG_JOYSTICK_IFORCE_USB": "m", "CONFIG_JOYSTICK_IFORCE_232": "m", "CONFIG_JOYSTICK_WARRIOR": "m", "CONFIG_JOYSTICK_MAGELLAN": "m", "CONFIG_JOYSTICK_SPACEORB": "m", "CONFIG_JOYSTICK_SPACEBALL": "m", "CONFIG_JOYSTICK_STINGER": "m", "CONFIG_JOYSTICK_TWIDJOY": "m", "CONFIG_JOYSTICK_ZHENHUA": "m", "CONFIG_JOYSTICK_DB9": "m", "CONFIG_JOYSTICK_GAMECON": "m", "CONFIG_JOYSTICK_TURBOGRAFX": "m", "CONFIG_JOYSTICK_AS5011": "m", "CONFIG_JOYSTICK_JOYDUMP": "not set", "CONFIG_JOYSTICK_XPAD": "m", "CONFIG_JOYSTICK_XPAD_FF": "y", "CONFIG_JOYSTICK_XPAD_LEDS": "y", "CONFIG_JOYSTICK_WALKERA0701": "m", "CONFIG_JOYSTICK_PSXPAD_SPI": "m", "CONFIG_JOYSTICK_PSXPAD_SPI_FF": "y", "CONFIG_JOYSTICK_PXRC": "m", "CONFIG_JOYSTICK_QWIIC": "m", "CONFIG_JOYSTICK_FSIA6B": "m", "CONFIG_JOYSTICK_SENSEHAT": "m", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "m", "CONFIG_TABLET_USB_AIPTEK": "m", "CONFIG_TABLET_USB_HANWANG": "m", "CONFIG_TABLET_USB_KBTAB": "m", "CONFIG_TABLET_USB_PEGASUS": "m", "CONFIG_TABLET_SERIAL_WACOM4": "m", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_ADS7846": "not set", "CONFIG_TOUCHSCREEN_AD7877": "not set", "CONFIG_TOUCHSCREEN_AD7879": "m", "CONFIG_TOUCHSCREEN_AD7879_I2C": "m", "CONFIG_TOUCHSCREEN_AD7879_SPI": "not set", "CONFIG_TOUCHSCREEN_ADC": "m", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "m", "CONFIG_TOUCHSCREEN_ATMEL_MXT_T37": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "m", "CONFIG_TOUCHSCREEN_BU21013": "m", "CONFIG_TOUCHSCREEN_BU21029": "m", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "m", "CONFIG_TOUCHSCREEN_CY8CTMA140": "m", "CONFIG_TOUCHSCREEN_CY8CTMG110": "m", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "m", "CONFIG_TOUCHSCREEN_CYTTSP_I2C": "m", "CONFIG_TOUCHSCREEN_CYTTSP_SPI": "not set", "CONFIG_TOUCHSCREEN_CYTTSP4_CORE": "m", "CONFIG_TOUCHSCREEN_CYTTSP4_I2C": "m", "CONFIG_TOUCHSCREEN_CYTTSP4_SPI": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "m", "CONFIG_TOUCHSCREEN_DYNAPRO": "m", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "m", "CONFIG_TOUCHSCREEN_EETI": "m", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "m", "CONFIG_TOUCHSCREEN_EXC3000": "m", "CONFIG_TOUCHSCREEN_FUJITSU": "m", "CONFIG_TOUCHSCREEN_GOODIX": "m", "CONFIG_TOUCHSCREEN_HIDEEP": "m", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "m", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "m", "CONFIG_TOUCHSCREEN_ILI210X": "m", "CONFIG_TOUCHSCREEN_ILITEK": "m", "CONFIG_TOUCHSCREEN_S6SY761": "m", "CONFIG_TOUCHSCREEN_GUNZE": "m", "CONFIG_TOUCHSCREEN_EKTF2127": "m", "CONFIG_TOUCHSCREEN_ELAN": "m", "CONFIG_TOUCHSCREEN_ELO": "m", "CONFIG_TOUCHSCREEN_WACOM_W8001": "m", "CONFIG_TOUCHSCREEN_WACOM_I2C": "m", "CONFIG_TOUCHSCREEN_MAX11801": "m", "CONFIG_TOUCHSCREEN_MCS5000": "m", "CONFIG_TOUCHSCREEN_MMS114": "m", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "m", "CONFIG_TOUCHSCREEN_MSG2638": "m", "CONFIG_TOUCHSCREEN_MTOUCH": "m", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "m", "CONFIG_TOUCHSCREEN_IMAGIS": "m", "CONFIG_TOUCHSCREEN_INEXIO": "m", "CONFIG_TOUCHSCREEN_MK712": "m", "CONFIG_TOUCHSCREEN_PENMOUNT": "m", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "m", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "m", "CONFIG_TOUCHSCREEN_TOUCHWIN": "m", "CONFIG_TOUCHSCREEN_PIXCIR": "m", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "m", "CONFIG_TOUCHSCREEN_WM97XX": "m", "CONFIG_TOUCHSCREEN_WM9705": "y", "CONFIG_TOUCHSCREEN_WM9712": "y", "CONFIG_TOUCHSCREEN_WM9713": "y", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "m", "CONFIG_TOUCHSCREEN_TSC_SERIO": "m", "CONFIG_TOUCHSCREEN_TSC200X_CORE": "m", "CONFIG_TOUCHSCREEN_TSC2004": "m", "CONFIG_TOUCHSCREEN_TSC2005": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "m", "CONFIG_TOUCHSCREEN_TSC2007_IIO": "y", "CONFIG_TOUCHSCREEN_RM_TS": "m", "CONFIG_TOUCHSCREEN_SILEAD": "m", "CONFIG_TOUCHSCREEN_SIS_I2C": "m", "CONFIG_TOUCHSCREEN_ST1232": "m", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "m", "CONFIG_TOUCHSCREEN_SURFACE3_SPI": "m", "CONFIG_TOUCHSCREEN_SX8654": "m", "CONFIG_TOUCHSCREEN_TPS6507X": "m", "CONFIG_TOUCHSCREEN_ZET6223": "m", "CONFIG_TOUCHSCREEN_ZFORCE": "m", "CONFIG_TOUCHSCREEN_COLIBRI_VF50": "m", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "m", "CONFIG_TOUCHSCREEN_IQS5XX": "m", "CONFIG_TOUCHSCREEN_ZINITIX": "m", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "m", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "m", "CONFIG_INPUT_AD714X_I2C": "m", "CONFIG_INPUT_AD714X_SPI": "not set", "CONFIG_INPUT_BMA150": "m", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "m", "CONFIG_INPUT_MMA8450": "m", "CONFIG_INPUT_APANEL": "m", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "m", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "m", "CONFIG_INPUT_ATI_REMOTE2": "m", "CONFIG_INPUT_KEYSPAN_REMOTE": "m", "CONFIG_INPUT_KXTJ9": "m", "CONFIG_INPUT_POWERMATE": "m", "CONFIG_INPUT_YEALINK": "m", "CONFIG_INPUT_CM109": "m", "CONFIG_INPUT_REGULATOR_HAPTIC": "m", "CONFIG_INPUT_AXP20X_PEK": "m", "CONFIG_INPUT_UINPUT": "m", "CONFIG_INPUT_PCF8574": "m", "CONFIG_INPUT_PWM_BEEPER": "m", "CONFIG_INPUT_PWM_VIBRA": "m", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "m", "CONFIG_INPUT_DA7280_HAPTICS": "m", "CONFIG_INPUT_DA9063_ONKEY": "m", "CONFIG_INPUT_ADXL34X": "m", "CONFIG_INPUT_ADXL34X_I2C": "m", "CONFIG_INPUT_ADXL34X_SPI": "not set", "CONFIG_INPUT_IMS_PCU": "m", "CONFIG_INPUT_IQS269A": "m", "CONFIG_INPUT_IQS626A": "m", "CONFIG_INPUT_IQS7222": "m", "CONFIG_INPUT_CMA3000": "m", "CONFIG_INPUT_CMA3000_I2C": "m", "CONFIG_INPUT_XEN_KBDDEV_FRONTEND": "m", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "m", "CONFIG_INPUT_SOC_BUTTON_ARRAY": "m", "CONFIG_INPUT_DRV260X_HAPTICS": "m", "CONFIG_INPUT_DRV2665_HAPTICS": "m", "CONFIG_INPUT_DRV2667_HAPTICS": "m", "CONFIG_RMI4_CORE": "m", "CONFIG_RMI4_I2C": "m", "CONFIG_RMI4_SPI": "m", "CONFIG_RMI4_SMB": "m", "CONFIG_RMI4_F03": "y", "CONFIG_RMI4_F03_SERIO": "m", "CONFIG_RMI4_2D_SENSOR": "y", "CONFIG_RMI4_F11": "y", "CONFIG_RMI4_F12": "y", "CONFIG_RMI4_F30": "y", "CONFIG_RMI4_F34": "y", "CONFIG_RMI4_F3A": "y", "CONFIG_RMI4_F54": "y", "CONFIG_RMI4_F55": "y", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "m", "CONFIG_SERIO_CT82C710": "m", "CONFIG_SERIO_PARKBD": "m", "CONFIG_SERIO_PCIPS2": "m", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "m", "CONFIG_SERIO_ALTERA_PS2": "m", "CONFIG_SERIO_PS2MULT": "m", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_HYPERV_KEYBOARD": "m", "CONFIG_SERIO_GPIO_PS2": "m", "CONFIG_USERIO": "m", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_HW_CONSOLE": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "y", "CONFIG_LEGACY_PTY_COUNT": "0", "CONFIG_LEGACY_TIOCSTI": "not set", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "not set", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "y", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_DMA": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "32", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "32", "CONFIG_SERIAL_8250_EXTENDED": "y", "CONFIG_SERIAL_8250_MANY_PORTS": "y", "CONFIG_SERIAL_8250_PCI1XXXX": "y", "CONFIG_SERIAL_8250_SHARE_IRQ": "y", "CONFIG_SERIAL_8250_DETECT_IRQ": "not set", "CONFIG_SERIAL_8250_RSA": "y", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_FSL": "not set", "CONFIG_SERIAL_8250_DFL": "m", "CONFIG_SERIAL_8250_DW": "y", "CONFIG_SERIAL_8250_RT288X": "y", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_MAX3100": "not set", "CONFIG_SERIAL_MAX310X": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "m", "CONFIG_SERIAL_LANTIQ": "m", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX_CORE": "m", "CONFIG_SERIAL_SC16IS7XX": "m", "CONFIG_SERIAL_SC16IS7XX_I2C": "y", "CONFIG_SERIAL_SC16IS7XX_SPI": "y", "CONFIG_SERIAL_ALTERA_JTAGUART": "m", "CONFIG_SERIAL_ALTERA_UART": "m", "CONFIG_SERIAL_ALTERA_UART_MAXPORTS": "4", "CONFIG_SERIAL_ALTERA_UART_BAUDRATE": "115200", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "m", "CONFIG_SERIAL_RP2_NR_UARTS": "32", "CONFIG_SERIAL_FSL_LPUART": "m", "CONFIG_SERIAL_FSL_LINFLEXUART": "m", "CONFIG_SERIAL_SPRD": "m", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "y", "CONFIG_MOXA_INTELLIO": "m", "CONFIG_MOXA_SMARTIO": "m", "CONFIG_SYNCLINK_GT": "m", "CONFIG_N_HDLC": "m", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "m", "CONFIG_NULL_TTY": "m", "CONFIG_HVC_DRIVER": "y", "CONFIG_HVC_IRQ": "y", "CONFIG_HVC_XEN": "y", "CONFIG_HVC_XEN_FRONTEND": "y", "CONFIG_RPMSG_TTY": "m", "CONFIG_SERIAL_DEV_BUS": "y", "CONFIG_SERIAL_DEV_CTRL_TTYPORT": "y", "CONFIG_TTY_PRINTK": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "m", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "m", "CONFIG_IPMI_DMI_DECODE": "y", "CONFIG_IPMI_PLAT_DATA": "y", "CONFIG_IPMI_PANIC_EVENT": "y", "CONFIG_IPMI_PANIC_STRING": "not set", "CONFIG_IPMI_DEVICE_INTERFACE": "m", "CONFIG_IPMI_SI": "m", "CONFIG_IPMI_SSIF": "m", "CONFIG_IPMI_WATCHDOG": "m", "CONFIG_IPMI_POWEROFF": "m", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "m", "CONFIG_HW_RANDOM_AMD": "m", "CONFIG_HW_RANDOM_BA431": "m", "CONFIG_HW_RANDOM_VIA": "m", "CONFIG_HW_RANDOM_VIRTIO": "m", "CONFIG_HW_RANDOM_XIPHERA": "m", "CONFIG_APPLICOM": "m", "CONFIG_MWAVE": "m", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "y", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "m", "CONFIG_UV_MMTIMER": "m", "CONFIG_TCG_TPM": "y", "CONFIG_HW_RANDOM_TPM": "y", "CONFIG_TCG_TIS_CORE": "y", "CONFIG_TCG_TIS": "y", "CONFIG_TCG_TIS_SPI": "m", "CONFIG_TCG_TIS_SPI_CR50": "y", "CONFIG_TCG_TIS_I2C": "m", "CONFIG_TCG_TIS_I2C_CR50": "m", "CONFIG_TCG_TIS_I2C_ATMEL": "m", "CONFIG_TCG_TIS_I2C_INFINEON": "m", "CONFIG_TCG_TIS_I2C_NUVOTON": "m", "CONFIG_TCG_NSC": "m", "CONFIG_TCG_ATMEL": "m", "CONFIG_TCG_INFINEON": "m", "CONFIG_TCG_XEN": "m", "CONFIG_TCG_CRB": "y", "CONFIG_TCG_VTPM_PROXY": "m", "CONFIG_TCG_TIS_ST33ZP24": "m", "CONFIG_TCG_TIS_ST33ZP24_I2C": "m", "CONFIG_TCG_TIS_ST33ZP24_SPI": "m", "CONFIG_TELCLOCK": "m", "CONFIG_CRASHER": "m", "CONFIG_XILLYBUS_CLASS": "m", "CONFIG_XILLYBUS": "m", "CONFIG_XILLYBUS_PCIE": "m", "CONFIG_XILLYUSB": "m", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_COMPAT": "not set", "CONFIG_I2C_CHARDEV": "m", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "m", "CONFIG_I2C_MUX_LTC4306": "m", "CONFIG_I2C_MUX_PCA9541": "m", "CONFIG_I2C_MUX_PCA954x": "m", "CONFIG_I2C_MUX_REG": "m", "CONFIG_I2C_MUX_MLXCPLD": "m", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "m", "CONFIG_I2C_ALGOBIT": "m", "CONFIG_I2C_ALGOPCA": "m", "CONFIG_I2C_CCGX_UCSI": "m", "CONFIG_I2C_ALI1535": "m", "CONFIG_I2C_ALI1563": "m", "CONFIG_I2C_ALI15X3": "m", "CONFIG_I2C_AMD756": "m", "CONFIG_I2C_AMD756_S4882": "m", "CONFIG_I2C_AMD8111": "m", "CONFIG_I2C_AMD_MP2": "m", "CONFIG_I2C_I801": "m", "CONFIG_I2C_ISCH": "m", "CONFIG_I2C_ISMT": "m", "CONFIG_I2C_PIIX4": "m", "CONFIG_I2C_NFORCE2": "m", "CONFIG_I2C_NFORCE2_S4985": "m", "CONFIG_I2C_NVIDIA_GPU": "m", "CONFIG_I2C_SIS5595": "m", "CONFIG_I2C_SIS630": "m", "CONFIG_I2C_SIS96X": "m", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "m", "CONFIG_I2C_SCMI": "m", "CONFIG_I2C_CBUS_GPIO": "m", "CONFIG_I2C_DESIGNWARE_CORE": "m", "CONFIG_I2C_DESIGNWARE_SLAVE": "not set", "CONFIG_I2C_DESIGNWARE_PLATFORM": "m", "CONFIG_I2C_DESIGNWARE_AMDPSP": "y", "CONFIG_I2C_DESIGNWARE_BAYTRAIL": "y", "CONFIG_I2C_DESIGNWARE_PCI": "m", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "m", "CONFIG_I2C_GPIO_FAULT_INJECTOR": "not set", "CONFIG_I2C_KEMPLD": "m", "CONFIG_I2C_OCORES": "m", "CONFIG_I2C_PCA_PLATFORM": "m", "CONFIG_I2C_PXA_PCI": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "m", "CONFIG_I2C_DLN2": "m", "CONFIG_I2C_CP2615": "m", "CONFIG_I2C_PARPORT": "m", "CONFIG_I2C_PCI1XXXX": "m", "CONFIG_I2C_ROBOTFUZZ_OSIF": "m", "CONFIG_I2C_TAOS_EVM": "m", "CONFIG_I2C_TINY_USB": "m", "CONFIG_I2C_VIPERBOARD": "m", "CONFIG_I2C_MLXCPLD": "m", "CONFIG_I2C_CROS_EC_TUNNEL": "m", "CONFIG_I2C_VIRTIO": "m", "CONFIG_I2C_STUB": "m", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "m", "CONFIG_CDNS_I3C_MASTER": "m", "CONFIG_DW_I3C_MASTER": "m", "CONFIG_SVC_I3C_MASTER": "m", "CONFIG_MIPI_I3C_HCI": "m", "CONFIG_SPI": "y", "CONFIG_SPI_DEBUG": "not set", "CONFIG_SPI_MASTER": "y", "CONFIG_SPI_MEM": "y", "CONFIG_SPI_ALTERA": "not set", "CONFIG_SPI_ALTERA_CORE": "m", "CONFIG_SPI_ALTERA_DFL": "m", "CONFIG_SPI_AXI_SPI_ENGINE": "not set", "CONFIG_SPI_BITBANG": "y", "CONFIG_SPI_BUTTERFLY": "not set", "CONFIG_SPI_CADENCE": "not set", "CONFIG_SPI_DESIGNWARE": "not set", "CONFIG_SPI_DLN2": "m", "CONFIG_SPI_GPIO": "not set", "CONFIG_SPI_INTEL": "m", "CONFIG_SPI_INTEL_PCI": "m", "CONFIG_SPI_INTEL_PLATFORM": "m", "CONFIG_SPI_LM70_LLP": "not set", "CONFIG_SPI_MICROCHIP_CORE": "m", "CONFIG_SPI_MICROCHIP_CORE_QSPI": "m", "CONFIG_SPI_LANTIQ_SSC": "not set", "CONFIG_SPI_OC_TINY": "not set", "CONFIG_SPI_PCI1XXXX": "not set", "CONFIG_SPI_PXA2XX": "m", "CONFIG_SPI_PXA2XX_PCI": "m", "CONFIG_SPI_SC18IS602": "not set", "CONFIG_SPI_SIFIVE": "not set", "CONFIG_SPI_MXIC": "not set", "CONFIG_SPI_XCOMM": "not set", "CONFIG_SPI_XILINX": "not set", "CONFIG_SPI_ZYNQMP_GQSPI": "not set", "CONFIG_SPI_AMD": "m", "CONFIG_SPI_MUX": "m", "CONFIG_SPI_SPIDEV": "not set", "CONFIG_SPI_LOOPBACK_TEST": "m", "CONFIG_SPI_TLE62X0": "not set", "CONFIG_SPI_SLAVE": "not set", "CONFIG_SPI_DYNAMIC": "y", "CONFIG_SPMI": "m", "CONFIG_SPMI_HISI3670": "not set", "CONFIG_HSI": "m", "CONFIG_HSI_BOARDINFO": "y", "CONFIG_HSI_CHAR": "m", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "m", "CONFIG_PPS_CLIENT_PARPORT": "m", "CONFIG_PPS_CLIENT_GPIO": "m", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "m", "CONFIG_PTP_1588_CLOCK_IDT82P33": "m", "CONFIG_PTP_1588_CLOCK_IDTCM": "m", "CONFIG_PTP_1588_CLOCK_VMW": "m", "CONFIG_PTP_1588_CLOCK_OCP": "m", "CONFIG_PTP_DFL_TOD": "m", "CONFIG_PINCTRL": "y", "CONFIG_PINMUX": "y", "CONFIG_PINCONF": "y", "CONFIG_GENERIC_PINCONF": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "y", "CONFIG_PINCTRL_CY8C95X0": "m", "CONFIG_PINCTRL_DA9062": "m", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_MADERA": "m", "CONFIG_PINCTRL_CS47L15": "y", "CONFIG_PINCTRL_CS47L35": "y", "CONFIG_PINCTRL_CS47L85": "y", "CONFIG_PINCTRL_CS47L90": "y", "CONFIG_PINCTRL_CS47L92": "y", "CONFIG_PINCTRL_BAYTRAIL": "y", "CONFIG_PINCTRL_CHERRYVIEW": "m", "CONFIG_PINCTRL_LYNXPOINT": "m", "CONFIG_PINCTRL_INTEL": "y", "CONFIG_PINCTRL_ALDERLAKE": "m", "CONFIG_PINCTRL_BROXTON": "m", "CONFIG_PINCTRL_CANNONLAKE": "m", "CONFIG_PINCTRL_CEDARFORK": "m", "CONFIG_PINCTRL_DENVERTON": "m", "CONFIG_PINCTRL_ELKHARTLAKE": "m", "CONFIG_PINCTRL_EMMITSBURG": "m", "CONFIG_PINCTRL_GEMINILAKE": "m", "CONFIG_PINCTRL_ICELAKE": "m", "CONFIG_PINCTRL_JASPERLAKE": "m", "CONFIG_PINCTRL_LAKEFIELD": "m", "CONFIG_PINCTRL_LEWISBURG": "m", "CONFIG_PINCTRL_METEORLAKE": "m", "CONFIG_PINCTRL_SUNRISEPOINT": "m", "CONFIG_PINCTRL_TIGERLAKE": "m", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_GPIOLIB_IRQCHIP": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_SYSFS": "y", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_GENERIC": "m", "CONFIG_GPIO_REGMAP": "m", "CONFIG_GPIO_MAX730X": "m", "CONFIG_GPIO_IDIO_16": "m", "CONFIG_GPIO_AMDPT": "m", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "m", "CONFIG_GPIO_GENERIC_PLATFORM": "m", "CONFIG_GPIO_ICH": "m", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_TANGIER": "m", "CONFIG_GPIO_VX855": "m", "CONFIG_GPIO_AMD_FCH": "m", "CONFIG_GPIO_I8255": "m", "CONFIG_GPIO_104_DIO_48E": "m", "CONFIG_GPIO_104_IDIO_16": "m", "CONFIG_GPIO_104_IDI_48": "m", "CONFIG_GPIO_F7188X": "m", "CONFIG_GPIO_GPIO_MM": "m", "CONFIG_GPIO_IT87": "m", "CONFIG_GPIO_SCH": "m", "CONFIG_GPIO_SCH311X": "m", "CONFIG_GPIO_WINBOND": "m", "CONFIG_GPIO_WS16C48": "m", "CONFIG_GPIO_FXL6408": "m", "CONFIG_GPIO_MAX7300": "m", "CONFIG_GPIO_MAX732X": "m", "CONFIG_GPIO_PCA953X": "m", "CONFIG_GPIO_PCA953X_IRQ": "y", "CONFIG_GPIO_PCA9570": "m", "CONFIG_GPIO_PCF857X": "m", "CONFIG_GPIO_TPIC2810": "m", "CONFIG_GPIO_DLN2": "m", "CONFIG_GPIO_ELKHARTLAKE": "m", "CONFIG_GPIO_KEMPLD": "m", "CONFIG_GPIO_LP3943": "m", "CONFIG_GPIO_MADERA": "m", "CONFIG_GPIO_TPS68470": "not set", "CONFIG_GPIO_TQMX86": "m", "CONFIG_GPIO_WHISKEY_COVE": "m", "CONFIG_GPIO_AMD8111": "m", "CONFIG_GPIO_ML_IOH": "m", "CONFIG_GPIO_PCI_IDIO_16": "m", "CONFIG_GPIO_PCIE_IDIO_24": "m", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_MAX3191X": "m", "CONFIG_GPIO_MAX7301": "not set", "CONFIG_GPIO_MC33880": "not set", "CONFIG_GPIO_PISOSR": "m", "CONFIG_GPIO_XRA1403": "not set", "CONFIG_GPIO_VIPERBOARD": "m", "CONFIG_GPIO_AGGREGATOR": "m", "CONFIG_GPIO_LATCH": "m", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "m", "CONFIG_GPIO_SIM": "m", "CONFIG_W1": "m", "CONFIG_W1_CON": "y", "CONFIG_W1_MASTER_MATROX": "m", "CONFIG_W1_MASTER_DS2490": "m", "CONFIG_W1_MASTER_DS2482": "m", "CONFIG_W1_MASTER_GPIO": "not set", "CONFIG_W1_MASTER_SGI": "m", "CONFIG_W1_SLAVE_THERM": "m", "CONFIG_W1_SLAVE_SMEM": "m", "CONFIG_W1_SLAVE_DS2405": "m", "CONFIG_W1_SLAVE_DS2408": "m", "CONFIG_W1_SLAVE_DS2408_READBACK": "y", "CONFIG_W1_SLAVE_DS2413": "m", "CONFIG_W1_SLAVE_DS2406": "m", "CONFIG_W1_SLAVE_DS2423": "m", "CONFIG_W1_SLAVE_DS2805": "m", "CONFIG_W1_SLAVE_DS2430": "m", "CONFIG_W1_SLAVE_DS2431": "m", "CONFIG_W1_SLAVE_DS2433": "m", "CONFIG_W1_SLAVE_DS2433_CRC": "y", "CONFIG_W1_SLAVE_DS2438": "m", "CONFIG_W1_SLAVE_DS250X": "m", "CONFIG_W1_SLAVE_DS2780": "m", "CONFIG_W1_SLAVE_DS2781": "m", "CONFIG_W1_SLAVE_DS28E04": "m", "CONFIG_W1_SLAVE_DS28E17": "m", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_GENERIC_ADC_BATTERY": "not set", "CONFIG_IP5XXX_POWER": "m", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "m", "CONFIG_BATTERY_CW2015": "m", "CONFIG_BATTERY_DS2760": "m", "CONFIG_BATTERY_DS2780": "m", "CONFIG_BATTERY_DS2781": "m", "CONFIG_BATTERY_DS2782": "m", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "m", "CONFIG_CHARGER_SBS": "m", "CONFIG_MANAGER_SBS": "m", "CONFIG_BATTERY_BQ27XXX": "m", "CONFIG_BATTERY_BQ27XXX_I2C": "m", "CONFIG_BATTERY_BQ27XXX_HDQ": "m", "CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM": "not set", "CONFIG_CHARGER_AXP20X": "m", "CONFIG_BATTERY_AXP20X": "m", "CONFIG_AXP20X_POWER": "m", "CONFIG_AXP288_CHARGER": "m", "CONFIG_AXP288_FUEL_GAUGE": "m", "CONFIG_BATTERY_MAX17040": "m", "CONFIG_BATTERY_MAX17042": "m", "CONFIG_BATTERY_MAX1721X": "m", "CONFIG_CHARGER_ISP1704": "m", "CONFIG_CHARGER_MAX8903": "m", "CONFIG_CHARGER_LP8727": "m", "CONFIG_CHARGER_GPIO": "m", "CONFIG_CHARGER_MANAGER": "y", "CONFIG_CHARGER_LT3651": "m", "CONFIG_CHARGER_LTC4162L": "m", "CONFIG_CHARGER_MAX77976": "m", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24190": "m", "CONFIG_CHARGER_BQ24257": "m", "CONFIG_CHARGER_BQ24735": "m", "CONFIG_CHARGER_BQ2515X": "m", "CONFIG_CHARGER_BQ25890": "m", "CONFIG_CHARGER_BQ25980": "m", "CONFIG_CHARGER_BQ256XX": "m", "CONFIG_CHARGER_SMB347": "m", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "m", "CONFIG_BATTERY_RT5033": "m", "CONFIG_CHARGER_RT9455": "m", "CONFIG_CHARGER_RT9467": "m", "CONFIG_CHARGER_RT9471": "m", "CONFIG_CHARGER_CROS_USBPD": "m", "CONFIG_CHARGER_CROS_PCHG": "m", "CONFIG_CHARGER_BD99954": "m", "CONFIG_CHARGER_WILCO": "m", "CONFIG_BATTERY_SURFACE": "m", "CONFIG_CHARGER_SURFACE": "m", "CONFIG_BATTERY_UG3105": "m", "CONFIG_HWMON": "y", "CONFIG_HWMON_VID": "m", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "m", "CONFIG_SENSORS_ABITUGURU3": "m", "CONFIG_SENSORS_AD7314": "not set", "CONFIG_SENSORS_AD7414": "m", "CONFIG_SENSORS_AD7418": "m", "CONFIG_SENSORS_ADM1025": "m", "CONFIG_SENSORS_ADM1026": "m", "CONFIG_SENSORS_ADM1029": "m", "CONFIG_SENSORS_ADM1031": "m", "CONFIG_SENSORS_ADM1177": "m", "CONFIG_SENSORS_ADM9240": "m", "CONFIG_SENSORS_ADT7X10": "m", "CONFIG_SENSORS_ADT7310": "not set", "CONFIG_SENSORS_ADT7410": "m", "CONFIG_SENSORS_ADT7411": "m", "CONFIG_SENSORS_ADT7462": "m", "CONFIG_SENSORS_ADT7470": "m", "CONFIG_SENSORS_ADT7475": "m", "CONFIG_SENSORS_AHT10": "m", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "m", "CONFIG_SENSORS_AS370": "m", "CONFIG_SENSORS_ASC7621": "m", "CONFIG_SENSORS_AXI_FAN_CONTROL": "m", "CONFIG_SENSORS_K8TEMP": "m", "CONFIG_SENSORS_K10TEMP": "m", "CONFIG_SENSORS_FAM15H_POWER": "m", "CONFIG_SENSORS_APPLESMC": "m", "CONFIG_SENSORS_ASB100": "m", "CONFIG_SENSORS_ATXP1": "m", "CONFIG_SENSORS_CORSAIR_CPRO": "m", "CONFIG_SENSORS_CORSAIR_PSU": "m", "CONFIG_SENSORS_DRIVETEMP": "m", "CONFIG_SENSORS_DS620": "m", "CONFIG_SENSORS_DS1621": "m", "CONFIG_SENSORS_DELL_SMM": "m", "CONFIG_I8K": "y", "CONFIG_SENSORS_I5K_AMB": "m", "CONFIG_SENSORS_F71805F": "m", "CONFIG_SENSORS_F71882FG": "m", "CONFIG_SENSORS_F75375S": "m", "CONFIG_SENSORS_FSCHMD": "m", "CONFIG_SENSORS_FTSTEUTATES": "m", "CONFIG_SENSORS_GL518SM": "m", "CONFIG_SENSORS_GL520SM": "m", "CONFIG_SENSORS_G760A": "m", "CONFIG_SENSORS_G762": "m", "CONFIG_SENSORS_HIH6130": "m", "CONFIG_SENSORS_IBMAEM": "m", "CONFIG_SENSORS_IBMPEX": "m", "CONFIG_SENSORS_IIO_HWMON": "not set", "CONFIG_SENSORS_I5500": "m", "CONFIG_SENSORS_CORETEMP": "m", "CONFIG_SENSORS_IT87": "m", "CONFIG_SENSORS_JC42": "m", "CONFIG_SENSORS_POWR1220": "m", "CONFIG_SENSORS_LINEAGE": "m", "CONFIG_SENSORS_LTC2945": "m", "CONFIG_SENSORS_LTC2947": "m", "CONFIG_SENSORS_LTC2947_I2C": "m", "CONFIG_SENSORS_LTC2947_SPI": "m", "CONFIG_SENSORS_LTC2990": "m", "CONFIG_SENSORS_LTC2992": "m", "CONFIG_SENSORS_LTC4151": "m", "CONFIG_SENSORS_LTC4215": "m", "CONFIG_SENSORS_LTC4222": "m", "CONFIG_SENSORS_LTC4245": "m", "CONFIG_SENSORS_LTC4260": "m", "CONFIG_SENSORS_LTC4261": "m", "CONFIG_SENSORS_MAX1111": "not set", "CONFIG_SENSORS_MAX127": "m", "CONFIG_SENSORS_MAX16065": "m", "CONFIG_SENSORS_MAX1619": "m", "CONFIG_SENSORS_MAX1668": "m", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31722": "m", "CONFIG_SENSORS_MAX31730": "m", "CONFIG_SENSORS_MAX31760": "m", "CONFIG_SENSORS_MAX6620": "m", "CONFIG_SENSORS_MAX6621": "m", "CONFIG_SENSORS_MAX6639": "m", "CONFIG_SENSORS_MAX6650": "m", "CONFIG_SENSORS_MAX6697": "m", "CONFIG_SENSORS_MAX31790": "m", "CONFIG_SENSORS_MC34VR500": "m", "CONFIG_SENSORS_MCP3021": "m", "CONFIG_SENSORS_MLXREG_FAN": "m", "CONFIG_SENSORS_TC654": "m", "CONFIG_SENSORS_TPS23861": "m", "CONFIG_SENSORS_MR75203": "m", "CONFIG_SENSORS_ADCXX": "not set", "CONFIG_SENSORS_LM63": "m", "CONFIG_SENSORS_LM70": "not set", "CONFIG_SENSORS_LM73": "m", "CONFIG_SENSORS_LM75": "m", "CONFIG_SENSORS_LM77": "m", "CONFIG_SENSORS_LM78": "m", "CONFIG_SENSORS_LM80": "m", "CONFIG_SENSORS_LM83": "m", "CONFIG_SENSORS_LM85": "m", "CONFIG_SENSORS_LM87": "m", "CONFIG_SENSORS_LM90": "m", "CONFIG_SENSORS_LM92": "m", "CONFIG_SENSORS_LM93": "m", "CONFIG_SENSORS_LM95234": "m", "CONFIG_SENSORS_LM95241": "m", "CONFIG_SENSORS_LM95245": "m", "CONFIG_SENSORS_PC87360": "m", "CONFIG_SENSORS_PC87427": "m", "CONFIG_SENSORS_NTC_THERMISTOR": "not set", "CONFIG_SENSORS_NCT6683": "m", "CONFIG_SENSORS_NCT6775_CORE": "m", "CONFIG_SENSORS_NCT6775": "m", "CONFIG_SENSORS_NCT6775_I2C": "m", "CONFIG_SENSORS_NCT7802": "m", "CONFIG_SENSORS_NCT7904": "m", "CONFIG_SENSORS_NPCM7XX": "m", "CONFIG_SENSORS_NZXT_KRAKEN2": "m", "CONFIG_SENSORS_NZXT_SMART2": "m", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "m", "CONFIG_SENSORS_PCF8591": "m", "CONFIG_PMBUS": "m", "CONFIG_SENSORS_PMBUS": "m", "CONFIG_SENSORS_ACBEL_FSG032": "m", "CONFIG_SENSORS_ADM1266": "m", "CONFIG_SENSORS_ADM1275": "m", "CONFIG_SENSORS_BEL_PFE": "m", "CONFIG_SENSORS_BPA_RS600": "m", "CONFIG_SENSORS_DELTA_AHE50DC_FAN": "m", "CONFIG_SENSORS_FSP_3Y": "m", "CONFIG_SENSORS_IBM_CFFPS": "m", "CONFIG_SENSORS_DPS920AB": "m", "CONFIG_SENSORS_INSPUR_IPSPS": "m", "CONFIG_SENSORS_IR35221": "not set", "CONFIG_SENSORS_IR36021": "m", "CONFIG_SENSORS_IR38064": "m", "CONFIG_SENSORS_IR38064_REGULATOR": "y", "CONFIG_SENSORS_IRPS5401": "m", "CONFIG_SENSORS_ISL68137": "m", "CONFIG_SENSORS_LM25066": "m", "CONFIG_SENSORS_LM25066_REGULATOR": "y", "CONFIG_SENSORS_LT7182S": "m", "CONFIG_SENSORS_LTC2978": "m", "CONFIG_SENSORS_LTC2978_REGULATOR": "y", "CONFIG_SENSORS_LTC3815": "m", "CONFIG_SENSORS_MAX15301": "m", "CONFIG_SENSORS_MAX16064": "m", "CONFIG_SENSORS_MAX16601": "m", "CONFIG_SENSORS_MAX20730": "m", "CONFIG_SENSORS_MAX20751": "m", "CONFIG_SENSORS_MAX31785": "m", "CONFIG_SENSORS_MAX34440": "m", "CONFIG_SENSORS_MAX8688": "m", "CONFIG_SENSORS_MP2888": "m", "CONFIG_SENSORS_MP2975": "m", "CONFIG_SENSORS_MP5023": "m", "CONFIG_SENSORS_MPQ7932_REGULATOR": "y", "CONFIG_SENSORS_MPQ7932": "m", "CONFIG_SENSORS_PIM4328": "m", "CONFIG_SENSORS_PLI1209BC": "m", "CONFIG_SENSORS_PLI1209BC_REGULATOR": "y", "CONFIG_SENSORS_PM6764TR": "m", "CONFIG_SENSORS_PXE1610": "m", "CONFIG_SENSORS_Q54SJ108A2": "m", "CONFIG_SENSORS_STPDDC60": "m", "CONFIG_SENSORS_TDA38640": "m", "CONFIG_SENSORS_TDA38640_REGULATOR": "y", "CONFIG_SENSORS_TPS40422": "m", "CONFIG_SENSORS_TPS53679": "m", "CONFIG_SENSORS_TPS546D24": "m", "CONFIG_SENSORS_UCD9000": "m", "CONFIG_SENSORS_UCD9200": "m", "CONFIG_SENSORS_XDPE152": "m", "CONFIG_SENSORS_XDPE122": "m", "CONFIG_SENSORS_XDPE122_REGULATOR": "y", "CONFIG_SENSORS_ZL6100": "m", "CONFIG_SENSORS_SBTSI": "m", "CONFIG_SENSORS_SBRMI": "m", "CONFIG_SENSORS_SHT15": "m", "CONFIG_SENSORS_SHT21": "m", "CONFIG_SENSORS_SHT3x": "m", "CONFIG_SENSORS_SHT4x": "m", "CONFIG_SENSORS_SHTC1": "m", "CONFIG_SENSORS_SIS5595": "m", "CONFIG_SENSORS_DME1737": "m", "CONFIG_SENSORS_EMC1403": "m", "CONFIG_SENSORS_EMC2103": "m", "CONFIG_SENSORS_EMC2305": "m", "CONFIG_SENSORS_EMC6W201": "m", "CONFIG_SENSORS_SMSC47M1": "m", "CONFIG_SENSORS_SMSC47M192": "m", "CONFIG_SENSORS_SMSC47B397": "m", "CONFIG_SENSORS_SCH56XX_COMMON": "m", "CONFIG_SENSORS_SCH5627": "m", "CONFIG_SENSORS_SCH5636": "m", "CONFIG_SENSORS_STTS751": "m", "CONFIG_SENSORS_SMM665": "m", "CONFIG_SENSORS_ADC128D818": "m", "CONFIG_SENSORS_ADS7828": "m", "CONFIG_SENSORS_ADS7871": "not set", "CONFIG_SENSORS_AMC6821": "m", "CONFIG_SENSORS_INA209": "m", "CONFIG_SENSORS_INA2XX": "m", "CONFIG_SENSORS_INA238": "m", "CONFIG_SENSORS_INA3221": "m", "CONFIG_SENSORS_TC74": "m", "CONFIG_SENSORS_THMC50": "m", "CONFIG_SENSORS_TMP102": "m", "CONFIG_SENSORS_TMP103": "m", "CONFIG_SENSORS_TMP108": "m", "CONFIG_SENSORS_TMP401": "m", "CONFIG_SENSORS_TMP421": "m", "CONFIG_SENSORS_TMP464": "m", "CONFIG_SENSORS_TMP513": "m", "CONFIG_SENSORS_VIA_CPUTEMP": "m", "CONFIG_SENSORS_VIA686A": "m", "CONFIG_SENSORS_VT1211": "m", "CONFIG_SENSORS_VT8231": "m", "CONFIG_SENSORS_W83773G": "m", "CONFIG_SENSORS_W83781D": "m", "CONFIG_SENSORS_W83791D": "m", "CONFIG_SENSORS_W83792D": "m", "CONFIG_SENSORS_W83793": "m", "CONFIG_SENSORS_W83795": "m", "CONFIG_SENSORS_W83795_FANCTRL": "not set", "CONFIG_SENSORS_W83L785TS": "m", "CONFIG_SENSORS_W83L786NG": "m", "CONFIG_SENSORS_W83627HF": "m", "CONFIG_SENSORS_W83627EHF": "m", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "m", "CONFIG_SENSORS_ATK0110": "m", "CONFIG_SENSORS_ASUS_WMI": "m", "CONFIG_SENSORS_ASUS_EC": "m", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "y", "CONFIG_THERMAL_STATISTICS": "y", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_ACPI": "y", "CONFIG_THERMAL_WRITABLE_TRIPS": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "y", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "y", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_GOV_POWER_ALLOCATOR": "not set", "CONFIG_DEVFREQ_THERMAL": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "m", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_IOSF_CORE": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "m", "CONFIG_INT340X_THERMAL": "m", "CONFIG_ACPI_THERMAL_REL": "m", "CONFIG_INT3406_THERMAL": "m", "CONFIG_PROC_THERMAL_MMIO_RAPL": "m", "CONFIG_INTEL_BXT_PMIC_THERMAL": "m", "CONFIG_INTEL_PCH_THERMAL": "m", "CONFIG_INTEL_TCC_COOLING": "m", "CONFIG_INTEL_HFI_THERMAL": "y", "CONFIG_GENERIC_ADC_THERMAL": "m", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "y", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "y", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_SEL": "m", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC": "m", "CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP": "y", "CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_SOFT_WATCHDOG_PRETIMEOUT": "y", "CONFIG_DA9062_WATCHDOG": "m", "CONFIG_WDAT_WDT": "m", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "m", "CONFIG_MLX_WDT": "m", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "m", "CONFIG_ADVANTECH_WDT": "m", "CONFIG_ADVANTECH_EC_WDT": "m", "CONFIG_ALIM1535_WDT": "m", "CONFIG_ALIM7101_WDT": "m", "CONFIG_EBC_C384_WDT": "m", "CONFIG_EXAR_WDT": "m", "CONFIG_F71808E_WDT": "m", "CONFIG_SP5100_TCO": "m", "CONFIG_SBC_FITPC2_WATCHDOG": "m", "CONFIG_EUROTECH_WDT": "m", "CONFIG_IB700_WDT": "m", "CONFIG_IBMASR": "m", "CONFIG_WAFER_WDT": "m", "CONFIG_I6300ESB_WDT": "m", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "m", "CONFIG_ITCO_VENDOR_SUPPORT": "y", "CONFIG_IT8712F_WDT": "m", "CONFIG_IT87_WDT": "m", "CONFIG_HP_WATCHDOG": "m", "CONFIG_HPWDT_NMI_DECODING": "y", "CONFIG_KEMPLD_WDT": "m", "CONFIG_SC1200_WDT": "m", "CONFIG_PC87413_WDT": "m", "CONFIG_NV_TCO": "m", "CONFIG_60XX_WDT": "m", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "m", "CONFIG_SMSC37B787_WDT": "m", "CONFIG_TQMX86_WDT": "m", "CONFIG_VIA_WDT": "m", "CONFIG_W83627HF_WDT": "m", "CONFIG_W83877F_WDT": "m", "CONFIG_W83977F_WDT": "m", "CONFIG_MACHZ_WDT": "m", "CONFIG_SBC_EPX_C3_WATCHDOG": "m", "CONFIG_INTEL_MEI_WDT": "m", "CONFIG_NI903X_WDT": "m", "CONFIG_NIC7018_WDT": "m", "CONFIG_SIEMENS_SIMATIC_IPC_WDT": "m", "CONFIG_MEN_A21_WDT": "m", "CONFIG_XEN_WDT": "m", "CONFIG_PCIPCWATCHDOG": "m", "CONFIG_WDTPCI": "m", "CONFIG_USBPCWATCHDOG": "m", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "m", "CONFIG_SSB_SPROM": "y", "CONFIG_SSB_BLOCKIO": "y", "CONFIG_SSB_PCIHOST_POSSIBLE": "y", "CONFIG_SSB_PCIHOST": "y", "CONFIG_SSB_B43_PCI_BRIDGE": "y", "CONFIG_SSB_SDIOHOST_POSSIBLE": "y", "CONFIG_SSB_SDIOHOST": "y", "CONFIG_SSB_DRIVER_PCICORE_POSSIBLE": "y", "CONFIG_SSB_DRIVER_PCICORE": "y", "CONFIG_SSB_DRIVER_GPIO": "y", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_BLOCKIO": "y", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "y", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_CORE": "m", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X": "m", "CONFIG_MFD_AXP20X_I2C": "m", "CONFIG_MFD_CROS_EC_DEV": "m", "CONFIG_MFD_MADERA": "m", "CONFIG_MFD_MADERA_I2C": "m", "CONFIG_MFD_MADERA_SPI": "m", "CONFIG_MFD_CS47L15": "y", "CONFIG_MFD_CS47L35": "y", "CONFIG_MFD_CS47L85": "y", "CONFIG_MFD_CS47L90": "y", "CONFIG_MFD_CS47L92": "y", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_SPI": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "m", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "m", "CONFIG_MFD_MC13XXX_SPI": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "m", "CONFIG_LPC_ICH": "m", "CONFIG_LPC_SCH": "m", "CONFIG_INTEL_SOC_PMIC_BXTWC": "m", "CONFIG_INTEL_SOC_PMIC_MRFLD": "m", "CONFIG_MFD_INTEL_LPSS": "m", "CONFIG_MFD_INTEL_LPSS_ACPI": "m", "CONFIG_MFD_INTEL_LPSS_PCI": "m", "CONFIG_MFD_INTEL_PMC_BXT": "m", "CONFIG_MFD_IQS62X": "m", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "m", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "m", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_OCELOT": "m", "CONFIG_EZX_PCAP": "not set", "CONFIG_MFD_VIPERBOARD": "m", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "m", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SIMPLE_MFD_I2C": "m", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "m", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "m", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "m", "CONFIG_TPS6507X": "m", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS65912_SPI": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "m", "CONFIG_MFD_LM3533": "m", "CONFIG_MFD_TQMX86": "m", "CONFIG_MFD_VX855": "m", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_ARIZONA_SPI": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM831X_SPI": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_RAVE_SP_CORE": "not set", "CONFIG_MFD_INTEL_M10_BMC_CORE": "not set", "CONFIG_MFD_INTEL_M10_BMC_SPI": "not set", "CONFIG_MFD_INTEL_M10_BMC_PMCI": "not set", "CONFIG_REGULATOR": "y", "CONFIG_REGULATOR_DEBUG": "not set", "CONFIG_REGULATOR_FIXED_VOLTAGE": "m", "CONFIG_REGULATOR_VIRTUAL_CONSUMER": "m", "CONFIG_REGULATOR_USERSPACE_CONSUMER": "m", "CONFIG_REGULATOR_88PG86X": "m", "CONFIG_REGULATOR_ACT8865": "m", "CONFIG_REGULATOR_AD5398": "m", "CONFIG_REGULATOR_ARIZONA_LDO1": "m", "CONFIG_REGULATOR_ARIZONA_MICSUPP": "m", "CONFIG_REGULATOR_AXP20X": "m", "CONFIG_REGULATOR_DA9062": "m", "CONFIG_REGULATOR_DA9210": "m", "CONFIG_REGULATOR_DA9211": "m", "CONFIG_REGULATOR_FAN53555": "m", "CONFIG_REGULATOR_GPIO": "m", "CONFIG_REGULATOR_ISL9305": "m", "CONFIG_REGULATOR_ISL6271A": "m", "CONFIG_REGULATOR_LM363X": "m", "CONFIG_REGULATOR_LP3971": "m", "CONFIG_REGULATOR_LP3972": "m", "CONFIG_REGULATOR_LP872X": "m", "CONFIG_REGULATOR_LP8755": "m", "CONFIG_REGULATOR_LTC3589": "m", "CONFIG_REGULATOR_LTC3676": "m", "CONFIG_REGULATOR_MAX1586": "m", "CONFIG_REGULATOR_MAX8649": "m", "CONFIG_REGULATOR_MAX8660": "m", "CONFIG_REGULATOR_MAX8893": "m", "CONFIG_REGULATOR_MAX8907": "m", "CONFIG_REGULATOR_MAX8952": "m", "CONFIG_REGULATOR_MAX20086": "m", "CONFIG_REGULATOR_MAX20411": "m", "CONFIG_REGULATOR_MAX77826": "m", "CONFIG_REGULATOR_MP8859": "m", "CONFIG_REGULATOR_MT6311": "m", "CONFIG_REGULATOR_MT6315": "m", "CONFIG_REGULATOR_PCA9450": "m", "CONFIG_REGULATOR_PV88060": "m", "CONFIG_REGULATOR_PV88080": "m", "CONFIG_REGULATOR_PV88090": "m", "CONFIG_REGULATOR_PWM": "m", "CONFIG_REGULATOR_QCOM_SPMI": "m", "CONFIG_REGULATOR_QCOM_USB_VBUS": "m", "CONFIG_REGULATOR_RT4801": "m", "CONFIG_REGULATOR_RT4803": "m", "CONFIG_REGULATOR_RT4831": "m", "CONFIG_REGULATOR_RT5190A": "m", "CONFIG_REGULATOR_RT5739": "m", "CONFIG_REGULATOR_RT5759": "m", "CONFIG_REGULATOR_RT6160": "m", "CONFIG_REGULATOR_RT6190": "m", "CONFIG_REGULATOR_RT6245": "m", "CONFIG_REGULATOR_RTQ2134": "m", "CONFIG_REGULATOR_RTMV20": "m", "CONFIG_REGULATOR_RTQ6752": "m", "CONFIG_REGULATOR_SLG51000": "m", "CONFIG_REGULATOR_TPS51632": "m", "CONFIG_REGULATOR_TPS62360": "m", "CONFIG_REGULATOR_TPS65023": "m", "CONFIG_REGULATOR_TPS6507X": "m", "CONFIG_REGULATOR_TPS65132": "m", "CONFIG_REGULATOR_TPS6524X": "m", "CONFIG_REGULATOR_TPS68470": "m", "CONFIG_REGULATOR_QCOM_LABIBB": "m", "CONFIG_RC_CORE": "m", "CONFIG_LIRC": "y", "CONFIG_RC_MAP": "m", "CONFIG_RC_DECODERS": "y", "CONFIG_IR_IMON_DECODER": "m", "CONFIG_IR_JVC_DECODER": "m", "CONFIG_IR_MCE_KBD_DECODER": "m", "CONFIG_IR_NEC_DECODER": "m", "CONFIG_IR_RC5_DECODER": "m", "CONFIG_IR_RC6_DECODER": "m", "CONFIG_IR_RCMM_DECODER": "m", "CONFIG_IR_SANYO_DECODER": "m", "CONFIG_IR_SHARP_DECODER": "m", "CONFIG_IR_SONY_DECODER": "m", "CONFIG_IR_XMP_DECODER": "m", "CONFIG_RC_DEVICES": "y", "CONFIG_IR_ENE": "m", "CONFIG_IR_FINTEK": "m", "CONFIG_IR_IGORPLUGUSB": "m", "CONFIG_IR_IGUANA": "m", "CONFIG_IR_IMON": "m", "CONFIG_IR_IMON_RAW": "m", "CONFIG_IR_ITE_CIR": "m", "CONFIG_IR_MCEUSB": "m", "CONFIG_IR_NUVOTON": "m", "CONFIG_IR_REDRAT3": "m", "CONFIG_IR_SERIAL": "m", "CONFIG_IR_SERIAL_TRANSMITTER": "y", "CONFIG_IR_STREAMZAP": "m", "CONFIG_IR_TOY": "m", "CONFIG_IR_TTUSBIR": "m", "CONFIG_IR_WINBOND_CIR": "m", "CONFIG_RC_ATI_REMOTE": "m", "CONFIG_RC_LOOPBACK": "m", "CONFIG_RC_XBOX_DVD": "m", "CONFIG_CEC_CORE": "m", "CONFIG_CEC_NOTIFIER": "y", "CONFIG_CEC_PIN": "y", "CONFIG_MEDIA_CEC_RC": "y", "CONFIG_CEC_PIN_ERROR_INJ": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "y", "CONFIG_CEC_CH7322": "m", "CONFIG_CEC_CROS_EC": "m", "CONFIG_CEC_GPIO": "m", "CONFIG_CEC_SECO": "m", "CONFIG_CEC_SECO_RC": "not set", "CONFIG_USB_PULSE8_CEC": "m", "CONFIG_USB_RAINSHADOW_CEC": "m", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "y", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "y", "CONFIG_MEDIA_RADIO_SUPPORT": "y", "CONFIG_MEDIA_SDR_SUPPORT": "y", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_DVB_CORE": "m", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_VIDEO_TUNER": "m", "CONFIG_V4L2_FLASH_LED_CLASS": "m", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_VIDEOBUF_GEN": "m", "CONFIG_VIDEOBUF_DMA_SG": "m", "CONFIG_MEDIA_CONTROLLER_DVB": "y", "CONFIG_DVB_MMAP": "not set", "CONFIG_DVB_NET": "y", "CONFIG_DVB_MAX_ADAPTERS": "8", "CONFIG_DVB_DYNAMIC_MINORS": "y", "CONFIG_DVB_DEMUX_SECTION_LOSS_LOG": "not set", "CONFIG_DVB_ULE_DEBUG": "not set", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "m", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "m", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "m", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "m", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_GO7007": "m", "CONFIG_VIDEO_GO7007_USB": "m", "CONFIG_VIDEO_GO7007_LOADER": "m", "CONFIG_VIDEO_GO7007_USB_S2250_BOARD": "m", "CONFIG_VIDEO_HDPVR": "m", "CONFIG_VIDEO_PVRUSB2": "m", "CONFIG_VIDEO_PVRUSB2_SYSFS": "y", "CONFIG_VIDEO_PVRUSB2_DVB": "y", "CONFIG_VIDEO_PVRUSB2_DEBUGIFC": "not set", "CONFIG_VIDEO_STK1160_COMMON": "m", "CONFIG_VIDEO_STK1160": "m", "CONFIG_VIDEO_AU0828": "m", "CONFIG_VIDEO_AU0828_V4L2": "y", "CONFIG_VIDEO_AU0828_RC": "y", "CONFIG_VIDEO_CX231XX": "m", "CONFIG_VIDEO_CX231XX_RC": "y", "CONFIG_VIDEO_CX231XX_ALSA": "m", "CONFIG_VIDEO_CX231XX_DVB": "m", "CONFIG_DVB_AS102": "m", "CONFIG_DVB_B2C2_FLEXCOP_USB": "m", "CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG": "not set", "CONFIG_DVB_USB_V2": "m", "CONFIG_DVB_USB_AF9015": "m", "CONFIG_DVB_USB_AF9035": "m", "CONFIG_DVB_USB_ANYSEE": "m", "CONFIG_DVB_USB_AU6610": "m", "CONFIG_DVB_USB_AZ6007": "m", "CONFIG_DVB_USB_CE6230": "m", "CONFIG_DVB_USB_DVBSKY": "m", "CONFIG_DVB_USB_EC168": "m", "CONFIG_DVB_USB_GL861": "m", "CONFIG_DVB_USB_LME2510": "m", "CONFIG_DVB_USB_MXL111SF": "m", "CONFIG_DVB_USB_RTL28XXU": "m", "CONFIG_DVB_USB_ZD1301": "m", "CONFIG_DVB_USB": "m", "CONFIG_DVB_USB_DEBUG": "not set", "CONFIG_DVB_USB_A800": "m", "CONFIG_DVB_USB_AF9005": "m", "CONFIG_DVB_USB_AF9005_REMOTE": "m", "CONFIG_DVB_USB_AZ6027": "m", "CONFIG_DVB_USB_CINERGY_T2": "m", "CONFIG_DVB_USB_CXUSB": "m", "CONFIG_DVB_USB_CXUSB_ANALOG": "y", "CONFIG_DVB_USB_DIB0700": "m", "CONFIG_DVB_USB_DIB3000MC": "m", "CONFIG_DVB_USB_DIBUSB_MB": "m", "CONFIG_DVB_USB_DIBUSB_MB_FAULTY": "not set", "CONFIG_DVB_USB_DIBUSB_MC": "m", "CONFIG_DVB_USB_DIGITV": "m", "CONFIG_DVB_USB_DTT200U": "m", "CONFIG_DVB_USB_DTV5100": "m", "CONFIG_DVB_USB_DW2102": "m", "CONFIG_DVB_USB_GP8PSK": "m", "CONFIG_DVB_USB_M920X": "m", "CONFIG_DVB_USB_NOVA_T_USB2": "m", "CONFIG_DVB_USB_OPERA1": "m", "CONFIG_DVB_USB_PCTV452E": "m", "CONFIG_DVB_USB_TECHNISAT_USB2": "m", "CONFIG_DVB_USB_TTUSB2": "m", "CONFIG_DVB_USB_UMT_010": "m", "CONFIG_DVB_USB_VP702X": "m", "CONFIG_DVB_USB_VP7045": "m", "CONFIG_SMS_USB_DRV": "m", "CONFIG_DVB_TTUSB_BUDGET": "m", "CONFIG_DVB_TTUSB_DEC": "m", "CONFIG_VIDEO_EM28XX": "m", "CONFIG_VIDEO_EM28XX_V4L2": "m", "CONFIG_VIDEO_EM28XX_ALSA": "m", "CONFIG_VIDEO_EM28XX_DVB": "m", "CONFIG_VIDEO_EM28XX_RC": "m", "CONFIG_USB_AIRSPY": "m", "CONFIG_USB_HACKRF": "m", "CONFIG_USB_MSI2500": "m", "CONFIG_MEDIA_PCI_SUPPORT": "y", "CONFIG_VIDEO_SOLO6X10": "m", "CONFIG_VIDEO_TW5864": "m", "CONFIG_VIDEO_TW68": "m", "CONFIG_VIDEO_TW686X": "m", "CONFIG_VIDEO_ZORAN": "m", "CONFIG_VIDEO_ZORAN_DC30": "y", "CONFIG_VIDEO_ZORAN_ZR36060": "y", "CONFIG_VIDEO_ZORAN_BUZ": "y", "CONFIG_VIDEO_ZORAN_DC10": "y", "CONFIG_VIDEO_ZORAN_LML33": "y", "CONFIG_VIDEO_ZORAN_LML33R10": "y", "CONFIG_VIDEO_ZORAN_AVS6EYES": "y", "CONFIG_VIDEO_DT3155": "m", "CONFIG_VIDEO_IVTV": "m", "CONFIG_VIDEO_IVTV_ALSA": "m", "CONFIG_VIDEO_FB_IVTV": "m", "CONFIG_VIDEO_FB_IVTV_FORCE_PAT": "not set", "CONFIG_VIDEO_HEXIUM_GEMINI": "m", "CONFIG_VIDEO_HEXIUM_ORION": "m", "CONFIG_VIDEO_MXB": "m", "CONFIG_VIDEO_BT848": "m", "CONFIG_DVB_BT8XX": "m", "CONFIG_VIDEO_COBALT": "not set", "CONFIG_VIDEO_CX18": "m", "CONFIG_VIDEO_CX18_ALSA": "m", "CONFIG_VIDEO_CX23885": "m", "CONFIG_MEDIA_ALTERA_CI": "m", "CONFIG_VIDEO_CX25821": "m", "CONFIG_VIDEO_CX25821_ALSA": "m", "CONFIG_VIDEO_CX88": "m", "CONFIG_VIDEO_CX88_ALSA": "m", "CONFIG_VIDEO_CX88_BLACKBIRD": "m", "CONFIG_VIDEO_CX88_DVB": "m", "CONFIG_VIDEO_CX88_ENABLE_VP3054": "y", "CONFIG_VIDEO_CX88_VP3054": "m", "CONFIG_VIDEO_CX88_MPEG": "m", "CONFIG_VIDEO_SAA7134": "m", "CONFIG_VIDEO_SAA7134_ALSA": "m", "CONFIG_VIDEO_SAA7134_RC": "y", "CONFIG_VIDEO_SAA7134_DVB": "m", "CONFIG_VIDEO_SAA7134_GO7007": "m", "CONFIG_VIDEO_SAA7164": "m", "CONFIG_DVB_B2C2_FLEXCOP_PCI": "m", "CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG": "not set", "CONFIG_DVB_DDBRIDGE": "m", "CONFIG_DVB_DDBRIDGE_MSIENABLE": "not set", "CONFIG_DVB_DM1105": "m", "CONFIG_MANTIS_CORE": "m", "CONFIG_DVB_MANTIS": "m", "CONFIG_DVB_HOPPER": "m", "CONFIG_DVB_NETUP_UNIDVB": "m", "CONFIG_DVB_NGENE": "m", "CONFIG_DVB_PLUTO2": "m", "CONFIG_DVB_PT1": "m", "CONFIG_DVB_PT3": "m", "CONFIG_DVB_SMIPCIE": "m", "CONFIG_DVB_BUDGET_CORE": "m", "CONFIG_DVB_BUDGET": "m", "CONFIG_DVB_BUDGET_CI": "m", "CONFIG_DVB_BUDGET_AV": "m", "CONFIG_IPU_BRIDGE": "m", "CONFIG_VIDEO_IPU3_CIO2": "m", "CONFIG_CIO2_BRIDGE": "y", "CONFIG_RADIO_ADAPTERS": "m", "CONFIG_RADIO_MAXIRADIO": "m", "CONFIG_RADIO_SAA7706H": "m", "CONFIG_RADIO_SHARK": "m", "CONFIG_RADIO_SHARK2": "m", "CONFIG_RADIO_SI4713": "m", "CONFIG_RADIO_TEA575X": "m", "CONFIG_RADIO_TEA5764": "m", "CONFIG_RADIO_TEF6862": "m", "CONFIG_RADIO_WL1273": "m", "CONFIG_USB_DSBR": "m", "CONFIG_USB_KEENE": "m", "CONFIG_USB_MA901": "m", "CONFIG_USB_MR800": "m", "CONFIG_USB_RAREMONO": "m", "CONFIG_RADIO_SI470X": "m", "CONFIG_USB_SI470X": "m", "CONFIG_I2C_SI470X": "not set", "CONFIG_USB_SI4713": "m", "CONFIG_PLATFORM_SI4713": "m", "CONFIG_I2C_SI4713": "m", "CONFIG_RADIO_WL128X": "m", "CONFIG_DVB_FIREDTV": "m", "CONFIG_DVB_FIREDTV_INPUT": "y", "CONFIG_MEDIA_COMMON_OPTIONS": "y", "CONFIG_CYPRESS_FIRMWARE": "m", "CONFIG_TTPCI_EEPROM": "m", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEO_CX2341X": "m", "CONFIG_VIDEO_TVEEPROM": "m", "CONFIG_DVB_B2C2_FLEXCOP": "m", "CONFIG_VIDEO_SAA7146": "m", "CONFIG_VIDEO_SAA7146_VV": "m", "CONFIG_SMS_SIANO_MDTV": "m", "CONFIG_SMS_SIANO_RC": "y", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_DMA_CONTIG": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_VIDEOBUF2_DMA_SG": "m", "CONFIG_VIDEOBUF2_DVB": "m", "CONFIG_MEDIA_ATTACH": "y", "CONFIG_VIDEO_IR_I2C": "m", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_APTINA_PLL": "m", "CONFIG_VIDEO_CCS_PLL": "m", "CONFIG_VIDEO_AR0521": "m", "CONFIG_VIDEO_HI556": "m", "CONFIG_VIDEO_HI846": "m", "CONFIG_VIDEO_HI847": "m", "CONFIG_VIDEO_IMX208": "m", "CONFIG_VIDEO_IMX214": "m", "CONFIG_VIDEO_IMX219": "m", "CONFIG_VIDEO_IMX258": "m", "CONFIG_VIDEO_IMX274": "m", "CONFIG_VIDEO_IMX290": "m", "CONFIG_VIDEO_IMX296": "m", "CONFIG_VIDEO_IMX319": "m", "CONFIG_VIDEO_IMX355": "m", "CONFIG_VIDEO_MAX9271_LIB": "m", "CONFIG_VIDEO_MT9M001": "m", "CONFIG_VIDEO_MT9M111": "m", "CONFIG_VIDEO_MT9P031": "m", "CONFIG_VIDEO_MT9T112": "m", "CONFIG_VIDEO_MT9V011": "m", "CONFIG_VIDEO_MT9V032": "m", "CONFIG_VIDEO_MT9V111": "m", "CONFIG_VIDEO_OG01A1B": "m", "CONFIG_VIDEO_OV02A10": "m", "CONFIG_VIDEO_OV08D10": "m", "CONFIG_VIDEO_OV08X40": "m", "CONFIG_VIDEO_OV13858": "m", "CONFIG_VIDEO_OV13B10": "m", "CONFIG_VIDEO_OV2640": "m", "CONFIG_VIDEO_OV2659": "m", "CONFIG_VIDEO_OV2680": "m", "CONFIG_VIDEO_OV2685": "m", "CONFIG_VIDEO_OV2740": "m", "CONFIG_VIDEO_OV4689": "m", "CONFIG_VIDEO_OV5647": "m", "CONFIG_VIDEO_OV5648": "m", "CONFIG_VIDEO_OV5670": "m", "CONFIG_VIDEO_OV5675": "m", "CONFIG_VIDEO_OV5693": "m", "CONFIG_VIDEO_OV5695": "m", "CONFIG_VIDEO_OV6650": "m", "CONFIG_VIDEO_OV7251": "m", "CONFIG_VIDEO_OV7640": "m", "CONFIG_VIDEO_OV7670": "m", "CONFIG_VIDEO_OV772X": "m", "CONFIG_VIDEO_OV7740": "m", "CONFIG_VIDEO_OV8856": "m", "CONFIG_VIDEO_OV8858": "m", "CONFIG_VIDEO_OV8865": "m", "CONFIG_VIDEO_OV9640": "m", "CONFIG_VIDEO_OV9650": "m", "CONFIG_VIDEO_OV9734": "m", "CONFIG_VIDEO_RDACM20": "m", "CONFIG_VIDEO_RDACM21": "m", "CONFIG_VIDEO_RJ54N1": "m", "CONFIG_VIDEO_S5C73M3": "m", "CONFIG_VIDEO_S5K5BAF": "m", "CONFIG_VIDEO_S5K6A3": "m", "CONFIG_VIDEO_CCS": "m", "CONFIG_VIDEO_ET8EK8": "m", "CONFIG_VIDEO_AD5820": "m", "CONFIG_VIDEO_AK7375": "m", "CONFIG_VIDEO_DW9714": "m", "CONFIG_VIDEO_DW9768": "m", "CONFIG_VIDEO_DW9807_VCM": "m", "CONFIG_VIDEO_ADP1653": "m", "CONFIG_VIDEO_LM3560": "m", "CONFIG_VIDEO_LM3646": "m", "CONFIG_VIDEO_CS3308": "m", "CONFIG_VIDEO_CS5345": "m", "CONFIG_VIDEO_CS53L32A": "m", "CONFIG_VIDEO_MSP3400": "m", "CONFIG_VIDEO_SONY_BTF_MPX": "m", "CONFIG_VIDEO_TDA1997X": "m", "CONFIG_VIDEO_TDA7432": "m", "CONFIG_VIDEO_TDA9840": "m", "CONFIG_VIDEO_TEA6415C": "m", "CONFIG_VIDEO_TEA6420": "m", "CONFIG_VIDEO_TLV320AIC23B": "m", "CONFIG_VIDEO_TVAUDIO": "m", "CONFIG_VIDEO_UDA1342": "m", "CONFIG_VIDEO_VP27SMPX": "m", "CONFIG_VIDEO_WM8739": "m", "CONFIG_VIDEO_WM8775": "m", "CONFIG_VIDEO_SAA6588": "m", "CONFIG_VIDEO_ADV7180": "m", "CONFIG_VIDEO_ADV7183": "m", "CONFIG_VIDEO_ADV7604": "m", "CONFIG_VIDEO_ADV7604_CEC": "y", "CONFIG_VIDEO_ADV7842": "m", "CONFIG_VIDEO_ADV7842_CEC": "y", "CONFIG_VIDEO_BT819": "m", "CONFIG_VIDEO_BT856": "m", "CONFIG_VIDEO_BT866": "m", "CONFIG_VIDEO_KS0127": "m", "CONFIG_VIDEO_ML86V7667": "m", "CONFIG_VIDEO_SAA7110": "m", "CONFIG_VIDEO_SAA711X": "m", "CONFIG_VIDEO_TC358743": "m", "CONFIG_VIDEO_TC358743_CEC": "y", "CONFIG_VIDEO_TC358746": "m", "CONFIG_VIDEO_TVP514X": "m", "CONFIG_VIDEO_TVP5150": "m", "CONFIG_VIDEO_TVP7002": "m", "CONFIG_VIDEO_TW2804": "m", "CONFIG_VIDEO_TW9903": "m", "CONFIG_VIDEO_TW9906": "m", "CONFIG_VIDEO_TW9910": "m", "CONFIG_VIDEO_VPX3220": "m", "CONFIG_VIDEO_SAA717X": "m", "CONFIG_VIDEO_CX25840": "m", "CONFIG_VIDEO_ADV7170": "m", "CONFIG_VIDEO_ADV7175": "m", "CONFIG_VIDEO_ADV7343": "m", "CONFIG_VIDEO_ADV7393": "m", "CONFIG_VIDEO_ADV7511": "m", "CONFIG_VIDEO_ADV7511_CEC": "y", "CONFIG_VIDEO_AK881X": "m", "CONFIG_VIDEO_SAA7127": "m", "CONFIG_VIDEO_SAA7185": "m", "CONFIG_VIDEO_THS8200": "m", "CONFIG_VIDEO_UPD64031A": "m", "CONFIG_VIDEO_UPD64083": "m", "CONFIG_VIDEO_SAA6752HS": "m", "CONFIG_SDR_MAX2175": "m", "CONFIG_VIDEO_I2C": "m", "CONFIG_VIDEO_M52790": "m", "CONFIG_VIDEO_ST_MIPID02": "not set", "CONFIG_VIDEO_THS7303": "m", "CONFIG_CXD2880_SPI_DRV": "m", "CONFIG_VIDEO_GS1662": "m", "CONFIG_MEDIA_TUNER": "m", "CONFIG_MEDIA_TUNER_E4000": "m", "CONFIG_MEDIA_TUNER_FC0011": "m", "CONFIG_MEDIA_TUNER_FC0012": "m", "CONFIG_MEDIA_TUNER_FC0013": "m", "CONFIG_MEDIA_TUNER_FC2580": "m", "CONFIG_MEDIA_TUNER_IT913X": "m", "CONFIG_MEDIA_TUNER_M88RS6000T": "m", "CONFIG_MEDIA_TUNER_MAX2165": "m", "CONFIG_MEDIA_TUNER_MC44S803": "m", "CONFIG_MEDIA_TUNER_MSI001": "m", "CONFIG_MEDIA_TUNER_MT2060": "m", "CONFIG_MEDIA_TUNER_MT2063": "m", "CONFIG_MEDIA_TUNER_MT20XX": "m", "CONFIG_MEDIA_TUNER_MT2131": "m", "CONFIG_MEDIA_TUNER_MT2266": "m", "CONFIG_MEDIA_TUNER_MXL301RF": "m", "CONFIG_MEDIA_TUNER_MXL5005S": "m", "CONFIG_MEDIA_TUNER_MXL5007T": "m", "CONFIG_MEDIA_TUNER_QM1D1B0004": "m", "CONFIG_MEDIA_TUNER_QM1D1C0042": "m", "CONFIG_MEDIA_TUNER_QT1010": "m", "CONFIG_MEDIA_TUNER_R820T": "m", "CONFIG_MEDIA_TUNER_SI2157": "m", "CONFIG_MEDIA_TUNER_SIMPLE": "m", "CONFIG_MEDIA_TUNER_TDA18212": "m", "CONFIG_MEDIA_TUNER_TDA18218": "m", "CONFIG_MEDIA_TUNER_TDA18250": "m", "CONFIG_MEDIA_TUNER_TDA18271": "m", "CONFIG_MEDIA_TUNER_TDA827X": "m", "CONFIG_MEDIA_TUNER_TDA8290": "m", "CONFIG_MEDIA_TUNER_TDA9887": "m", "CONFIG_MEDIA_TUNER_TEA5761": "m", "CONFIG_MEDIA_TUNER_TEA5767": "m", "CONFIG_MEDIA_TUNER_TUA9001": "m", "CONFIG_MEDIA_TUNER_XC2028": "m", "CONFIG_MEDIA_TUNER_XC4000": "m", "CONFIG_MEDIA_TUNER_XC5000": "m", "CONFIG_DVB_M88DS3103": "m", "CONFIG_DVB_MXL5XX": "m", "CONFIG_DVB_STB0899": "m", "CONFIG_DVB_STB6100": "m", "CONFIG_DVB_STV090x": "m", "CONFIG_DVB_STV0910": "m", "CONFIG_DVB_STV6110x": "m", "CONFIG_DVB_STV6111": "m", "CONFIG_DVB_DRXK": "m", "CONFIG_DVB_MN88472": "m", "CONFIG_DVB_MN88473": "m", "CONFIG_DVB_SI2165": "m", "CONFIG_DVB_TDA18271C2DD": "m", "CONFIG_DVB_CX24110": "m", "CONFIG_DVB_CX24116": "m", "CONFIG_DVB_CX24117": "m", "CONFIG_DVB_CX24120": "m", "CONFIG_DVB_CX24123": "m", "CONFIG_DVB_DS3000": "m", "CONFIG_DVB_MB86A16": "m", "CONFIG_DVB_MT312": "m", "CONFIG_DVB_S5H1420": "m", "CONFIG_DVB_SI21XX": "m", "CONFIG_DVB_STB6000": "m", "CONFIG_DVB_STV0288": "m", "CONFIG_DVB_STV0299": "m", "CONFIG_DVB_STV0900": "m", "CONFIG_DVB_STV6110": "m", "CONFIG_DVB_TDA10071": "m", "CONFIG_DVB_TDA10086": "m", "CONFIG_DVB_TDA8083": "m", "CONFIG_DVB_TDA8261": "m", "CONFIG_DVB_TDA826X": "m", "CONFIG_DVB_TS2020": "m", "CONFIG_DVB_TUA6100": "m", "CONFIG_DVB_TUNER_CX24113": "m", "CONFIG_DVB_TUNER_ITD1000": "m", "CONFIG_DVB_VES1X93": "m", "CONFIG_DVB_ZL10036": "m", "CONFIG_DVB_ZL10039": "m", "CONFIG_DVB_AF9013": "m", "CONFIG_DVB_AS102_FE": "m", "CONFIG_DVB_CX22700": "m", "CONFIG_DVB_CX22702": "m", "CONFIG_DVB_CXD2820R": "m", "CONFIG_DVB_CXD2841ER": "m", "CONFIG_DVB_DIB3000MB": "m", "CONFIG_DVB_DIB3000MC": "m", "CONFIG_DVB_DIB7000M": "m", "CONFIG_DVB_DIB7000P": "m", "CONFIG_DVB_DIB9000": "m", "CONFIG_DVB_DRXD": "m", "CONFIG_DVB_EC100": "m", "CONFIG_DVB_GP8PSK_FE": "m", "CONFIG_DVB_L64781": "m", "CONFIG_DVB_MT352": "m", "CONFIG_DVB_NXT6000": "m", "CONFIG_DVB_RTL2830": "m", "CONFIG_DVB_RTL2832": "m", "CONFIG_DVB_RTL2832_SDR": "m", "CONFIG_DVB_S5H1432": "m", "CONFIG_DVB_SI2168": "m", "CONFIG_DVB_SP887X": "m", "CONFIG_DVB_STV0367": "m", "CONFIG_DVB_TDA10048": "m", "CONFIG_DVB_TDA1004X": "m", "CONFIG_DVB_ZD1301_DEMOD": "m", "CONFIG_DVB_ZL10353": "m", "CONFIG_DVB_CXD2880": "m", "CONFIG_DVB_STV0297": "m", "CONFIG_DVB_TDA10021": "m", "CONFIG_DVB_TDA10023": "m", "CONFIG_DVB_VES1820": "m", "CONFIG_DVB_AU8522": "m", "CONFIG_DVB_AU8522_DTV": "m", "CONFIG_DVB_AU8522_V4L": "m", "CONFIG_DVB_BCM3510": "m", "CONFIG_DVB_LG2160": "m", "CONFIG_DVB_LGDT3305": "m", "CONFIG_DVB_LGDT3306A": "m", "CONFIG_DVB_LGDT330X": "m", "CONFIG_DVB_MXL692": "m", "CONFIG_DVB_NXT200X": "m", "CONFIG_DVB_OR51132": "m", "CONFIG_DVB_OR51211": "m", "CONFIG_DVB_S5H1409": "m", "CONFIG_DVB_S5H1411": "m", "CONFIG_DVB_DIB8000": "m", "CONFIG_DVB_MB86A20S": "m", "CONFIG_DVB_S921": "m", "CONFIG_DVB_MN88443X": "m", "CONFIG_DVB_TC90522": "m", "CONFIG_DVB_PLL": "m", "CONFIG_DVB_TUNER_DIB0070": "m", "CONFIG_DVB_TUNER_DIB0090": "m", "CONFIG_DVB_A8293": "m", "CONFIG_DVB_AF9033": "m", "CONFIG_DVB_ASCOT2E": "m", "CONFIG_DVB_ATBM8830": "m", "CONFIG_DVB_HELENE": "m", "CONFIG_DVB_HORUS3A": "m", "CONFIG_DVB_ISL6405": "m", "CONFIG_DVB_ISL6421": "m", "CONFIG_DVB_ISL6423": "m", "CONFIG_DVB_IX2505V": "m", "CONFIG_DVB_LGS8GL5": "m", "CONFIG_DVB_LGS8GXX": "m", "CONFIG_DVB_LNBH25": "m", "CONFIG_DVB_LNBH29": "m", "CONFIG_DVB_LNBP21": "m", "CONFIG_DVB_LNBP22": "m", "CONFIG_DVB_M88RS2000": "m", "CONFIG_DVB_TDA665x": "m", "CONFIG_DVB_DRX39XYJ": "m", "CONFIG_DVB_CXD2099": "m", "CONFIG_DVB_SP2": "m", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_VIDEO_CMDLINE": "y", "CONFIG_VIDEO_NOMODESET": "y", "CONFIG_AUXDISPLAY": "y", "CONFIG_CHARLCD": "m", "CONFIG_HD44780_COMMON": "m", "CONFIG_HD44780": "m", "CONFIG_KS0108": "m", "CONFIG_KS0108_PORT": "0x378", "CONFIG_KS0108_DELAY": "2", "CONFIG_CFAG12864B": "m", "CONFIG_CFAG12864B_RATE": "20", "CONFIG_IMG_ASCII_LCD": "not set", "CONFIG_HT16K33": "not set", "CONFIG_LCD2S": "not set", "CONFIG_PARPORT_PANEL": "m", "CONFIG_PANEL_PARPORT": "0", "CONFIG_PANEL_PROFILE": "5", "CONFIG_PANEL_CHANGE_MESSAGE": "not set", "CONFIG_CHARLCD_BL_OFF": "not set", "CONFIG_CHARLCD_BL_ON": "not set", "CONFIG_CHARLCD_BL_FLASH": "y", "CONFIG_PANEL": "m", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "y", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "y", "CONFIG_AGP_VIA": "y", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "y", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS": "not set", "CONFIG_DRM_DEBUG_MODESET_LOCK": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM": "not set", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "y", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_DP_AUX_CHARDEV": "y", "CONFIG_DRM_DP_CEC": "y", "CONFIG_DRM_TTM": "m", "CONFIG_DRM_EXEC": "m", "CONFIG_DRM_GPUVM": "m", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "m", "CONFIG_DRM_TTM_HELPER": "m", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_SUBALLOC_HELPER": "m", "CONFIG_DRM_SCHED": "m", "CONFIG_DRM_I2C_CH7006": "m", "CONFIG_DRM_I2C_SIL164": "m", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "m", "CONFIG_DRM_RADEON": "m", "CONFIG_DRM_RADEON_USERPTR": "y", "CONFIG_DRM_AMDGPU": "m", "CONFIG_DRM_AMDGPU_SI": "y", "CONFIG_DRM_AMDGPU_CIK": "y", "CONFIG_DRM_AMDGPU_USERPTR": "y", "CONFIG_DRM_AMDGPU_WERROR": "not set", "CONFIG_DRM_AMD_ACP": "y", "CONFIG_DRM_AMD_DC": "y", "CONFIG_DRM_AMD_DC_FP": "y", "CONFIG_DRM_AMD_DC_SI": "y", "CONFIG_DEBUG_KERNEL_DC": "not set", "CONFIG_DRM_AMD_SECURE_DISPLAY": "y", "CONFIG_HSA_AMD": "y", "CONFIG_HSA_AMD_SVM": "y", "CONFIG_HSA_AMD_P2P": "y", "CONFIG_DRM_NOUVEAU": "m", "CONFIG_NOUVEAU_DEBUG": "5", "CONFIG_NOUVEAU_DEBUG_DEFAULT": "3", "CONFIG_NOUVEAU_DEBUG_MMU": "not set", "CONFIG_NOUVEAU_DEBUG_PUSH": "not set", "CONFIG_DRM_NOUVEAU_BACKLIGHT": "y", "CONFIG_DRM_NOUVEAU_SVM": "y", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_GVT_KVMGT": "m", "CONFIG_DRM_I915_PXP": "y", "CONFIG_DRM_I915_WERROR": "not set", "CONFIG_DRM_I915_DEBUG": "not set", "CONFIG_DRM_I915_DEBUG_MMIO": "not set", "CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS": "not set", "CONFIG_DRM_I915_SW_FENCE_CHECK_DAG": "not set", "CONFIG_DRM_I915_DEBUG_GUC": "not set", "CONFIG_DRM_I915_SELFTEST": "not set", "CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS": "not set", "CONFIG_DRM_I915_DEBUG_VBLANK_EVADE": "not set", "CONFIG_DRM_I915_DEBUG_RUNTIME_PM": "not set", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_I915_GVT": "y", "CONFIG_DRM_VGEM": "m", "CONFIG_DRM_VKMS": "m", "CONFIG_DRM_VMWGFX": "m", "CONFIG_DRM_VMWGFX_MKSSTATS": "not set", "CONFIG_DRM_GMA500": "m", "CONFIG_DRM_UDL": "m", "CONFIG_DRM_AST": "m", "CONFIG_DRM_MGAG200": "m", "CONFIG_DRM_QXL": "m", "CONFIG_DRM_VIRTIO_GPU": "m", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_AUO_A030JTN01": "not set", "CONFIG_DRM_PANEL_ORISETECH_OTA5601A": "not set", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "m", "CONFIG_DRM_PANEL_WIDECHIPS_WS2401": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_LOONGSON": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "m", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "m", "CONFIG_DRM_PANEL_MIPI_DBI": "not set", "CONFIG_DRM_SIMPLEDRM": "y", "CONFIG_TINYDRM_HX8357D": "not set", "CONFIG_TINYDRM_ILI9163": "not set", "CONFIG_TINYDRM_ILI9225": "not set", "CONFIG_TINYDRM_ILI9341": "not set", "CONFIG_TINYDRM_ILI9486": "not set", "CONFIG_TINYDRM_MI0283QT": "not set", "CONFIG_TINYDRM_REPAPER": "not set", "CONFIG_TINYDRM_ST7586": "not set", "CONFIG_TINYDRM_ST7735R": "not set", "CONFIG_DRM_XEN": "y", "CONFIG_DRM_XEN_FRONTEND": "m", "CONFIG_DRM_VBOXVIDEO": "m", "CONFIG_DRM_GUD": "m", "CONFIG_DRM_SSD130X": "m", "CONFIG_DRM_SSD130X_I2C": "m", "CONFIG_DRM_SSD130X_SPI": "m", "CONFIG_DRM_HYPERV": "m", "CONFIG_DRM_LEGACY": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_DRM_LIB_RANDOM": "not set", "CONFIG_DRM_PRIVACY_SCREEN": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "y", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_LE80578": "not set", "CONFIG_FB_INTEL": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "m", "CONFIG_FB_VIRTUAL": "m", "CONFIG_XEN_FBDEV_FRONTEND": "m", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_HYPERV": "not set", "CONFIG_FB_SSD1307": "m", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "y", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYS_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_BACKLIGHT": "m", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "y", "CONFIG_LCD_CLASS_DEVICE": "m", "CONFIG_LCD_L4F00242T03": "not set", "CONFIG_LCD_LMS283GF05": "not set", "CONFIG_LCD_LTV350QV": "not set", "CONFIG_LCD_ILI922X": "not set", "CONFIG_LCD_ILI9320": "not set", "CONFIG_LCD_TDO24M": "not set", "CONFIG_LCD_VGG2432A4": "not set", "CONFIG_LCD_PLATFORM": "m", "CONFIG_LCD_AMS369FG06": "not set", "CONFIG_LCD_LMS501KF03": "not set", "CONFIG_LCD_HX8357": "not set", "CONFIG_LCD_OTM3225A": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "y", "CONFIG_BACKLIGHT_KTD253": "m", "CONFIG_BACKLIGHT_KTZ8866": "m", "CONFIG_BACKLIGHT_LM3533": "m", "CONFIG_BACKLIGHT_PWM": "m", "CONFIG_BACKLIGHT_APPLE": "m", "CONFIG_BACKLIGHT_QCOM_WLED": "m", "CONFIG_BACKLIGHT_RT4831": "m", "CONFIG_BACKLIGHT_SAHARA": "m", "CONFIG_BACKLIGHT_ADP8860": "m", "CONFIG_BACKLIGHT_ADP8870": "m", "CONFIG_BACKLIGHT_LM3630A": "m", "CONFIG_BACKLIGHT_LM3639": "m", "CONFIG_BACKLIGHT_LP855X": "m", "CONFIG_BACKLIGHT_GPIO": "m", "CONFIG_BACKLIGHT_LV5207LP": "m", "CONFIG_BACKLIGHT_BD6107": "m", "CONFIG_BACKLIGHT_ARCXCNN": "m", "CONFIG_VGASTATE": "not set", "CONFIG_VIDEOMODE_HELPERS": "y", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "y", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "y", "CONFIG_DRM_ACCEL_HABANALABS": "m", "CONFIG_DRM_ACCEL_IVPU": "m", "CONFIG_DRM_ACCEL_QAIC": "m", "CONFIG_SOUND": "m", "CONFIG_SOUND_OSS_CORE": "y", "CONFIG_SOUND_OSS_CORE_PRECLAIM": "not set", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_PCM_ELD": "y", "CONFIG_SND_DMAENGINE_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_UMP": "m", "CONFIG_SND_UMP_LEGACY_RAWMIDI": "y", "CONFIG_SND_COMPRESS_OFFLOAD": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "y", "CONFIG_SND_MIXER_OSS": "m", "CONFIG_SND_PCM_OSS": "m", "CONFIG_SND_PCM_OSS_PLUGINS": "y", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "y", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_VERBOSE_PRINTK": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "y", "CONFIG_SND_DEBUG_VERBOSE": "not set", "CONFIG_SND_PCM_XRUN_DEBUG": "y", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_CTL_DEBUG": "not set", "CONFIG_SND_JACK_INJECTION_DEBUG": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "m", "CONFIG_SND_SEQUENCER_OSS": "m", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "y", "CONFIG_SND_SEQ_UMP_CLIENT": "m", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_OPL4_LIB_SEQ": "not set", "CONFIG_SND_VX_LIB": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "m", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_VIRMIDI": "m", "CONFIG_SND_MTPAV": "m", "CONFIG_SND_MTS64": "m", "CONFIG_SND_SERIAL_U16550": "m", "CONFIG_SND_MPU401": "m", "CONFIG_SND_PORTMAN2X4": "m", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_SB_COMMON": "m", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "m", "CONFIG_SND_ALS300": "m", "CONFIG_SND_ALS4000": "m", "CONFIG_SND_ALI5451": "m", "CONFIG_SND_ASIHPI": "m", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "m", "CONFIG_SND_AU8820": "m", "CONFIG_SND_AU8830": "m", "CONFIG_SND_AW2": "m", "CONFIG_SND_AZT3328": "m", "CONFIG_SND_BT87X": "m", "CONFIG_SND_BT87X_OVERCLOCK": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "m", "CONFIG_SND_CS46XX": "m", "CONFIG_SND_CS46XX_NEW_DSP": "y", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "m", "CONFIG_SND_GINA20": "m", "CONFIG_SND_LAYLA20": "m", "CONFIG_SND_DARLA24": "m", "CONFIG_SND_GINA24": "m", "CONFIG_SND_LAYLA24": "m", "CONFIG_SND_MONA": "m", "CONFIG_SND_MIA": "m", "CONFIG_SND_ECHO3G": "m", "CONFIG_SND_INDIGO": "m", "CONFIG_SND_INDIGOIO": "m", "CONFIG_SND_INDIGODJ": "m", "CONFIG_SND_INDIGOIOX": "m", "CONFIG_SND_INDIGODJX": "m", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "m", "CONFIG_SND_ES1938": "m", "CONFIG_SND_ES1968": "m", "CONFIG_SND_ES1968_INPUT": "y", "CONFIG_SND_ES1968_RADIO": "y", "CONFIG_SND_FM801": "m", "CONFIG_SND_FM801_TEA575X_BOOL": "y", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "m", "CONFIG_SND_KORG1212": "m", "CONFIG_SND_LOLA": "m", "CONFIG_SND_LX6464ES": "m", "CONFIG_SND_MAESTRO3": "m", "CONFIG_SND_MAESTRO3_INPUT": "y", "CONFIG_SND_MIXART": "m", "CONFIG_SND_NM256": "m", "CONFIG_SND_PCXHR": "m", "CONFIG_SND_RIPTIDE": "m", "CONFIG_SND_RME32": "m", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "m", "CONFIG_SND_TRIDENT": "m", "CONFIG_SND_VIA82XX": "m", "CONFIG_SND_VIA82XX_MODEM": "m", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "m", "CONFIG_SND_YMFPCI": "m", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "y", "CONFIG_SND_HDA_RECONFIG": "y", "CONFIG_SND_HDA_INPUT_BEEP": "y", "CONFIG_SND_HDA_INPUT_BEEP_MODE": "1", "CONFIG_SND_HDA_PATCH_LOADER": "y", "CONFIG_SND_HDA_CIRRUS_SCODEC": "m", "CONFIG_SND_HDA_SCODEC_CS35L41": "m", "CONFIG_SND_HDA_CS_DSP_CONTROLS": "m", "CONFIG_SND_HDA_SCODEC_CS35L41_I2C": "m", "CONFIG_SND_HDA_SCODEC_CS35L41_SPI": "m", "CONFIG_SND_HDA_SCODEC_CS35L56": "m", "CONFIG_SND_HDA_SCODEC_CS35L56_I2C": "m", "CONFIG_SND_HDA_SCODEC_CS35L56_SPI": "m", "CONFIG_SND_HDA_SCODEC_TAS2781_I2C": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "m", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "1", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_EXT_CORE": "m", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_INTEL_BYT_PREFER_SOF": "y", "CONFIG_SND_SPI": "not set", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "y", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "m", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "m", "CONFIG_SND_USB_CAIAQ_INPUT": "y", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "m", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "m", "CONFIG_SND_USB_LINE6": "m", "CONFIG_SND_USB_POD": "m", "CONFIG_SND_USB_PODHD": "m", "CONFIG_SND_USB_TONEPORT": "m", "CONFIG_SND_USB_VARIAX": "m", "CONFIG_SND_FIREWIRE": "y", "CONFIG_SND_FIREWIRE_LIB": "m", "CONFIG_SND_DICE": "m", "CONFIG_SND_OXFW": "m", "CONFIG_SND_ISIGHT": "m", "CONFIG_SND_FIREWORKS": "m", "CONFIG_SND_BEBOB": "m", "CONFIG_SND_FIREWIRE_DIGI00X": "m", "CONFIG_SND_FIREWIRE_TASCAM": "m", "CONFIG_SND_FIREWIRE_MOTU": "m", "CONFIG_SND_FIREFACE": "m", "CONFIG_SND_SOC": "m", "CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM": "y", "CONFIG_SND_SOC_COMPRESS": "y", "CONFIG_SND_SOC_TOPOLOGY": "y", "CONFIG_SND_SOC_ACPI": "m", "CONFIG_SND_SOC_ADI": "m", "CONFIG_SND_SOC_ADI_AXI_I2S": "m", "CONFIG_SND_SOC_ADI_AXI_SPDIF": "m", "CONFIG_SND_SOC_AMD_ACP": "m", "CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH": "m", "CONFIG_SND_SOC_AMD_CZ_RT5645_MACH": "m", "CONFIG_SND_SOC_AMD_ST_ES8336_MACH": "m", "CONFIG_SND_SOC_AMD_ACP3x": "m", "CONFIG_SND_SOC_AMD_RV_RT5682_MACH": "m", "CONFIG_SND_SOC_AMD_RENOIR": "m", "CONFIG_SND_SOC_AMD_RENOIR_MACH": "m", "CONFIG_SND_SOC_AMD_ACP5x": "m", "CONFIG_SND_SOC_AMD_VANGOGH_MACH": "m", "CONFIG_SND_SOC_AMD_ACP6x": "m", "CONFIG_SND_SOC_AMD_YC_MACH": "m", "CONFIG_SND_AMD_ACP_CONFIG": "m", "CONFIG_SND_SOC_AMD_ACP_COMMON": "m", "CONFIG_SND_SOC_AMD_ACP_PDM": "m", "CONFIG_SND_SOC_AMD_ACP_LEGACY_COMMON": "m", "CONFIG_SND_SOC_AMD_ACP_I2S": "m", "CONFIG_SND_SOC_AMD_ACP_PCM": "m", "CONFIG_SND_SOC_AMD_ACP_PCI": "m", "CONFIG_SND_AMD_ASOC_RENOIR": "m", "CONFIG_SND_AMD_ASOC_REMBRANDT": "m", "CONFIG_SND_SOC_AMD_MACH_COMMON": "m", "CONFIG_SND_SOC_AMD_LEGACY_MACH": "m", "CONFIG_SND_SOC_AMD_SOF_MACH": "m", "CONFIG_SND_SOC_AMD_RPL_ACP6x": "m", "CONFIG_SND_SOC_AMD_PS": "m", "CONFIG_SND_SOC_AMD_PS_MACH": "m", "CONFIG_SND_ATMEL_SOC": "not set", "CONFIG_SND_BCM63XX_I2S_WHISTLER": "not set", "CONFIG_SND_DESIGNWARE_I2S": "m", "CONFIG_SND_DESIGNWARE_PCM": "y", "CONFIG_SND_SOC_FSL_ASRC": "not set", "CONFIG_SND_SOC_FSL_SAI": "not set", "CONFIG_SND_SOC_FSL_AUDMIX": "not set", "CONFIG_SND_SOC_FSL_SSI": "not set", "CONFIG_SND_SOC_FSL_SPDIF": "not set", "CONFIG_SND_SOC_FSL_ESAI": "not set", "CONFIG_SND_SOC_FSL_MICFIL": "not set", "CONFIG_SND_SOC_FSL_XCVR": "not set", "CONFIG_SND_SOC_FSL_RPMSG": "not set", "CONFIG_SND_SOC_IMX_AUDMUX": "not set", "CONFIG_SND_I2S_HI6210_I2S": "m", "CONFIG_SND_SOC_IMG": "not set", "CONFIG_SND_SOC_INTEL_SST_TOPLEVEL": "y", "CONFIG_SND_SOC_INTEL_SST": "m", "CONFIG_SND_SOC_INTEL_CATPT": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE": "m", "CONFIG_SND_SOC_INTEL_SKL": "m", "CONFIG_SND_SOC_INTEL_APL": "m", "CONFIG_SND_SOC_INTEL_KBL": "m", "CONFIG_SND_SOC_INTEL_GLK": "m", "CONFIG_SND_SOC_INTEL_CNL": "m", "CONFIG_SND_SOC_INTEL_CFL": "m", "CONFIG_SND_SOC_INTEL_CML_H": "m", "CONFIG_SND_SOC_INTEL_CML_LP": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_FAMILY": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC": "y", "CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON": "m", "CONFIG_SND_SOC_ACPI_INTEL_MATCH": "m", "CONFIG_SND_SOC_INTEL_AVS": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_DA7219": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_DMIC": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_ES8336": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_HDAUDIO": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_I2S_TEST": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98357A": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98373": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_NAU8825": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT274": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT286": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT298": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT5663": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT5682": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_SSM4567": "m", "CONFIG_SND_SOC_INTEL_MACH": "y", "CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES": "y", "CONFIG_SND_SOC_INTEL_HDA_DSP_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_MAXIM_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_REALTEK_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_CIRRUS_COMMON": "m", "CONFIG_SND_SOC_INTEL_HASWELL_MACH": "m", "CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH": "m", "CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH": "m", "CONFIG_SND_SOC_INTEL_BROADWELL_MACH": "m", "CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH": "m", "CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH": "not set", "CONFIG_SND_SOC_INTEL_SKL_RT286_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_DA7219_MAX98357A_GENERIC": "m", "CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON": "m", "CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_BXT_RT298_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH": "m", "CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_ES8336_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_NAU8825_MACH": "m", "CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH": "m", "CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH": "m", "CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH": "m", "CONFIG_SND_SOC_MTK_BTCVSD": "m", "CONFIG_SND_SOC_SOF_TOPLEVEL": "y", "CONFIG_SND_SOC_SOF_PCI_DEV": "m", "CONFIG_SND_SOC_SOF_PCI": "m", "CONFIG_SND_SOC_SOF_ACPI": "m", "CONFIG_SND_SOC_SOF_ACPI_DEV": "m", "CONFIG_SND_SOC_SOF_DEBUG_PROBES": "m", "CONFIG_SND_SOC_SOF_CLIENT": "m", "CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT": "not set", "CONFIG_SND_SOC_SOF": "m", "CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE": "y", "CONFIG_SND_SOC_SOF_IPC3": "y", "CONFIG_SND_SOC_SOF_INTEL_IPC4": "y", "CONFIG_SND_SOC_SOF_AMD_TOPLEVEL": "m", "CONFIG_SND_SOC_SOF_AMD_COMMON": "m", "CONFIG_SND_SOC_SOF_AMD_RENOIR": "m", "CONFIG_SND_SOC_SOF_AMD_VANGOGH": "m", "CONFIG_SND_SOC_SOF_AMD_REMBRANDT": "m", "CONFIG_SND_SOC_SOF_ACP_PROBES": "m", "CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL": "y", "CONFIG_SND_SOC_SOF_INTEL_HIFI_EP_IPC": "m", "CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP": "m", "CONFIG_SND_SOC_SOF_INTEL_COMMON": "m", "CONFIG_SND_SOC_SOF_BAYTRAIL": "m", "CONFIG_SND_SOC_SOF_BROADWELL": "m", "CONFIG_SND_SOC_SOF_MERRIFIELD": "m", "CONFIG_SND_SOC_SOF_INTEL_SKL": "m", "CONFIG_SND_SOC_SOF_SKYLAKE": "m", "CONFIG_SND_SOC_SOF_KABYLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_APL": "m", "CONFIG_SND_SOC_SOF_APOLLOLAKE": "m", "CONFIG_SND_SOC_SOF_GEMINILAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_CNL": "m", "CONFIG_SND_SOC_SOF_CANNONLAKE": "m", "CONFIG_SND_SOC_SOF_COFFEELAKE": "m", "CONFIG_SND_SOC_SOF_COMETLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_ICL": "m", "CONFIG_SND_SOC_SOF_ICELAKE": "m", "CONFIG_SND_SOC_SOF_JASPERLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_TGL": "m", "CONFIG_SND_SOC_SOF_TIGERLAKE": "m", "CONFIG_SND_SOC_SOF_ELKHARTLAKE": "m", "CONFIG_SND_SOC_SOF_ALDERLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_MTL": "m", "CONFIG_SND_SOC_SOF_METEORLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_LNL": "m", "CONFIG_SND_SOC_SOF_LUNARLAKE": "m", "CONFIG_SND_SOC_SOF_HDA_COMMON": "m", "CONFIG_SND_SOC_SOF_HDA_MLINK": "m", "CONFIG_SND_SOC_SOF_HDA_LINK": "y", "CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC": "y", "CONFIG_SND_SOC_SOF_HDA_LINK_BASELINE": "m", "CONFIG_SND_SOC_SOF_HDA": "m", "CONFIG_SND_SOC_SOF_HDA_PROBES": "m", "CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK_BASELINE": "m", "CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE": "m", "CONFIG_SND_SOC_SOF_XTENSA": "m", "CONFIG_SND_SOC_XILINX_I2S": "not set", "CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER": "not set", "CONFIG_SND_SOC_XILINX_SPDIF": "not set", "CONFIG_SND_SOC_XTFPGA_I2S": "not set", "CONFIG_SND_SOC_I2C_AND_SPI": "m", "CONFIG_SND_SOC_WM_ADSP": "m", "CONFIG_SND_SOC_AC97_CODEC": "not set", "CONFIG_SND_SOC_ADAU1372_I2C": "not set", "CONFIG_SND_SOC_ADAU1372_SPI": "not set", "CONFIG_SND_SOC_ADAU1701": "not set", "CONFIG_SND_SOC_ADAU1761_I2C": "not set", "CONFIG_SND_SOC_ADAU1761_SPI": "not set", "CONFIG_SND_SOC_ADAU7002": "m", "CONFIG_SND_SOC_ADAU7118_HW": "not set", "CONFIG_SND_SOC_ADAU7118_I2C": "not set", "CONFIG_SND_SOC_AK4104": "not set", "CONFIG_SND_SOC_AK4118": "not set", "CONFIG_SND_SOC_AK4375": "not set", "CONFIG_SND_SOC_AK4458": "not set", "CONFIG_SND_SOC_AK4554": "not set", "CONFIG_SND_SOC_AK4613": "not set", "CONFIG_SND_SOC_AK4642": "not set", "CONFIG_SND_SOC_AK5386": "not set", "CONFIG_SND_SOC_AK5558": "not set", "CONFIG_SND_SOC_ALC5623": "not set", "CONFIG_SND_SOC_AW8738": "not set", "CONFIG_SND_SOC_AW88395": "not set", "CONFIG_SND_SOC_BD28623": "not set", "CONFIG_SND_SOC_BT_SCO": "m", "CONFIG_SND_SOC_CROS_EC_CODEC": "m", "CONFIG_SND_SOC_CS35L32": "not set", "CONFIG_SND_SOC_CS35L33": "not set", "CONFIG_SND_SOC_CS35L34": "m", "CONFIG_SND_SOC_CS35L35": "m", "CONFIG_SND_SOC_CS35L36": "m", "CONFIG_SND_SOC_CS35L41_LIB": "m", "CONFIG_SND_SOC_CS35L41": "m", "CONFIG_SND_SOC_CS35L41_SPI": "m", "CONFIG_SND_SOC_CS35L41_I2C": "m", "CONFIG_SND_SOC_CS35L45": "m", "CONFIG_SND_SOC_CS35L45_SPI": "m", "CONFIG_SND_SOC_CS35L45_I2C": "m", "CONFIG_SND_SOC_CS35L56": "m", "CONFIG_SND_SOC_CS35L56_SHARED": "m", "CONFIG_SND_SOC_CS35L56_I2C": "m", "CONFIG_SND_SOC_CS35L56_SPI": "m", "CONFIG_SND_SOC_CS35L56_SDW": "m", "CONFIG_SND_SOC_CS42L42_CORE": "m", "CONFIG_SND_SOC_CS42L42": "m", "CONFIG_SND_SOC_CS42L42_SDW": "m", "CONFIG_SND_SOC_CS42L51_I2C": "not set", "CONFIG_SND_SOC_CS42L52": "not set", "CONFIG_SND_SOC_CS42L56": "not set", "CONFIG_SND_SOC_CS42L73": "not set", "CONFIG_SND_SOC_CS42L83": "not set", "CONFIG_SND_SOC_CS4234": "not set", "CONFIG_SND_SOC_CS4265": "not set", "CONFIG_SND_SOC_CS4270": "not set", "CONFIG_SND_SOC_CS4271_I2C": "not set", "CONFIG_SND_SOC_CS4271_SPI": "not set", "CONFIG_SND_SOC_CS42XX8_I2C": "not set", "CONFIG_SND_SOC_CS43130": "not set", "CONFIG_SND_SOC_CS4341": "m", "CONFIG_SND_SOC_CS4349": "not set", "CONFIG_SND_SOC_CS53L30": "not set", "CONFIG_SND_SOC_CX2072X": "m", "CONFIG_SND_SOC_DA7213": "m", "CONFIG_SND_SOC_DA7219": "m", "CONFIG_SND_SOC_DMIC": "m", "CONFIG_SND_SOC_ES7134": "not set", "CONFIG_SND_SOC_ES7241": "not set", "CONFIG_SND_SOC_ES8316": "m", "CONFIG_SND_SOC_ES8326": "m", "CONFIG_SND_SOC_ES8328_I2C": "not set", "CONFIG_SND_SOC_ES8328_SPI": "not set", "CONFIG_SND_SOC_GTM601": "not set", "CONFIG_SND_SOC_HDAC_HDMI": "m", "CONFIG_SND_SOC_HDAC_HDA": "m", "CONFIG_SND_SOC_HDA": "m", "CONFIG_SND_SOC_ICS43432": "not set", "CONFIG_SND_SOC_IDT821034": "not set", "CONFIG_SND_SOC_INNO_RK3036": "not set", "CONFIG_SND_SOC_MAX98088": "not set", "CONFIG_SND_SOC_MAX98090": "m", "CONFIG_SND_SOC_MAX98357A": "m", "CONFIG_SND_SOC_MAX98504": "not set", "CONFIG_SND_SOC_MAX9867": "not set", "CONFIG_SND_SOC_MAX98927": "m", "CONFIG_SND_SOC_MAX98520": "m", "CONFIG_SND_SOC_MAX98363": "m", "CONFIG_SND_SOC_MAX98373": "m", "CONFIG_SND_SOC_MAX98373_I2C": "m", "CONFIG_SND_SOC_MAX98373_SDW": "m", "CONFIG_SND_SOC_MAX98388": "m", "CONFIG_SND_SOC_MAX98390": "m", "CONFIG_SND_SOC_MAX98396": "m", "CONFIG_SND_SOC_MAX9860": "not set", "CONFIG_SND_SOC_MSM8916_WCD_ANALOG": "not set", "CONFIG_SND_SOC_MSM8916_WCD_DIGITAL": "not set", "CONFIG_SND_SOC_PCM1681": "not set", "CONFIG_SND_SOC_PCM1789_I2C": "not set", "CONFIG_SND_SOC_PCM179X_I2C": "not set", "CONFIG_SND_SOC_PCM179X_SPI": "not set", "CONFIG_SND_SOC_PCM186X_I2C": "not set", "CONFIG_SND_SOC_PCM186X_SPI": "not set", "CONFIG_SND_SOC_PCM3060_I2C": "not set", "CONFIG_SND_SOC_PCM3060_SPI": "not set", "CONFIG_SND_SOC_PCM3168A_I2C": "not set", "CONFIG_SND_SOC_PCM3168A_SPI": "not set", "CONFIG_SND_SOC_PCM5102A": "not set", "CONFIG_SND_SOC_PCM512x": "m", "CONFIG_SND_SOC_PCM512x_I2C": "m", "CONFIG_SND_SOC_PCM512x_SPI": "not set", "CONFIG_SND_SOC_PEB2466": "not set", "CONFIG_SND_SOC_RK3328": "not set", "CONFIG_SND_SOC_RL6231": "m", "CONFIG_SND_SOC_RL6347A": "m", "CONFIG_SND_SOC_RT274": "m", "CONFIG_SND_SOC_RT286": "m", "CONFIG_SND_SOC_RT298": "m", "CONFIG_SND_SOC_RT1011": "m", "CONFIG_SND_SOC_RT1015": "m", "CONFIG_SND_SOC_RT1015P": "m", "CONFIG_SND_SOC_RT1019": "m", "CONFIG_SND_SOC_RT1308": "m", "CONFIG_SND_SOC_RT1308_SDW": "m", "CONFIG_SND_SOC_RT1316_SDW": "m", "CONFIG_SND_SOC_RT1318_SDW": "m", "CONFIG_SND_SOC_RT5514": "m", "CONFIG_SND_SOC_RT5514_SPI": "m", "CONFIG_SND_SOC_RT5514_SPI_BUILTIN": "not set", "CONFIG_SND_SOC_RT5616": "not set", "CONFIG_SND_SOC_RT5631": "not set", "CONFIG_SND_SOC_RT5640": "m", "CONFIG_SND_SOC_RT5645": "m", "CONFIG_SND_SOC_RT5651": "m", "CONFIG_SND_SOC_RT5659": "m", "CONFIG_SND_SOC_RT5660": "m", "CONFIG_SND_SOC_RT5663": "m", "CONFIG_SND_SOC_RT5670": "m", "CONFIG_SND_SOC_RT5677": "m", "CONFIG_SND_SOC_RT5677_SPI": "m", "CONFIG_SND_SOC_RT5682": "m", "CONFIG_SND_SOC_RT5682_I2C": "m", "CONFIG_SND_SOC_RT5682_SDW": "m", "CONFIG_SND_SOC_RT5682S": "m", "CONFIG_SND_SOC_RT700": "m", "CONFIG_SND_SOC_RT700_SDW": "m", "CONFIG_SND_SOC_RT711": "m", "CONFIG_SND_SOC_RT711_SDW": "m", "CONFIG_SND_SOC_RT711_SDCA_SDW": "m", "CONFIG_SND_SOC_RT712_SDCA_SDW": "m", "CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW": "m", "CONFIG_SND_SOC_RT722_SDCA_SDW": "m", "CONFIG_SND_SOC_RT715": "m", "CONFIG_SND_SOC_RT715_SDW": "m", "CONFIG_SND_SOC_RT715_SDCA_SDW": "m", "CONFIG_SND_SOC_RT9120": "m", "CONFIG_SND_SOC_SDW_MOCKUP": "m", "CONFIG_SND_SOC_SGTL5000": "not set", "CONFIG_SND_SOC_SIMPLE_AMPLIFIER": "not set", "CONFIG_SND_SOC_SIMPLE_MUX": "not set", "CONFIG_SND_SOC_SMA1303": "not set", "CONFIG_SND_SOC_SPDIF": "not set", "CONFIG_SND_SOC_SRC4XXX_I2C": "not set", "CONFIG_SND_SOC_SSM2305": "not set", "CONFIG_SND_SOC_SSM2518": "not set", "CONFIG_SND_SOC_SSM2602_SPI": "not set", "CONFIG_SND_SOC_SSM2602_I2C": "not set", "CONFIG_SND_SOC_SSM4567": "m", "CONFIG_SND_SOC_STA32X": "not set", "CONFIG_SND_SOC_STA350": "not set", "CONFIG_SND_SOC_STI_SAS": "not set", "CONFIG_SND_SOC_TAS2552": "not set", "CONFIG_SND_SOC_TAS2562": "not set", "CONFIG_SND_SOC_TAS2764": "not set", "CONFIG_SND_SOC_TAS2770": "not set", "CONFIG_SND_SOC_TAS2780": "not set", "CONFIG_SND_SOC_TAS2781_COMLIB": "m", "CONFIG_SND_SOC_TAS2781_FMWLIB": "m", "CONFIG_SND_SOC_TAS2781_I2C": "m", "CONFIG_SND_SOC_TAS5086": "not set", "CONFIG_SND_SOC_TAS571X": "not set", "CONFIG_SND_SOC_TAS5720": "m", "CONFIG_SND_SOC_TAS5805M": "not set", "CONFIG_SND_SOC_TAS6424": "not set", "CONFIG_SND_SOC_TDA7419": "m", "CONFIG_SND_SOC_TFA9879": "not set", "CONFIG_SND_SOC_TFA989X": "not set", "CONFIG_SND_SOC_TLV320ADC3XXX": "not set", "CONFIG_SND_SOC_TLV320AIC23_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC23_SPI": "not set", "CONFIG_SND_SOC_TLV320AIC31XX": "not set", "CONFIG_SND_SOC_TLV320AIC32X4_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC32X4_SPI": "not set", "CONFIG_SND_SOC_TLV320AIC3X_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC3X_SPI": "not set", "CONFIG_SND_SOC_TLV320ADCX140": "not set", "CONFIG_SND_SOC_TS3A227E": "m", "CONFIG_SND_SOC_TSCS42XX": "not set", "CONFIG_SND_SOC_TSCS454": "not set", "CONFIG_SND_SOC_UDA1334": "not set", "CONFIG_SND_SOC_WCD938X_SDW": "not set", "CONFIG_SND_SOC_WM8510": "not set", "CONFIG_SND_SOC_WM8523": "not set", "CONFIG_SND_SOC_WM8524": "not set", "CONFIG_SND_SOC_WM8580": "not set", "CONFIG_SND_SOC_WM8711": "not set", "CONFIG_SND_SOC_WM8728": "not set", "CONFIG_SND_SOC_WM8731_I2C": "not set", "CONFIG_SND_SOC_WM8731_SPI": "not set", "CONFIG_SND_SOC_WM8737": "not set", "CONFIG_SND_SOC_WM8741": "not set", "CONFIG_SND_SOC_WM8750": "not set", "CONFIG_SND_SOC_WM8753": "not set", "CONFIG_SND_SOC_WM8770": "not set", "CONFIG_SND_SOC_WM8776": "not set", "CONFIG_SND_SOC_WM8782": "not set", "CONFIG_SND_SOC_WM8804": "m", "CONFIG_SND_SOC_WM8804_I2C": "m", "CONFIG_SND_SOC_WM8804_SPI": "not set", "CONFIG_SND_SOC_WM8903": "not set", "CONFIG_SND_SOC_WM8904": "not set", "CONFIG_SND_SOC_WM8940": "not set", "CONFIG_SND_SOC_WM8960": "not set", "CONFIG_SND_SOC_WM8961": "not set", "CONFIG_SND_SOC_WM8962": "not set", "CONFIG_SND_SOC_WM8974": "not set", "CONFIG_SND_SOC_WM8978": "not set", "CONFIG_SND_SOC_WM8985": "not set", "CONFIG_SND_SOC_WSA881X": "not set", "CONFIG_SND_SOC_WSA883X": "not set", "CONFIG_SND_SOC_WSA884X": "not set", "CONFIG_SND_SOC_ZL38060": "not set", "CONFIG_SND_SOC_MAX9759": "not set", "CONFIG_SND_SOC_MT6351": "not set", "CONFIG_SND_SOC_MT6358": "not set", "CONFIG_SND_SOC_MT6660": "not set", "CONFIG_SND_SOC_NAU8315": "m", "CONFIG_SND_SOC_NAU8540": "not set", "CONFIG_SND_SOC_NAU8810": "m", "CONFIG_SND_SOC_NAU8821": "m", "CONFIG_SND_SOC_NAU8822": "not set", "CONFIG_SND_SOC_NAU8824": "m", "CONFIG_SND_SOC_NAU8825": "m", "CONFIG_SND_SOC_TPA6130A2": "not set", "CONFIG_SND_SOC_LPASS_WSA_MACRO": "not set", "CONFIG_SND_SOC_LPASS_VA_MACRO": "not set", "CONFIG_SND_SOC_LPASS_RX_MACRO": "not set", "CONFIG_SND_SOC_LPASS_TX_MACRO": "not set", "CONFIG_SND_SIMPLE_CARD": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "m", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_XEN_FRONTEND": "m", "CONFIG_SND_VIRTIO": "m", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "y", "CONFIG_HIDRAW": "y", "CONFIG_UHID": "m", "CONFIG_HID_GENERIC": "m", "CONFIG_HID_A4TECH": "m", "CONFIG_HID_ACCUTOUCH": "m", "CONFIG_HID_ACRUX": "m", "CONFIG_HID_ACRUX_FF": "y", "CONFIG_HID_APPLE": "m", "CONFIG_HID_APPLEIR": "m", "CONFIG_HID_ASUS": "m", "CONFIG_HID_AUREAL": "m", "CONFIG_HID_BELKIN": "m", "CONFIG_HID_BETOP_FF": "m", "CONFIG_HID_BIGBEN_FF": "m", "CONFIG_HID_CHERRY": "m", "CONFIG_HID_CHICONY": "m", "CONFIG_HID_CORSAIR": "m", "CONFIG_HID_COUGAR": "m", "CONFIG_HID_MACALLY": "m", "CONFIG_HID_PRODIKEYS": "m", "CONFIG_HID_CMEDIA": "m", "CONFIG_HID_CP2112": "m", "CONFIG_HID_CREATIVE_SB0540": "m", "CONFIG_HID_CYPRESS": "m", "CONFIG_HID_DRAGONRISE": "m", "CONFIG_DRAGONRISE_FF": "y", "CONFIG_HID_EMS_FF": "m", "CONFIG_HID_ELAN": "m", "CONFIG_HID_ELECOM": "m", "CONFIG_HID_ELO": "m", "CONFIG_HID_EVISION": "m", "CONFIG_HID_EZKEY": "m", "CONFIG_HID_FT260": "m", "CONFIG_HID_GEMBIRD": "m", "CONFIG_HID_GFRM": "m", "CONFIG_HID_GLORIOUS": "m", "CONFIG_HID_HOLTEK": "m", "CONFIG_HOLTEK_FF": "y", "CONFIG_HID_VIVALDI_COMMON": "m", "CONFIG_HID_GOOGLE_HAMMER": "m", "CONFIG_HID_VIVALDI": "m", "CONFIG_HID_GT683R": "m", "CONFIG_HID_KEYTOUCH": "m", "CONFIG_HID_KYE": "m", "CONFIG_HID_UCLOGIC": "m", "CONFIG_HID_WALTOP": "m", "CONFIG_HID_VIEWSONIC": "m", "CONFIG_HID_VRC2": "m", "CONFIG_HID_XIAOMI": "m", "CONFIG_HID_GYRATION": "m", "CONFIG_HID_ICADE": "m", "CONFIG_HID_ITE": "m", "CONFIG_HID_JABRA": "m", "CONFIG_HID_TWINHAN": "m", "CONFIG_HID_KENSINGTON": "m", "CONFIG_HID_LCPOWER": "m", "CONFIG_HID_LED": "m", "CONFIG_HID_LENOVO": "m", "CONFIG_HID_LETSKETCH": "m", "CONFIG_HID_LOGITECH": "m", "CONFIG_HID_LOGITECH_DJ": "m", "CONFIG_HID_LOGITECH_HIDPP": "m", "CONFIG_LOGITECH_FF": "y", "CONFIG_LOGIRUMBLEPAD2_FF": "y", "CONFIG_LOGIG940_FF": "y", "CONFIG_LOGIWHEELS_FF": "y", "CONFIG_HID_MAGICMOUSE": "m", "CONFIG_HID_MALTRON": "m", "CONFIG_HID_MAYFLASH": "m", "CONFIG_HID_MEGAWORLD_FF": "m", "CONFIG_HID_REDRAGON": "m", "CONFIG_HID_MICROSOFT": "m", "CONFIG_HID_MONTEREY": "m", "CONFIG_HID_MULTITOUCH": "m", "CONFIG_HID_NINTENDO": "m", "CONFIG_NINTENDO_FF": "y", "CONFIG_HID_NTI": "m", "CONFIG_HID_NTRIG": "m", "CONFIG_HID_ORTEK": "m", "CONFIG_HID_PANTHERLORD": "m", "CONFIG_PANTHERLORD_FF": "y", "CONFIG_HID_PENMOUNT": "m", "CONFIG_HID_PETALYNX": "m", "CONFIG_HID_PICOLCD": "m", "CONFIG_HID_PICOLCD_FB": "y", "CONFIG_HID_PICOLCD_BACKLIGHT": "y", "CONFIG_HID_PICOLCD_LCD": "y", "CONFIG_HID_PICOLCD_LEDS": "y", "CONFIG_HID_PICOLCD_CIR": "y", "CONFIG_HID_PLANTRONICS": "m", "CONFIG_HID_PLAYSTATION": "m", "CONFIG_PLAYSTATION_FF": "y", "CONFIG_HID_PXRC": "m", "CONFIG_HID_RAZER": "m", "CONFIG_HID_PRIMAX": "m", "CONFIG_HID_RETRODE": "m", "CONFIG_HID_ROCCAT": "m", "CONFIG_HID_SAITEK": "m", "CONFIG_HID_SAMSUNG": "m", "CONFIG_HID_SEMITEK": "m", "CONFIG_HID_SIGMAMICRO": "m", "CONFIG_HID_SONY": "m", "CONFIG_SONY_FF": "y", "CONFIG_HID_SPEEDLINK": "m", "CONFIG_HID_STEAM": "m", "CONFIG_STEAM_FF": "y", "CONFIG_HID_STEELSERIES": "m", "CONFIG_HID_SUNPLUS": "m", "CONFIG_HID_RMI": "m", "CONFIG_HID_GREENASIA": "m", "CONFIG_GREENASIA_FF": "y", "CONFIG_HID_HYPERV_MOUSE": "m", "CONFIG_HID_SMARTJOYPLUS": "m", "CONFIG_SMARTJOYPLUS_FF": "y", "CONFIG_HID_TIVO": "m", "CONFIG_HID_TOPSEED": "m", "CONFIG_HID_TOPRE": "m", "CONFIG_HID_THINGM": "m", "CONFIG_HID_THRUSTMASTER": "m", "CONFIG_THRUSTMASTER_FF": "y", "CONFIG_HID_UDRAW_PS3": "m", "CONFIG_HID_U2FZERO": "m", "CONFIG_HID_WACOM": "m", "CONFIG_HID_WIIMOTE": "m", "CONFIG_HID_XINMO": "m", "CONFIG_HID_ZEROPLUS": "m", "CONFIG_ZEROPLUS_FF": "y", "CONFIG_HID_ZYDACRON": "m", "CONFIG_HID_SENSOR_HUB": "m", "CONFIG_HID_SENSOR_CUSTOM_SENSOR": "m", "CONFIG_HID_ALPS": "m", "CONFIG_HID_MCP2221": "m", "CONFIG_HID_BPF": "y", "CONFIG_USB_HID": "m", "CONFIG_HID_PID": "y", "CONFIG_USB_HIDDEV": "y", "CONFIG_USB_KBD": "not set", "CONFIG_USB_MOUSE": "not set", "CONFIG_I2C_HID": "m", "CONFIG_I2C_HID_ACPI": "m", "CONFIG_I2C_HID_OF": "m", "CONFIG_I2C_HID_CORE": "m", "CONFIG_INTEL_ISH_HID": "m", "CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER": "m", "CONFIG_AMD_SFH_HID": "m", "CONFIG_SURFACE_HID": "m", "CONFIG_SURFACE_KBD": "m", "CONFIG_SURFACE_HID_CORE": "m", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "y", "CONFIG_USB_ULPI_BUS": "m", "CONFIG_USB_CONN_GPIO": "m", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "m", "CONFIG_USB_PCI": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "y", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "y", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB": "not set", "CONFIG_USB_OTG_FSM": "m", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "m", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_MON": "m", "CONFIG_USB_C67X00_HCD": "m", "CONFIG_USB_XHCI_HCD": "m", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "m", "CONFIG_USB_XHCI_PCI_RENESAS": "m", "CONFIG_USB_XHCI_PLATFORM": "m", "CONFIG_USB_EHCI_HCD": "m", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "m", "CONFIG_USB_EHCI_FSL": "m", "CONFIG_USB_EHCI_HCD_PLATFORM": "m", "CONFIG_USB_OXU210HP_HCD": "m", "CONFIG_USB_ISP116X_HCD": "m", "CONFIG_USB_MAX3421_HCD": "not set", "CONFIG_USB_OHCI_HCD": "m", "CONFIG_USB_OHCI_HCD_PCI": "m", "CONFIG_USB_OHCI_HCD_SSB": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "m", "CONFIG_USB_UHCI_HCD": "m", "CONFIG_USB_SL811_HCD": "m", "CONFIG_USB_SL811_HCD_ISO": "not set", "CONFIG_USB_R8A66597_HCD": "m", "CONFIG_USB_HCD_BCMA": "m", "CONFIG_USB_HCD_SSB": "m", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_XEN_HCD": "m", "CONFIG_USB_ACM": "m", "CONFIG_USB_PRINTER": "m", "CONFIG_USB_WDM": "m", "CONFIG_USB_TMC": "m", "CONFIG_USB_STORAGE": "m", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "m", "CONFIG_REALTEK_AUTOPM": "y", "CONFIG_USB_STORAGE_DATAFAB": "m", "CONFIG_USB_STORAGE_FREECOM": "m", "CONFIG_USB_STORAGE_ISD200": "m", "CONFIG_USB_STORAGE_USBAT": "m", "CONFIG_USB_STORAGE_SDDR09": "m", "CONFIG_USB_STORAGE_SDDR55": "m", "CONFIG_USB_STORAGE_JUMPSHOT": "m", "CONFIG_USB_STORAGE_ALAUDA": "m", "CONFIG_USB_STORAGE_ONETOUCH": "m", "CONFIG_USB_STORAGE_KARMA": "m", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "m", "CONFIG_USB_STORAGE_ENE_UB6250": "m", "CONFIG_USB_UAS": "m", "CONFIG_USB_MDC800": "m", "CONFIG_USB_MICROTEK": "m", "CONFIG_USBIP_CORE": "m", "CONFIG_USBIP_VHCI_HCD": "m", "CONFIG_USBIP_VHCI_HC_PORTS": "8", "CONFIG_USBIP_VHCI_NR_HCS": "1", "CONFIG_USBIP_HOST": "m", "CONFIG_USBIP_VUDC": "m", "CONFIG_USBIP_DEBUG": "not set", "CONFIG_USB_CDNS_SUPPORT": "m", "CONFIG_USB_CDNS_HOST": "y", "CONFIG_USB_CDNS3": "m", "CONFIG_USB_CDNS3_GADGET": "not set", "CONFIG_USB_CDNS3_HOST": "y", "CONFIG_USB_CDNS3_PCI_WRAP": "m", "CONFIG_USB_CDNSP_PCI": "m", "CONFIG_USB_CDNSP_GADGET": "y", "CONFIG_USB_CDNSP_HOST": "y", "CONFIG_USB_MUSB_HDRC": "m", "CONFIG_USB_MUSB_HOST": "y", "CONFIG_USB_MUSB_GADGET": "not set", "CONFIG_USB_MUSB_DUAL_ROLE": "not set", "CONFIG_MUSB_PIO_ONLY": "y", "CONFIG_USB_DWC3": "m", "CONFIG_USB_DWC3_ULPI": "y", "CONFIG_USB_DWC3_HOST": "not set", "CONFIG_USB_DWC3_GADGET": "not set", "CONFIG_USB_DWC3_DUAL_ROLE": "y", "CONFIG_USB_DWC3_PCI": "m", "CONFIG_USB_DWC3_HAPS": "m", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "m", "CONFIG_USB_ISP1760_HCD": "y", "CONFIG_USB_ISP1760_HOST_ROLE": "y", "CONFIG_USB_ISP1760_GADGET_ROLE": "not set", "CONFIG_USB_ISP1760_DUAL_ROLE": "not set", "CONFIG_USB_SERIAL": "m", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "m", "CONFIG_USB_SERIAL_AIRCABLE": "m", "CONFIG_USB_SERIAL_ARK3116": "m", "CONFIG_USB_SERIAL_BELKIN": "m", "CONFIG_USB_SERIAL_CH341": "m", "CONFIG_USB_SERIAL_WHITEHEAT": "m", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "m", "CONFIG_USB_SERIAL_CP210X": "m", "CONFIG_USB_SERIAL_CYPRESS_M8": "m", "CONFIG_USB_SERIAL_EMPEG": "m", "CONFIG_USB_SERIAL_FTDI_SIO": "m", "CONFIG_USB_SERIAL_VISOR": "m", "CONFIG_USB_SERIAL_IPAQ": "m", "CONFIG_USB_SERIAL_IR": "m", "CONFIG_USB_SERIAL_EDGEPORT": "m", "CONFIG_USB_SERIAL_EDGEPORT_TI": "m", "CONFIG_USB_SERIAL_F81232": "m", "CONFIG_USB_SERIAL_F8153X": "m", "CONFIG_USB_SERIAL_GARMIN": "m", "CONFIG_USB_SERIAL_IPW": "m", "CONFIG_USB_SERIAL_IUU": "m", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "m", "CONFIG_USB_SERIAL_KEYSPAN": "m", "CONFIG_USB_SERIAL_KLSI": "m", "CONFIG_USB_SERIAL_KOBIL_SCT": "m", "CONFIG_USB_SERIAL_MCT_U232": "m", "CONFIG_USB_SERIAL_METRO": "m", "CONFIG_USB_SERIAL_MOS7720": "m", "CONFIG_USB_SERIAL_MOS7715_PARPORT": "y", "CONFIG_USB_SERIAL_MOS7840": "m", "CONFIG_USB_SERIAL_MXUPORT": "m", "CONFIG_USB_SERIAL_NAVMAN": "m", "CONFIG_USB_SERIAL_PL2303": "m", "CONFIG_USB_SERIAL_OTI6858": "m", "CONFIG_USB_SERIAL_QCAUX": "m", "CONFIG_USB_SERIAL_QUALCOMM": "m", "CONFIG_USB_SERIAL_SPCP8X5": "m", "CONFIG_USB_SERIAL_SAFE": "m", "CONFIG_USB_SERIAL_SAFE_PADDED": "y", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "m", "CONFIG_USB_SERIAL_SYMBOL": "m", "CONFIG_USB_SERIAL_TI": "m", "CONFIG_USB_SERIAL_CYBERJACK": "m", "CONFIG_USB_SERIAL_WWAN": "m", "CONFIG_USB_SERIAL_OPTION": "m", "CONFIG_USB_SERIAL_OMNINET": "m", "CONFIG_USB_SERIAL_OPTICON": "m", "CONFIG_USB_SERIAL_XSENS_MT": "m", "CONFIG_USB_SERIAL_WISHBONE": "m", "CONFIG_USB_SERIAL_SSU100": "m", "CONFIG_USB_SERIAL_QT2": "m", "CONFIG_USB_SERIAL_UPD78F0730": "m", "CONFIG_USB_SERIAL_XR": "m", "CONFIG_USB_SERIAL_DEBUG": "m", "CONFIG_USB_USS720": "m", "CONFIG_USB_EMI62": "m", "CONFIG_USB_EMI26": "m", "CONFIG_USB_ADUTUX": "m", "CONFIG_USB_SEVSEG": "m", "CONFIG_USB_LEGOTOWER": "m", "CONFIG_USB_LCD": "m", "CONFIG_USB_CYPRESS_CY7C63": "m", "CONFIG_USB_CYTHERM": "m", "CONFIG_USB_IDMOUSE": "m", "CONFIG_USB_APPLEDISPLAY": "m", "CONFIG_APPLE_MFI_FASTCHARGE": "m", "CONFIG_USB_SISUSBVGA": "m", "CONFIG_USB_LD": "m", "CONFIG_USB_TRANCEVIBRATOR": "m", "CONFIG_USB_IOWARRIOR": "m", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "m", "CONFIG_USB_ISIGHTFW": "m", "CONFIG_USB_YUREX": "m", "CONFIG_USB_EZUSB_FX2": "m", "CONFIG_USB_HUB_USB251XB": "m", "CONFIG_USB_HSIC_USB3503": "m", "CONFIG_USB_HSIC_USB4604": "m", "CONFIG_USB_LINK_LAYER_TEST": "m", "CONFIG_USB_CHAOSKEY": "m", "CONFIG_USB_ATM": "m", "CONFIG_USB_SPEEDTOUCH": "m", "CONFIG_USB_CXACRU": "m", "CONFIG_USB_UEAGLEATM": "m", "CONFIG_USB_XUSBATM": "m", "CONFIG_USB_PHY": "y", "CONFIG_NOP_USB_XCEIV": "m", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "m", "CONFIG_USB_GADGET": "y", "CONFIG_USB_GADGET_DEBUG": "not set", "CONFIG_USB_GADGET_DEBUG_FILES": "not set", "CONFIG_USB_GADGET_DEBUG_FS": "not set", "CONFIG_USB_GADGET_VBUS_DRAW": "2", "CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS": "2", "CONFIG_U_SERIAL_CONSOLE": "not set", "CONFIG_USB_GR_UDC": "not set", "CONFIG_USB_R8A66597": "not set", "CONFIG_USB_PXA27X": "not set", "CONFIG_USB_MV_UDC": "not set", "CONFIG_USB_MV_U3D": "not set", "CONFIG_USB_M66592": "not set", "CONFIG_USB_BDC_UDC": "not set", "CONFIG_USB_AMD5536UDC": "not set", "CONFIG_USB_NET2272": "not set", "CONFIG_USB_NET2280": "not set", "CONFIG_USB_GOKU": "not set", "CONFIG_USB_EG20T": "m", "CONFIG_USB_MAX3420_UDC": "not set", "CONFIG_USB_LIBCOMPOSITE": "m", "CONFIG_USB_F_ACM": "m", "CONFIG_USB_F_SS_LB": "m", "CONFIG_USB_U_SERIAL": "m", "CONFIG_USB_U_ETHER": "m", "CONFIG_USB_U_AUDIO": "m", "CONFIG_USB_F_SERIAL": "m", "CONFIG_USB_F_OBEX": "m", "CONFIG_USB_F_NCM": "m", "CONFIG_USB_F_ECM": "m", "CONFIG_USB_F_PHONET": "m", "CONFIG_USB_F_EEM": "m", "CONFIG_USB_F_SUBSET": "m", "CONFIG_USB_F_RNDIS": "m", "CONFIG_USB_F_MASS_STORAGE": "m", "CONFIG_USB_F_FS": "m", "CONFIG_USB_F_UAC1": "m", "CONFIG_USB_F_UAC2": "m", "CONFIG_USB_F_UVC": "m", "CONFIG_USB_F_MIDI": "m", "CONFIG_USB_F_HID": "m", "CONFIG_USB_F_PRINTER": "m", "CONFIG_USB_F_TCM": "m", "CONFIG_USB_CONFIGFS": "m", "CONFIG_USB_CONFIGFS_SERIAL": "y", "CONFIG_USB_CONFIGFS_ACM": "y", "CONFIG_USB_CONFIGFS_OBEX": "y", "CONFIG_USB_CONFIGFS_NCM": "y", "CONFIG_USB_CONFIGFS_ECM": "y", "CONFIG_USB_CONFIGFS_ECM_SUBSET": "y", "CONFIG_USB_CONFIGFS_RNDIS": "y", "CONFIG_USB_CONFIGFS_EEM": "y", "CONFIG_USB_CONFIGFS_PHONET": "y", "CONFIG_USB_CONFIGFS_MASS_STORAGE": "y", "CONFIG_USB_CONFIGFS_F_LB_SS": "y", "CONFIG_USB_CONFIGFS_F_FS": "y", "CONFIG_USB_CONFIGFS_F_UAC1": "y", "CONFIG_USB_CONFIGFS_F_UAC1_LEGACY": "not set", "CONFIG_USB_CONFIGFS_F_UAC2": "y", "CONFIG_USB_CONFIGFS_F_MIDI": "y", "CONFIG_USB_CONFIGFS_F_HID": "y", "CONFIG_USB_CONFIGFS_F_UVC": "y", "CONFIG_USB_CONFIGFS_F_PRINTER": "y", "CONFIG_USB_CONFIGFS_F_TCM": "y", "CONFIG_USB_ZERO": "m", "CONFIG_USB_ZERO_HNPTEST": "y", "CONFIG_USB_AUDIO": "m", "CONFIG_GADGET_UAC1": "y", "CONFIG_GADGET_UAC1_LEGACY": "not set", "CONFIG_USB_ETH": "m", "CONFIG_USB_ETH_RNDIS": "y", "CONFIG_USB_ETH_EEM": "y", "CONFIG_USB_G_NCM": "m", "CONFIG_USB_GADGETFS": "m", "CONFIG_USB_FUNCTIONFS": "m", "CONFIG_USB_FUNCTIONFS_ETH": "y", "CONFIG_USB_FUNCTIONFS_RNDIS": "y", "CONFIG_USB_FUNCTIONFS_GENERIC": "y", "CONFIG_USB_MASS_STORAGE": "m", "CONFIG_USB_GADGET_TARGET": "m", "CONFIG_USB_G_SERIAL": "m", "CONFIG_USB_MIDI_GADGET": "m", "CONFIG_USB_G_PRINTER": "m", "CONFIG_USB_CDC_COMPOSITE": "m", "CONFIG_USB_G_NOKIA": "m", "CONFIG_USB_G_ACM_MS": "m", "CONFIG_USB_G_MULTI": "m", "CONFIG_USB_G_MULTI_RNDIS": "y", "CONFIG_USB_G_MULTI_CDC": "y", "CONFIG_USB_G_HID": "m", "CONFIG_USB_G_DBGP": "m", "CONFIG_USB_G_DBGP_PRINTK": "y", "CONFIG_USB_G_DBGP_SERIAL": "not set", "CONFIG_USB_G_WEBCAM": "m", "CONFIG_USB_RAW_GADGET": "m", "CONFIG_TYPEC": "m", "CONFIG_TYPEC_TCPM": "m", "CONFIG_TYPEC_TCPCI": "m", "CONFIG_TYPEC_RT1711H": "m", "CONFIG_TYPEC_TCPCI_MAXIM": "m", "CONFIG_TYPEC_FUSB302": "m", "CONFIG_TYPEC_WCOVE": "m", "CONFIG_TYPEC_UCSI": "m", "CONFIG_UCSI_CCG": "m", "CONFIG_UCSI_ACPI": "m", "CONFIG_UCSI_STM32G0": "m", "CONFIG_TYPEC_TPS6598X": "m", "CONFIG_TYPEC_ANX7411": "m", "CONFIG_TYPEC_RT1719": "m", "CONFIG_TYPEC_HD3SS3220": "m", "CONFIG_TYPEC_STUSB160X": "m", "CONFIG_TYPEC_WUSB3801": "m", "CONFIG_TYPEC_MUX_FSA4480": "m", "CONFIG_TYPEC_MUX_GPIO_SBU": "m", "CONFIG_TYPEC_MUX_PI3USB30532": "m", "CONFIG_TYPEC_MUX_INTEL_PMC": "m", "CONFIG_TYPEC_DP_ALTMODE": "m", "CONFIG_TYPEC_NVIDIA_ALTMODE": "m", "CONFIG_USB_ROLE_SWITCH": "m", "CONFIG_USB_ROLES_INTEL_XHCI": "m", "CONFIG_MMC": "m", "CONFIG_MMC_BLOCK": "m", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "m", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_CRYPTO": "y", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "m", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "m", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "m", "CONFIG_MMC_SDHCI_PLTFM": "m", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "m", "CONFIG_MMC_ALCOR": "m", "CONFIG_MMC_TIFM_SD": "m", "CONFIG_MMC_SPI": "m", "CONFIG_MMC_CB710": "m", "CONFIG_MMC_VIA_SDMMC": "m", "CONFIG_MMC_VUB300": "m", "CONFIG_MMC_USHC": "m", "CONFIG_MMC_USDHI6ROL0": "m", "CONFIG_MMC_REALTEK_PCI": "m", "CONFIG_MMC_REALTEK_USB": "m", "CONFIG_MMC_CQHCI": "m", "CONFIG_MMC_HSQ": "m", "CONFIG_MMC_TOSHIBA_PCI": "m", "CONFIG_MMC_MTK": "m", "CONFIG_MMC_SDHCI_XENON": "m", "CONFIG_SCSI_UFSHCD": "m", "CONFIG_SCSI_UFS_BSG": "y", "CONFIG_SCSI_UFS_CRYPTO": "y", "CONFIG_SCSI_UFS_HPB": "y", "CONFIG_SCSI_UFS_FAULT_INJECTION": "y", "CONFIG_SCSI_UFS_HWMON": "y", "CONFIG_SCSI_UFSHCD_PCI": "m", "CONFIG_SCSI_UFS_DWC_TC_PCI": "not set", "CONFIG_SCSI_UFSHCD_PLATFORM": "m", "CONFIG_SCSI_UFS_CDNS_PLATFORM": "m", "CONFIG_MEMSTICK": "m", "CONFIG_MEMSTICK_DEBUG": "not set", "CONFIG_MEMSTICK_UNSAFE_RESUME": "not set", "CONFIG_MSPRO_BLOCK": "m", "CONFIG_MS_BLOCK": "m", "CONFIG_MEMSTICK_TIFM_MS": "m", "CONFIG_MEMSTICK_JMICRON_38X": "m", "CONFIG_MEMSTICK_R592": "m", "CONFIG_MEMSTICK_REALTEK_PCI": "m", "CONFIG_MEMSTICK_REALTEK_USB": "m", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "m", "CONFIG_LEDS_CLASS_MULTICOLOR": "m", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "y", "CONFIG_LEDS_APU": "m", "CONFIG_LEDS_LM3530": "m", "CONFIG_LEDS_LM3532": "m", "CONFIG_LEDS_LM3533": "m", "CONFIG_LEDS_LM3642": "m", "CONFIG_LEDS_PCA9532": "m", "CONFIG_LEDS_PCA9532_GPIO": "y", "CONFIG_LEDS_GPIO": "m", "CONFIG_LEDS_LP3944": "m", "CONFIG_LEDS_LP3952": "m", "CONFIG_LEDS_LP50XX": "m", "CONFIG_LEDS_PCA955X": "m", "CONFIG_LEDS_PCA955X_GPIO": "y", "CONFIG_LEDS_PCA963X": "m", "CONFIG_LEDS_DAC124S085": "not set", "CONFIG_LEDS_PWM": "m", "CONFIG_LEDS_REGULATOR": "m", "CONFIG_LEDS_BD2606MVV": "m", "CONFIG_LEDS_BD2802": "m", "CONFIG_LEDS_INTEL_SS4200": "m", "CONFIG_LEDS_LT3593": "m", "CONFIG_LEDS_TCA6507": "m", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "m", "CONFIG_LEDS_IS31FL319X": "m", "CONFIG_LEDS_BLINKM": "m", "CONFIG_LEDS_MLXCPLD": "m", "CONFIG_LEDS_MLXREG": "m", "CONFIG_LEDS_USER": "m", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TI_LMU_COMMON": "m", "CONFIG_LEDS_LM36274": "m", "CONFIG_LEDS_AS3645A": "not set", "CONFIG_LEDS_LM3601X": "m", "CONFIG_LEDS_RT8515": "m", "CONFIG_LEDS_SGM3140": "m", "CONFIG_LEDS_PWM_MULTICOLOR": "m", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "m", "CONFIG_LEDS_TRIGGER_ONESHOT": "m", "CONFIG_LEDS_TRIGGER_DISK": "y", "CONFIG_LEDS_TRIGGER_MTD": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "m", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "m", "CONFIG_LEDS_TRIGGER_CPU": "y", "CONFIG_LEDS_TRIGGER_ACTIVITY": "m", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "m", "CONFIG_LEDS_TRIGGER_TRANSIENT": "m", "CONFIG_LEDS_TRIGGER_CAMERA": "m", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "m", "CONFIG_LEDS_TRIGGER_PATTERN": "m", "CONFIG_LEDS_TRIGGER_AUDIO": "m", "CONFIG_LEDS_TRIGGER_TTY": "m", "CONFIG_LEDS_SIEMENS_SIMATIC_IPC": "m", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "m", "CONFIG_INFINIBAND_USER_MAD": "m", "CONFIG_INFINIBAND_USER_ACCESS": "m", "CONFIG_INFINIBAND_USER_MEM": "y", "CONFIG_INFINIBAND_ON_DEMAND_PAGING": "y", "CONFIG_INFINIBAND_ADDR_TRANS": "y", "CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS": "y", "CONFIG_INFINIBAND_VIRT_DMA": "y", "CONFIG_INFINIBAND_BNXT_RE": "m", "CONFIG_INFINIBAND_CXGB4": "m", "CONFIG_INFINIBAND_EFA": "m", "CONFIG_INFINIBAND_ERDMA": "m", "CONFIG_INFINIBAND_HFI1": "m", "CONFIG_HFI1_DEBUG_SDMA_ORDER": "not set", "CONFIG_SDMA_VERBOSITY": "not set", "CONFIG_INFINIBAND_IRDMA": "m", "CONFIG_MANA_INFINIBAND": "m", "CONFIG_MLX4_INFINIBAND": "m", "CONFIG_MLX5_INFINIBAND": "m", "CONFIG_INFINIBAND_MTHCA": "m", "CONFIG_INFINIBAND_MTHCA_DEBUG": "y", "CONFIG_INFINIBAND_OCRDMA": "m", "CONFIG_INFINIBAND_QEDR": "m", "CONFIG_INFINIBAND_QIB": "m", "CONFIG_INFINIBAND_QIB_DCA": "y", "CONFIG_INFINIBAND_USNIC": "m", "CONFIG_INFINIBAND_VMWARE_PVRDMA": "m", "CONFIG_INFINIBAND_RDMAVT": "m", "CONFIG_RDMA_RXE": "m", "CONFIG_RDMA_SIW": "m", "CONFIG_INFINIBAND_IPOIB": "m", "CONFIG_INFINIBAND_IPOIB_CM": "y", "CONFIG_INFINIBAND_IPOIB_DEBUG": "y", "CONFIG_INFINIBAND_IPOIB_DEBUG_DATA": "not set", "CONFIG_INFINIBAND_SRP": "m", "CONFIG_INFINIBAND_SRPT": "m", "CONFIG_INFINIBAND_ISER": "m", "CONFIG_INFINIBAND_ISERT": "m", "CONFIG_INFINIBAND_RTRS": "m", "CONFIG_INFINIBAND_RTRS_CLIENT": "m", "CONFIG_INFINIBAND_RTRS_SERVER": "m", "CONFIG_INFINIBAND_OPA_VNIC": "m", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_EDAC": "y", "CONFIG_EDAC_LEGACY_SYSFS": "y", "CONFIG_EDAC_DEBUG": "not set", "CONFIG_EDAC_DECODE_MCE": "m", "CONFIG_EDAC_GHES": "y", "CONFIG_EDAC_AMD64": "m", "CONFIG_EDAC_E752X": "m", "CONFIG_EDAC_I82975X": "m", "CONFIG_EDAC_I3000": "m", "CONFIG_EDAC_I3200": "m", "CONFIG_EDAC_IE31200": "m", "CONFIG_EDAC_X38": "m", "CONFIG_EDAC_I5400": "m", "CONFIG_EDAC_I7CORE": "m", "CONFIG_EDAC_I5100": "m", "CONFIG_EDAC_I7300": "m", "CONFIG_EDAC_SBRIDGE": "m", "CONFIG_EDAC_SKX": "m", "CONFIG_EDAC_I10NM": "m", "CONFIG_EDAC_PND2": "m", "CONFIG_EDAC_IGEN6": "m", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "m", "CONFIG_RTC_DRV_ABEOZ9": "m", "CONFIG_RTC_DRV_ABX80X": "m", "CONFIG_RTC_DRV_DS1307": "m", "CONFIG_RTC_DRV_DS1307_CENTURY": "y", "CONFIG_RTC_DRV_DS1374": "m", "CONFIG_RTC_DRV_DS1374_WDT": "y", "CONFIG_RTC_DRV_DS1672": "m", "CONFIG_RTC_DRV_MAX6900": "m", "CONFIG_RTC_DRV_MAX8907": "m", "CONFIG_RTC_DRV_RS5C372": "m", "CONFIG_RTC_DRV_ISL1208": "m", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "m", "CONFIG_RTC_DRV_PCF8523": "m", "CONFIG_RTC_DRV_PCF85063": "m", "CONFIG_RTC_DRV_PCF85363": "m", "CONFIG_RTC_DRV_PCF8563": "m", "CONFIG_RTC_DRV_PCF8583": "m", "CONFIG_RTC_DRV_M41T80": "m", "CONFIG_RTC_DRV_M41T80_WDT": "y", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "m", "CONFIG_RTC_DRV_FM3130": "m", "CONFIG_RTC_DRV_RX8010": "m", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "m", "CONFIG_RTC_DRV_RV3032": "m", "CONFIG_RTC_DRV_RV8803": "m", "CONFIG_RTC_DRV_SD3078": "m", "CONFIG_RTC_DRV_M41T93": "not set", "CONFIG_RTC_DRV_M41T94": "not set", "CONFIG_RTC_DRV_DS1302": "not set", "CONFIG_RTC_DRV_DS1305": "not set", "CONFIG_RTC_DRV_DS1343": "not set", "CONFIG_RTC_DRV_DS1347": "not set", "CONFIG_RTC_DRV_DS1390": "not set", "CONFIG_RTC_DRV_MAX6916": "not set", "CONFIG_RTC_DRV_R9701": "not set", "CONFIG_RTC_DRV_RX4581": "not set", "CONFIG_RTC_DRV_RS5C348": "not set", "CONFIG_RTC_DRV_MAX6902": "not set", "CONFIG_RTC_DRV_PCF2123": "not set", "CONFIG_RTC_DRV_MCP795": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "m", "CONFIG_RTC_DRV_DS3232_HWMON": "y", "CONFIG_RTC_DRV_PCF2127": "m", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_DA9063": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_BQ4802": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_CROS_EC": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_HID_SENSOR_TIME": "not set", "CONFIG_RTC_DRV_GOLDFISH": "m", "CONFIG_RTC_DRV_WILCO_EC": "m", "CONFIG_DMADEVICES": "y", "CONFIG_DMADEVICES_DEBUG": "not set", "CONFIG_DMA_ENGINE": "y", "CONFIG_DMA_VIRTUAL_CHANNELS": "y", "CONFIG_DMA_ACPI": "y", "CONFIG_ALTERA_MSGDMA": "m", "CONFIG_INTEL_IDMA64": "m", "CONFIG_INTEL_IDXD_BUS": "m", "CONFIG_INTEL_IDXD": "m", "CONFIG_INTEL_IDXD_COMPAT": "not set", "CONFIG_INTEL_IDXD_SVM": "y", "CONFIG_INTEL_IDXD_PERFMON": "y", "CONFIG_INTEL_IOATDMA": "m", "CONFIG_PLX_DMA": "m", "CONFIG_XILINX_XDMA": "m", "CONFIG_AMD_PTDMA": "m", "CONFIG_QCOM_HIDMA_MGMT": "not set", "CONFIG_QCOM_HIDMA": "not set", "CONFIG_DW_DMAC_CORE": "y", "CONFIG_DW_DMAC": "m", "CONFIG_DW_DMAC_PCI": "y", "CONFIG_DW_EDMA": "m", "CONFIG_DW_EDMA_PCIE": "m", "CONFIG_HSU_DMA": "y", "CONFIG_SF_PDMA": "m", "CONFIG_TI_K3_PSIL": "not set", "CONFIG_INTEL_LDMA": "y", "CONFIG_ASYNC_TX_DMA": "y", "CONFIG_DMATEST": "not set", "CONFIG_DMA_ENGINE_RAID": "y", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "y", "CONFIG_UDMABUF": "y", "CONFIG_DMABUF_MOVE_NOTIFY": "y", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "y", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_DMABUF_HEAPS_SYSTEM": "y", "CONFIG_DMABUF_HEAPS_CMA": "not set", "CONFIG_DCA": "m", "CONFIG_UIO": "m", "CONFIG_UIO_CIF": "m", "CONFIG_UIO_PDRV_GENIRQ": "m", "CONFIG_UIO_DMEM_GENIRQ": "m", "CONFIG_UIO_AEC": "m", "CONFIG_UIO_SERCOS3": "m", "CONFIG_UIO_PCI_GENERIC": "m", "CONFIG_UIO_NETX": "m", "CONFIG_UIO_PRUSS": "not set", "CONFIG_UIO_MF624": "m", "CONFIG_UIO_HV_GENERIC": "m", "CONFIG_UIO_DFL": "m", "CONFIG_VFIO": "m", "CONFIG_VFIO_GROUP": "y", "CONFIG_VFIO_CONTAINER": "y", "CONFIG_VFIO_IOMMU_TYPE1": "m", "CONFIG_VFIO_NOIOMMU": "not set", "CONFIG_VFIO_VIRQFD": "y", "CONFIG_VFIO_PCI_CORE": "m", "CONFIG_VFIO_PCI_MMAP": "y", "CONFIG_VFIO_PCI_INTX": "y", "CONFIG_VFIO_PCI": "m", "CONFIG_VFIO_PCI_VGA": "y", "CONFIG_VFIO_PCI_IGD": "y", "CONFIG_MLX5_VFIO_PCI": "m", "CONFIG_PDS_VFIO_PCI": "m", "CONFIG_VFIO_MDEV": "m", "CONFIG_IRQ_BYPASS_MANAGER": "m", "CONFIG_VIRT_DRIVERS": "y", "CONFIG_VMGENID": "y", "CONFIG_VBOXGUEST": "m", "CONFIG_NITRO_ENCLAVES": "m", "CONFIG_ACRN_HSM": "m", "CONFIG_TSM_REPORTS": "m", "CONFIG_EFI_SECRET": "m", "CONFIG_SEV_GUEST": "m", "CONFIG_TDX_GUEST_DRIVER": "m", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_VDPA": "m", "CONFIG_VIRTIO_PMEM": "m", "CONFIG_VIRTIO_BALLOON": "m", "CONFIG_VIRTIO_MEM": "m", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "m", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "y", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "m", "CONFIG_VDPA": "m", "CONFIG_VDPA_SIM": "m", "CONFIG_VDPA_SIM_NET": "m", "CONFIG_VDPA_SIM_BLOCK": "m", "CONFIG_VDPA_USER": "not set", "CONFIG_IFCVF": "m", "CONFIG_MLX5_VDPA": "y", "CONFIG_MLX5_VDPA_NET": "m", "CONFIG_MLX5_VDPA_STEERING_DEBUG": "not set", "CONFIG_VP_VDPA": "m", "CONFIG_ALIBABA_ENI_VDPA": "not set", "CONFIG_SNET_VDPA": "not set", "CONFIG_VHOST_IOTLB": "m", "CONFIG_VHOST_RING": "m", "CONFIG_VHOST_TASK": "y", "CONFIG_VHOST": "m", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "m", "CONFIG_VHOST_SCSI": "m", "CONFIG_VHOST_VSOCK": "m", "CONFIG_VHOST_VDPA": "m", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_HYPERV": "m", "CONFIG_HYPERV_VTL_MODE": "not set", "CONFIG_HYPERV_TIMER": "y", "CONFIG_HYPERV_UTILS": "m", "CONFIG_HYPERV_BALLOON": "m", "CONFIG_XEN_BALLOON": "y", "CONFIG_XEN_BALLOON_MEMORY_HOTPLUG": "y", "CONFIG_XEN_MEMORY_HOTPLUG_LIMIT": "512", "CONFIG_XEN_SCRUB_PAGES_DEFAULT": "y", "CONFIG_XEN_DEV_EVTCHN": "m", "CONFIG_XEN_BACKEND": "y", "CONFIG_XENFS": "m", "CONFIG_XEN_COMPAT_XENFS": "y", "CONFIG_XEN_SYS_HYPERVISOR": "y", "CONFIG_XEN_XENBUS_FRONTEND": "y", "CONFIG_XEN_GNTDEV": "m", "CONFIG_XEN_GNTDEV_DMABUF": "y", "CONFIG_XEN_GRANT_DEV_ALLOC": "m", "CONFIG_XEN_GRANT_DMA_ALLOC": "y", "CONFIG_SWIOTLB_XEN": "y", "CONFIG_XEN_PCI_STUB": "y", "CONFIG_XEN_PCIDEV_BACKEND": "m", "CONFIG_XEN_PVCALLS_FRONTEND": "not set", "CONFIG_XEN_PVCALLS_BACKEND": "y", "CONFIG_XEN_SCSI_BACKEND": "m", "CONFIG_XEN_PRIVCMD": "m", "CONFIG_XEN_ACPI_PROCESSOR": "m", "CONFIG_XEN_MCE_LOG": "y", "CONFIG_XEN_HAVE_PVMMU": "y", "CONFIG_XEN_EFI": "y", "CONFIG_XEN_AUTO_XLATE": "y", "CONFIG_XEN_ACPI": "y", "CONFIG_XEN_SYMS": "y", "CONFIG_XEN_HAVE_VPMU": "y", "CONFIG_XEN_FRONT_PGDIR_SHBUF": "m", "CONFIG_XEN_UNPOPULATED_ALLOC": "y", "CONFIG_XEN_GRANT_DMA_OPS": "y", "CONFIG_XEN_VIRTIO": "y", "CONFIG_XEN_VIRTIO_FORCE_GRANT": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "y", "CONFIG_PRISM2_USB": "m", "CONFIG_RTL8192U": "m", "CONFIG_RTLLIB": "m", "CONFIG_RTLLIB_CRYPTO_CCMP": "m", "CONFIG_RTLLIB_CRYPTO_TKIP": "m", "CONFIG_RTLLIB_CRYPTO_WEP": "m", "CONFIG_RTL8192E": "m", "CONFIG_RTL8723BS": "m", "CONFIG_R8712U": "m", "CONFIG_RTS5208": "m", "CONFIG_VT6655": "m", "CONFIG_VT6656": "m", "CONFIG_ADIS16203": "not set", "CONFIG_ADIS16240": "not set", "CONFIG_AD7816": "not set", "CONFIG_ADT7316": "not set", "CONFIG_AD9832": "not set", "CONFIG_AD9834": "not set", "CONFIG_AD5933": "not set", "CONFIG_AD2S1210": "not set", "CONFIG_FB_SM750": "not set", "CONFIG_STAGING_MEDIA": "y", "CONFIG_INTEL_ATOMISP": "y", "CONFIG_VIDEO_ATOMISP": "m", "CONFIG_VIDEO_ATOMISP_ISP2401": "y", "CONFIG_VIDEO_ATOMISP_OV2722": "m", "CONFIG_VIDEO_ATOMISP_GC2235": "m", "CONFIG_VIDEO_ATOMISP_MSRLIST_HELPER": "m", "CONFIG_VIDEO_ATOMISP_MT9M114": "m", "CONFIG_VIDEO_ATOMISP_GC0310": "m", "CONFIG_VIDEO_ATOMISP_OV2680": "m", "CONFIG_VIDEO_ATOMISP_OV5693": "m", "CONFIG_VIDEO_ATOMISP_LM3554": "m", "CONFIG_DVB_AV7110_IR": "y", "CONFIG_DVB_AV7110": "m", "CONFIG_DVB_AV7110_OSD": "y", "CONFIG_DVB_BUDGET_PATCH": "m", "CONFIG_DVB_SP8870": "m", "CONFIG_VIDEO_IPU3_IMGU": "m", "CONFIG_STAGING_MEDIA_DEPRECATED": "y", "CONFIG_VIDEO_ATMEL_ISC_BASE": "not set", "CONFIG_LTE_GDM724X": "m", "CONFIG_FB_TFT": "not set", "CONFIG_KS7010": "m", "CONFIG_PI433": "not set", "CONFIG_FIELDBUS_DEV": "not set", "CONFIG_QLGE": "m", "CONFIG_VME_BUS": "not set", "CONFIG_CHROME_PLATFORMS": "y", "CONFIG_CHROMEOS_ACPI": "m", "CONFIG_CHROMEOS_LAPTOP": "m", "CONFIG_CHROMEOS_PSTORE": "m", "CONFIG_CHROMEOS_TBMC": "m", "CONFIG_CROS_EC": "m", "CONFIG_CROS_EC_I2C": "m", "CONFIG_CROS_EC_ISHTP": "m", "CONFIG_CROS_EC_SPI": "m", "CONFIG_CROS_EC_UART": "m", "CONFIG_CROS_EC_LPC": "m", "CONFIG_CROS_EC_PROTO": "y", "CONFIG_CROS_KBD_LED_BACKLIGHT": "m", "CONFIG_CROS_EC_CHARDEV": "m", "CONFIG_CROS_EC_LIGHTBAR": "m", "CONFIG_CROS_EC_DEBUGFS": "m", "CONFIG_CROS_EC_SENSORHUB": "m", "CONFIG_CROS_EC_SYSFS": "m", "CONFIG_CROS_EC_TYPEC": "m", "CONFIG_CROS_HPS_I2C": "m", "CONFIG_CROS_USBPD_LOGGER": "m", "CONFIG_CROS_USBPD_NOTIFY": "m", "CONFIG_CHROMEOS_PRIVACY_SCREEN": "m", "CONFIG_CROS_TYPEC_SWITCH": "m", "CONFIG_WILCO_EC": "m", "CONFIG_WILCO_EC_DEBUGFS": "not set", "CONFIG_WILCO_EC_EVENTS": "m", "CONFIG_WILCO_EC_TELEMETRY": "m", "CONFIG_MELLANOX_PLATFORM": "y", "CONFIG_MLXREG_HOTPLUG": "m", "CONFIG_MLXREG_IO": "m", "CONFIG_MLXREG_LC": "m", "CONFIG_NVSW_SN2201": "m", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE3_WMI": "m", "CONFIG_SURFACE_3_POWER_OPREGION": "m", "CONFIG_SURFACE_ACPI_NOTIFY": "m", "CONFIG_SURFACE_AGGREGATOR_CDEV": "m", "CONFIG_SURFACE_AGGREGATOR_HUB": "m", "CONFIG_SURFACE_AGGREGATOR_REGISTRY": "m", "CONFIG_SURFACE_AGGREGATOR_TABLET_SWITCH": "m", "CONFIG_SURFACE_DTX": "m", "CONFIG_SURFACE_GPE": "m", "CONFIG_SURFACE_HOTPLUG": "m", "CONFIG_SURFACE_PLATFORM_PROFILE": "m", "CONFIG_SURFACE_PRO3_BUTTON": "m", "CONFIG_SURFACE_AGGREGATOR": "m", "CONFIG_SURFACE_AGGREGATOR_BUS": "y", "CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "m", "CONFIG_UV_SYSFS": "m", "CONFIG_MXM_WMI": "m", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "m", "CONFIG_XIAOMI_WMI": "m", "CONFIG_GIGABYTE_WMI": "m", "CONFIG_YOGABOOK_WMI": "m", "CONFIG_ACERHDF": "m", "CONFIG_ACER_WIRELESS": "m", "CONFIG_ACER_WMI": "m", "CONFIG_AMD_PMF": "m", "CONFIG_AMD_PMC": "m", "CONFIG_AMD_HSMP": "m", "CONFIG_ADV_SWBUTTON": "m", "CONFIG_APPLE_GMUX": "m", "CONFIG_ASUS_LAPTOP": "m", "CONFIG_ASUS_WIRELESS": "m", "CONFIG_ASUS_WMI": "m", "CONFIG_ASUS_NB_WMI": "m", "CONFIG_ASUS_TF103C_DOCK": "m", "CONFIG_MERAKI_MX100": "m", "CONFIG_EEEPC_LAPTOP": "m", "CONFIG_EEEPC_WMI": "m", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "y", "CONFIG_ALIENWARE_WMI": "m", "CONFIG_DCDBAS": "m", "CONFIG_DELL_LAPTOP": "m", "CONFIG_DELL_RBU": "m", "CONFIG_DELL_RBTN": "m", "CONFIG_DELL_SMBIOS": "m", "CONFIG_DELL_SMBIOS_WMI": "y", "CONFIG_DELL_SMBIOS_SMM": "y", "CONFIG_DELL_SMO8800": "m", "CONFIG_DELL_WMI": "m", "CONFIG_DELL_WMI_PRIVACY": "y", "CONFIG_DELL_WMI_AIO": "m", "CONFIG_DELL_WMI_DESCRIPTOR": "m", "CONFIG_DELL_WMI_DDV": "m", "CONFIG_DELL_WMI_LED": "m", "CONFIG_DELL_WMI_SYSMAN": "m", "CONFIG_AMILO_RFKILL": "m", "CONFIG_FUJITSU_LAPTOP": "m", "CONFIG_FUJITSU_TABLET": "m", "CONFIG_GPD_POCKET_FAN": "m", "CONFIG_X86_PLATFORM_DRIVERS_HP": "y", "CONFIG_HP_ACCEL": "m", "CONFIG_HP_WMI": "m", "CONFIG_WIRELESS_HOTKEY": "m", "CONFIG_IBM_RTL": "m", "CONFIG_IDEAPAD_LAPTOP": "m", "CONFIG_LENOVO_YMC": "m", "CONFIG_SENSORS_HDAPS": "m", "CONFIG_THINKPAD_ACPI": "m", "CONFIG_THINKPAD_ACPI_ALSA_SUPPORT": "y", "CONFIG_THINKPAD_ACPI_DEBUGFACILITIES": "not set", "CONFIG_THINKPAD_ACPI_DEBUG": "not set", "CONFIG_THINKPAD_ACPI_UNSAFE_LEDS": "not set", "CONFIG_THINKPAD_ACPI_VIDEO": "y", "CONFIG_THINKPAD_ACPI_HOTKEY_POLL": "y", "CONFIG_THINKPAD_LMI": "m", "CONFIG_INTEL_ATOMISP2_PDX86": "y", "CONFIG_INTEL_ATOMISP2_LED": "m", "CONFIG_INTEL_IFS": "m", "CONFIG_INTEL_SAR_INT1092": "m", "CONFIG_INTEL_SKL_INT3472": "m", "CONFIG_INTEL_PMC_CORE": "m", "CONFIG_INTEL_PMT_CLASS": "m", "CONFIG_INTEL_PMT_TELEMETRY": "m", "CONFIG_INTEL_PMT_CRASHLOG": "m", "CONFIG_INTEL_SPEED_SELECT_TPMI": "m", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "m", "CONFIG_INTEL_TELEMETRY": "m", "CONFIG_INTEL_WMI": "y", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "m", "CONFIG_INTEL_WMI_THUNDERBOLT": "m", "CONFIG_INTEL_UNCORE_FREQ_CONTROL_TPMI": "m", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "m", "CONFIG_INTEL_HID_EVENT": "m", "CONFIG_INTEL_VBTN": "m", "CONFIG_INTEL_INT0002_VGPIO": "m", "CONFIG_INTEL_OAKTRAIL": "m", "CONFIG_INTEL_BXTWC_PMIC_TMU": "m", "CONFIG_INTEL_CHTWC_INT33FE": "m", "CONFIG_INTEL_ISHTP_ECLITE": "m", "CONFIG_INTEL_MRFLD_PWRBTN": "m", "CONFIG_INTEL_PUNIT_IPC": "m", "CONFIG_INTEL_RST": "m", "CONFIG_INTEL_SDSI": "m", "CONFIG_INTEL_SMARTCONNECT": "m", "CONFIG_INTEL_TPMI": "m", "CONFIG_INTEL_TURBO_MAX_3": "y", "CONFIG_INTEL_VSEC": "m", "CONFIG_MSI_EC": "m", "CONFIG_MSI_LAPTOP": "m", "CONFIG_MSI_WMI": "m", "CONFIG_PCENGINES_APU2": "m", "CONFIG_BARCO_P50_GPIO": "m", "CONFIG_SAMSUNG_LAPTOP": "m", "CONFIG_SAMSUNG_Q10": "m", "CONFIG_ACPI_TOSHIBA": "m", "CONFIG_TOSHIBA_BT_RFKILL": "m", "CONFIG_TOSHIBA_HAPS": "m", "CONFIG_TOSHIBA_WMI": "m", "CONFIG_ACPI_CMPC": "m", "CONFIG_COMPAL_LAPTOP": "m", "CONFIG_LG_LAPTOP": "m", "CONFIG_PANASONIC_LAPTOP": "m", "CONFIG_SONY_LAPTOP": "m", "CONFIG_SONYPI_COMPAT": "y", "CONFIG_SYSTEM76_ACPI": "m", "CONFIG_TOPSTAR_LAPTOP": "m", "CONFIG_SERIAL_MULTI_INSTANTIATE": "m", "CONFIG_MLX_PLATFORM": "m", "CONFIG_TOUCHSCREEN_DMI": "y", "CONFIG_X86_ANDROID_TABLETS": "m", "CONFIG_FW_ATTR_CLASS": "m", "CONFIG_INTEL_IPS": "m", "CONFIG_INTEL_SCU_IPC": "y", "CONFIG_INTEL_SCU": "y", "CONFIG_INTEL_SCU_PCI": "y", "CONFIG_INTEL_SCU_PLATFORM": "m", "CONFIG_INTEL_SCU_IPC_UTIL": "m", "CONFIG_SIEMENS_SIMATIC_IPC": "m", "CONFIG_WINMATE_FM07_KEYS": "m", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_LMK04832": "m", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "m", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_TPS68470": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "m", "CONFIG_COMMON_CLK_NXP": "not set", "CONFIG_COMMON_CLK_PWM": "not set", "CONFIG_COMMON_CLK_PXA": "not set", "CONFIG_COMMON_CLK_STM32MP135": "not set", "CONFIG_COMMON_CLK_STM32MP157": "not set", "CONFIG_COMMON_CLK_STM32F": "not set", "CONFIG_COMMON_CLK_STM32H7": "not set", "CONFIG_COMMON_CLK_MMP2": "not set", "CONFIG_CLK_IMX1": "not set", "CONFIG_CLK_IMX25": "not set", "CONFIG_CLK_IMX27": "not set", "CONFIG_CLK_IMX31": "not set", "CONFIG_CLK_IMX35": "not set", "CONFIG_CLK_IMX5": "not set", "CONFIG_CLK_IMX6Q": "not set", "CONFIG_CLK_IMX6SL": "not set", "CONFIG_CLK_IMX6SLL": "not set", "CONFIG_CLK_IMX6SX": "not set", "CONFIG_CLK_IMX6UL": "not set", "CONFIG_CLK_IMX7D": "not set", "CONFIG_CLK_IMX7ULP": "not set", "CONFIG_CLK_VF610": "not set", "CONFIG_COMMON_CLK_PIC32": "not set", "CONFIG_CLK_INTEL_SOCFPGA": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "y", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MTK_CPUX_TIMER": "not set", "CONFIG_SH_TIMER_CMT": "not set", "CONFIG_SH_TIMER_MTU2": "not set", "CONFIG_SH_TIMER_TMU": "not set", "CONFIG_EM_TIMER_STI": "not set", "CONFIG_GXP_TIMER": "not set", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMUFD_DRIVER": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_IO_PGTABLE": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "not set", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "y", "CONFIG_IOMMU_DMA": "y", "CONFIG_IOMMU_SVA": "y", "CONFIG_AMD_IOMMU": "y", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "y", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_HYPERV_IOMMU": "y", "CONFIG_VIRTIO_IOMMU": "m", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG": "m", "CONFIG_RPMSG_CHAR": "m", "CONFIG_RPMSG_CTRL": "m", "CONFIG_RPMSG_NS": "m", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "m", "CONFIG_SOUNDWIRE": "m", "CONFIG_SOUNDWIRE_AMD": "m", "CONFIG_SOUNDWIRE_CADENCE": "m", "CONFIG_SOUNDWIRE_INTEL": "m", "CONFIG_SOUNDWIRE_QCOM": "not set", "CONFIG_SOUNDWIRE_GENERIC_ALLOCATION": "m", "CONFIG_IMX8M_BLK_CTRL": "not set", "CONFIG_IMX9_BLK_CTRL": "not set", "CONFIG_WPCM450_SOC": "m", "CONFIG_QCOM_QMI_HELPERS": "m", "CONFIG_SUNXI_SRAM": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "y", "CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND": "m", "CONFIG_DEVFREQ_GOV_PERFORMANCE": "m", "CONFIG_DEVFREQ_GOV_POWERSAVE": "m", "CONFIG_DEVFREQ_GOV_USERSPACE": "m", "CONFIG_DEVFREQ_GOV_PASSIVE": "m", "CONFIG_PM_DEVFREQ_EVENT": "y", "CONFIG_EXTCON": "y", "CONFIG_EXTCON_ADC_JACK": "not set", "CONFIG_EXTCON_AXP288": "m", "CONFIG_EXTCON_FSA9480": "m", "CONFIG_EXTCON_GPIO": "m", "CONFIG_EXTCON_INTEL_INT3496": "m", "CONFIG_EXTCON_INTEL_MRFLD": "m", "CONFIG_EXTCON_MAX3355": "m", "CONFIG_EXTCON_PTN5150": "m", "CONFIG_EXTCON_RT8973A": "not set", "CONFIG_EXTCON_SM5502": "m", "CONFIG_EXTCON_USB_GPIO": "not set", "CONFIG_EXTCON_USBC_CROS_EC": "m", "CONFIG_EXTCON_USBC_TUSB320": "m", "CONFIG_MEMORY": "y", "CONFIG_FPGA_DFL_EMIF": "m", "CONFIG_IIO": "m", "CONFIG_IIO_BUFFER": "y", "CONFIG_IIO_BUFFER_CB": "m", "CONFIG_IIO_BUFFER_DMA": "m", "CONFIG_IIO_BUFFER_DMAENGINE": "m", "CONFIG_IIO_BUFFER_HW_CONSUMER": "not set", "CONFIG_IIO_KFIFO_BUF": "m", "CONFIG_IIO_TRIGGERED_BUFFER": "m", "CONFIG_IIO_CONFIGFS": "m", "CONFIG_IIO_TRIGGER": "y", "CONFIG_IIO_CONSUMERS_PER_TRIGGER": "2", "CONFIG_IIO_SW_DEVICE": "m", "CONFIG_IIO_SW_TRIGGER": "m", "CONFIG_IIO_TRIGGERED_EVENT": "m", "CONFIG_ADIS16201": "not set", "CONFIG_ADIS16209": "not set", "CONFIG_ADXL313_I2C": "not set", "CONFIG_ADXL313_SPI": "not set", "CONFIG_ADXL355_I2C": "not set", "CONFIG_ADXL355_SPI": "not set", "CONFIG_ADXL367_SPI": "not set", "CONFIG_ADXL367_I2C": "not set", "CONFIG_ADXL372_SPI": "not set", "CONFIG_ADXL372_I2C": "not set", "CONFIG_BMA220": "not set", "CONFIG_BMA400": "not set", "CONFIG_BMC150_ACCEL": "m", "CONFIG_BMC150_ACCEL_I2C": "m", "CONFIG_BMC150_ACCEL_SPI": "m", "CONFIG_BMI088_ACCEL": "not set", "CONFIG_DA280": "not set", "CONFIG_DA311": "not set", "CONFIG_DMARD06": "not set", "CONFIG_DMARD09": "not set", "CONFIG_DMARD10": "not set", "CONFIG_FXLS8962AF_I2C": "not set", "CONFIG_FXLS8962AF_SPI": "not set", "CONFIG_HID_SENSOR_ACCEL_3D": "m", "CONFIG_IIO_ST_ACCEL_3AXIS": "not set", "CONFIG_IIO_KX022A_SPI": "not set", "CONFIG_IIO_KX022A_I2C": "not set", "CONFIG_KXSD9": "not set", "CONFIG_KXCJK1013": "m", "CONFIG_MC3230": "not set", "CONFIG_MMA7455": "m", "CONFIG_MMA7455_I2C": "m", "CONFIG_MMA7455_SPI": "m", "CONFIG_MMA7660": "not set", "CONFIG_MMA8452": "not set", "CONFIG_MMA9551_CORE": "m", "CONFIG_MMA9551": "m", "CONFIG_MMA9553": "m", "CONFIG_MSA311": "not set", "CONFIG_MXC4005": "m", "CONFIG_MXC6255": "m", "CONFIG_SCA3000": "not set", "CONFIG_SCA3300": "not set", "CONFIG_STK8312": "m", "CONFIG_STK8BA50": "m", "CONFIG_AD4130": "not set", "CONFIG_AD7091R5": "not set", "CONFIG_AD7124": "not set", "CONFIG_AD7192": "not set", "CONFIG_AD7266": "not set", "CONFIG_AD7280": "not set", "CONFIG_AD7291": "not set", "CONFIG_AD7292": "not set", "CONFIG_AD7298": "not set", "CONFIG_AD7476": "not set", "CONFIG_AD7606_IFACE_PARALLEL": "not set", "CONFIG_AD7606_IFACE_SPI": "not set", "CONFIG_AD7766": "not set", "CONFIG_AD7768_1": "not set", "CONFIG_AD7780": "not set", "CONFIG_AD7791": "not set", "CONFIG_AD7793": "not set", "CONFIG_AD7887": "not set", "CONFIG_AD7923": "not set", "CONFIG_AD7949": "not set", "CONFIG_AD799X": "not set", "CONFIG_AXP20X_ADC": "m", "CONFIG_AXP288_ADC": "m", "CONFIG_CC10001_ADC": "not set", "CONFIG_DLN2_ADC": "m", "CONFIG_ENVELOPE_DETECTOR": "not set", "CONFIG_HI8435": "m", "CONFIG_HX711": "not set", "CONFIG_INA2XX_ADC": "not set", "CONFIG_INTEL_MRFLD_ADC": "not set", "CONFIG_LTC2471": "not set", "CONFIG_LTC2485": "not set", "CONFIG_LTC2496": "not set", "CONFIG_LTC2497": "not set", "CONFIG_MAX1027": "not set", "CONFIG_MAX11100": "not set", "CONFIG_MAX1118": "not set", "CONFIG_MAX11205": "not set", "CONFIG_MAX11410": "not set", "CONFIG_MAX1241": "not set", "CONFIG_MAX1363": "not set", "CONFIG_MAX9611": "not set", "CONFIG_MCP320X": "not set", "CONFIG_MCP3422": "not set", "CONFIG_MCP3911": "not set", "CONFIG_NAU7802": "not set", "CONFIG_QCOM_SPMI_IADC": "not set", "CONFIG_QCOM_SPMI_VADC": "not set", "CONFIG_QCOM_SPMI_ADC5": "not set", "CONFIG_RICHTEK_RTQ6056": "not set", "CONFIG_SD_ADC_MODULATOR": "not set", "CONFIG_TI_ADC081C": "not set", "CONFIG_TI_ADC0832": "not set", "CONFIG_TI_ADC084S021": "not set", "CONFIG_TI_ADC12138": "not set", "CONFIG_TI_ADC108S102": "not set", "CONFIG_TI_ADC128S052": "not set", "CONFIG_TI_ADC161S626": "not set", "CONFIG_TI_ADS1015": "not set", "CONFIG_TI_ADS7924": "not set", "CONFIG_TI_ADS1100": "not set", "CONFIG_TI_ADS7950": "not set", "CONFIG_TI_ADS8344": "not set", "CONFIG_TI_ADS8688": "not set", "CONFIG_TI_ADS124S08": "not set", "CONFIG_TI_ADS131E08": "not set", "CONFIG_TI_LMP92064": "not set", "CONFIG_TI_TLC4541": "not set", "CONFIG_TI_TSC2046": "not set", "CONFIG_VF610_ADC": "not set", "CONFIG_VIPERBOARD_ADC": "not set", "CONFIG_XILINX_XADC": "not set", "CONFIG_AD74115": "not set", "CONFIG_AD74413R": "not set", "CONFIG_STX104": "not set", "CONFIG_IIO_RESCALE": "m", "CONFIG_AD8366": "not set", "CONFIG_ADA4250": "not set", "CONFIG_HMC425": "not set", "CONFIG_AD7150": "not set", "CONFIG_AD7746": "not set", "CONFIG_ATLAS_PH_SENSOR": "m", "CONFIG_ATLAS_EZO_SENSOR": "not set", "CONFIG_BME680": "m", "CONFIG_BME680_I2C": "m", "CONFIG_BME680_SPI": "m", "CONFIG_CCS811": "not set", "CONFIG_IAQCORE": "m", "CONFIG_PMS7003": "not set", "CONFIG_SCD30_CORE": "not set", "CONFIG_SCD4X": "not set", "CONFIG_SENSIRION_SGP30": "not set", "CONFIG_SENSIRION_SGP40": "not set", "CONFIG_SPS30_I2C": "not set", "CONFIG_SPS30_SERIAL": "not set", "CONFIG_SENSEAIR_SUNRISE_CO2": "not set", "CONFIG_VZ89X": "m", "CONFIG_IIO_CROS_EC_SENSORS_CORE": "not set", "CONFIG_HID_SENSOR_IIO_COMMON": "m", "CONFIG_HID_SENSOR_IIO_TRIGGER": "m", "CONFIG_IIO_MS_SENSORS_I2C": "m", "CONFIG_IIO_SSP_SENSORHUB": "not set", "CONFIG_AD3552R": "not set", "CONFIG_AD5064": "not set", "CONFIG_AD5360": "not set", "CONFIG_AD5380": "not set", "CONFIG_AD5421": "not set", "CONFIG_AD5446": "not set", "CONFIG_AD5449": "not set", "CONFIG_AD5592R": "not set", "CONFIG_AD5593R": "not set", "CONFIG_AD5504": "not set", "CONFIG_AD5624R_SPI": "not set", "CONFIG_LTC2688": "not set", "CONFIG_AD5686_SPI": "not set", "CONFIG_AD5696_I2C": "not set", "CONFIG_AD5755": "not set", "CONFIG_AD5758": "not set", "CONFIG_AD5761": "m", "CONFIG_AD5764": "not set", "CONFIG_AD5766": "not set", "CONFIG_AD5770R": "not set", "CONFIG_AD5791": "not set", "CONFIG_AD7293": "not set", "CONFIG_AD7303": "not set", "CONFIG_AD8801": "not set", "CONFIG_CIO_DAC": "not set", "CONFIG_DPOT_DAC": "not set", "CONFIG_DS4424": "not set", "CONFIG_LTC1660": "not set", "CONFIG_LTC2632": "not set", "CONFIG_M62332": "not set", "CONFIG_MAX517": "not set", "CONFIG_MAX5522": "not set", "CONFIG_MAX5821": "not set", "CONFIG_MCP4725": "not set", "CONFIG_MCP4922": "not set", "CONFIG_TI_DAC082S085": "not set", "CONFIG_TI_DAC5571": "not set", "CONFIG_TI_DAC7311": "not set", "CONFIG_TI_DAC7612": "not set", "CONFIG_VF610_DAC": "not set", "CONFIG_IIO_SIMPLE_DUMMY": "not set", "CONFIG_ADMV8818": "not set", "CONFIG_AD9523": "not set", "CONFIG_ADF4350": "not set", "CONFIG_ADF4371": "not set", "CONFIG_ADF4377": "not set", "CONFIG_ADMV1013": "not set", "CONFIG_ADMV1014": "not set", "CONFIG_ADMV4420": "not set", "CONFIG_ADRF6780": "not set", "CONFIG_ADIS16080": "not set", "CONFIG_ADIS16130": "not set", "CONFIG_ADIS16136": "not set", "CONFIG_ADIS16260": "not set", "CONFIG_ADXRS290": "not set", "CONFIG_ADXRS450": "not set", "CONFIG_BMG160": "not set", "CONFIG_FXAS21002C": "not set", "CONFIG_HID_SENSOR_GYRO_3D": "m", "CONFIG_MPU3050_I2C": "not set", "CONFIG_IIO_ST_GYRO_3AXIS": "not set", "CONFIG_ITG3200": "not set", "CONFIG_AFE4403": "not set", "CONFIG_AFE4404": "not set", "CONFIG_MAX30100": "m", "CONFIG_MAX30102": "m", "CONFIG_AM2315": "m", "CONFIG_DHT11": "not set", "CONFIG_HDC100X": "m", "CONFIG_HDC2010": "not set", "CONFIG_HID_SENSOR_HUMIDITY": "m", "CONFIG_HTS221": "not set", "CONFIG_HTU21": "m", "CONFIG_SI7005": "not set", "CONFIG_SI7020": "not set", "CONFIG_ADIS16400": "not set", "CONFIG_ADIS16460": "not set", "CONFIG_ADIS16475": "not set", "CONFIG_ADIS16480": "not set", "CONFIG_BMI160": "m", "CONFIG_BMI160_I2C": "m", "CONFIG_BMI160_SPI": "m", "CONFIG_BOSCH_BNO055_SERIAL": "not set", "CONFIG_BOSCH_BNO055_I2C": "not set", "CONFIG_FXOS8700_I2C": "not set", "CONFIG_FXOS8700_SPI": "not set", "CONFIG_KMX61": "m", "CONFIG_INV_ICM42600_I2C": "not set", "CONFIG_INV_ICM42600_SPI": "not set", "CONFIG_INV_MPU6050_IIO": "m", "CONFIG_INV_MPU6050_I2C": "m", "CONFIG_INV_MPU6050_SPI": "not set", "CONFIG_IIO_ST_LSM6DSX": "not set", "CONFIG_IIO_ST_LSM9DS0": "not set", "CONFIG_ACPI_ALS": "m", "CONFIG_ADJD_S311": "not set", "CONFIG_ADUX1020": "not set", "CONFIG_AL3010": "not set", "CONFIG_AL3320A": "not set", "CONFIG_APDS9300": "not set", "CONFIG_APDS9960": "m", "CONFIG_AS73211": "not set", "CONFIG_BH1750": "not set", "CONFIG_BH1780": "m", "CONFIG_CM32181": "not set", "CONFIG_CM3232": "not set", "CONFIG_CM3323": "not set", "CONFIG_CM3605": "not set", "CONFIG_CM36651": "not set", "CONFIG_GP2AP002": "not set", "CONFIG_GP2AP020A00F": "not set", "CONFIG_IQS621_ALS": "not set", "CONFIG_SENSORS_ISL29018": "not set", "CONFIG_SENSORS_ISL29028": "not set", "CONFIG_ISL29125": "not set", "CONFIG_HID_SENSOR_ALS": "m", "CONFIG_HID_SENSOR_PROX": "m", "CONFIG_JSA1212": "m", "CONFIG_ROHM_BU27034": "not set", "CONFIG_RPR0521": "m", "CONFIG_SENSORS_LM3533": "not set", "CONFIG_LTR501": "not set", "CONFIG_LTRF216A": "not set", "CONFIG_LV0104CS": "not set", "CONFIG_MAX44000": "m", "CONFIG_MAX44009": "m", "CONFIG_NOA1305": "not set", "CONFIG_OPT3001": "not set", "CONFIG_PA12203001": "not set", "CONFIG_SI1133": "not set", "CONFIG_SI1145": "not set", "CONFIG_STK3310": "not set", "CONFIG_ST_UVIS25": "not set", "CONFIG_TCS3414": "not set", "CONFIG_TCS3472": "not set", "CONFIG_SENSORS_TSL2563": "not set", "CONFIG_TSL2583": "not set", "CONFIG_TSL2591": "not set", "CONFIG_TSL2772": "not set", "CONFIG_TSL4531": "not set", "CONFIG_US5182D": "m", "CONFIG_VCNL4000": "not set", "CONFIG_VCNL4035": "not set", "CONFIG_VEML6030": "not set", "CONFIG_VEML6070": "m", "CONFIG_VL6180": "m", "CONFIG_ZOPT2201": "not set", "CONFIG_AK8974": "not set", "CONFIG_AK8975": "not set", "CONFIG_AK09911": "not set", "CONFIG_BMC150_MAGN": "m", "CONFIG_BMC150_MAGN_I2C": "m", "CONFIG_BMC150_MAGN_SPI": "m", "CONFIG_MAG3110": "not set", "CONFIG_HID_SENSOR_MAGNETOMETER_3D": "m", "CONFIG_MMC35240": "not set", "CONFIG_IIO_ST_MAGN_3AXIS": "not set", "CONFIG_SENSORS_HMC5843_I2C": "not set", "CONFIG_SENSORS_HMC5843_SPI": "not set", "CONFIG_SENSORS_RM3100_I2C": "not set", "CONFIG_SENSORS_RM3100_SPI": "not set", "CONFIG_TI_TMAG5273": "not set", "CONFIG_YAMAHA_YAS530": "not set", "CONFIG_IIO_MUX": "m", "CONFIG_HID_SENSOR_INCLINOMETER_3D": "m", "CONFIG_HID_SENSOR_DEVICE_ROTATION": "m", "CONFIG_IIO_HRTIMER_TRIGGER": "m", "CONFIG_IIO_INTERRUPT_TRIGGER": "not set", "CONFIG_IIO_TIGHTLOOP_TRIGGER": "not set", "CONFIG_IIO_SYSFS_TRIGGER": "not set", "CONFIG_IQS624_POS": "not set", "CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE": "not set", "CONFIG_AD5110": "not set", "CONFIG_AD5272": "m", "CONFIG_DS1803": "m", "CONFIG_MAX5432": "not set", "CONFIG_MAX5481": "not set", "CONFIG_MAX5487": "m", "CONFIG_MCP4018": "m", "CONFIG_MCP4131": "m", "CONFIG_MCP4531": "m", "CONFIG_MCP41010": "m", "CONFIG_TPL0102": "m", "CONFIG_LMP91000": "not set", "CONFIG_ABP060MG": "not set", "CONFIG_BMP280": "m", "CONFIG_BMP280_I2C": "m", "CONFIG_BMP280_SPI": "m", "CONFIG_DLHL60D": "not set", "CONFIG_DPS310": "not set", "CONFIG_HID_SENSOR_PRESS": "m", "CONFIG_HP03": "m", "CONFIG_ICP10100": "not set", "CONFIG_MPL115_I2C": "not set", "CONFIG_MPL115_SPI": "not set", "CONFIG_MPL3115": "not set", "CONFIG_MS5611": "not set", "CONFIG_MS5637": "m", "CONFIG_IIO_ST_PRESS": "not set", "CONFIG_T5403": "not set", "CONFIG_HP206C": "m", "CONFIG_ZPA2326": "not set", "CONFIG_AS3935": "not set", "CONFIG_CROS_EC_MKBP_PROXIMITY": "not set", "CONFIG_ISL29501": "m", "CONFIG_LIDAR_LITE_V2": "m", "CONFIG_MB1232": "not set", "CONFIG_PING": "not set", "CONFIG_RFD77402": "m", "CONFIG_SRF04": "m", "CONFIG_SX9310": "not set", "CONFIG_SX9324": "not set", "CONFIG_SX9360": "not set", "CONFIG_SX9500": "m", "CONFIG_SRF08": "not set", "CONFIG_VCNL3020": "not set", "CONFIG_VL53L0X_I2C": "m", "CONFIG_AD2S90": "not set", "CONFIG_AD2S1200": "not set", "CONFIG_IQS620AT_TEMP": "not set", "CONFIG_LTC2983": "not set", "CONFIG_MAXIM_THERMOCOUPLE": "not set", "CONFIG_HID_SENSOR_TEMP": "m", "CONFIG_MLX90614": "m", "CONFIG_MLX90632": "m", "CONFIG_TMP006": "not set", "CONFIG_TMP007": "not set", "CONFIG_TMP117": "not set", "CONFIG_TSYS01": "m", "CONFIG_TSYS02D": "m", "CONFIG_MAX30208": "m", "CONFIG_MAX31856": "m", "CONFIG_MAX31865": "m", "CONFIG_NTB": "m", "CONFIG_NTB_MSI": "y", "CONFIG_NTB_AMD": "m", "CONFIG_NTB_IDT": "m", "CONFIG_NTB_INTEL": "m", "CONFIG_NTB_EPF": "m", "CONFIG_NTB_SWITCHTEC": "m", "CONFIG_NTB_PINGPONG": "not set", "CONFIG_NTB_TOOL": "not set", "CONFIG_NTB_PERF": "m", "CONFIG_NTB_MSI_TEST": "not set", "CONFIG_NTB_TRANSPORT": "m", "CONFIG_PWM": "y", "CONFIG_PWM_SYSFS": "y", "CONFIG_PWM_DEBUG": "not set", "CONFIG_PWM_CLK": "m", "CONFIG_PWM_CROS_EC": "m", "CONFIG_PWM_DWC": "m", "CONFIG_PWM_IQS620A": "m", "CONFIG_PWM_LP3943": "m", "CONFIG_PWM_LPSS": "m", "CONFIG_PWM_LPSS_PCI": "m", "CONFIG_PWM_LPSS_PLATFORM": "m", "CONFIG_PWM_PCA9685": "m", "CONFIG_ARM_GIC_V3_ITS": "not set", "CONFIG_MADERA_IRQ": "m", "CONFIG_SUNPLUS_SP7021_INTC": "not set", "CONFIG_IPACK_BUS": "m", "CONFIG_BOARD_TPCI200": "m", "CONFIG_SERIAL_IPOCTAL": "m", "CONFIG_RESET_CONTROLLER": "y", "CONFIG_RESET_ATH79": "not set", "CONFIG_RESET_AXS10X": "not set", "CONFIG_RESET_LANTIQ": "not set", "CONFIG_RESET_LPC18XX": "not set", "CONFIG_RESET_NPCM": "not set", "CONFIG_RESET_SIMPLE": "not set", "CONFIG_RESET_SOCFPGA": "not set", "CONFIG_RESET_SUNPLUS": "not set", "CONFIG_RESET_SUNXI": "not set", "CONFIG_RESET_TI_SYSCON": "not set", "CONFIG_RESET_TI_TPS380X": "not set", "CONFIG_RESET_ZYNQ": "not set", "CONFIG_RESET_TEGRA_BPMP": "not set", "CONFIG_GENERIC_PHY": "y", "CONFIG_GENERIC_PHY_MIPI_DPHY": "y", "CONFIG_USB_LGM_PHY": "m", "CONFIG_PHY_CAN_TRANSCEIVER": "m", "CONFIG_BCM_KONA_USB2_PHY": "m", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_CPCAP_USB": "not set", "CONFIG_PHY_QCOM_USB_HS": "m", "CONFIG_PHY_QCOM_USB_HSIC": "not set", "CONFIG_PHY_TUSB1210": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "m", "CONFIG_POWERCAP": "y", "CONFIG_INTEL_RAPL_CORE": "m", "CONFIG_INTEL_RAPL": "m", "CONFIG_INTEL_RAPL_TPMI": "m", "CONFIG_IDLE_INJECT": "y", "CONFIG_MCB": "not set", "CONFIG_RAS": "y", "CONFIG_RAS_CEC": "y", "CONFIG_RAS_CEC_DEBUG": "not set", "CONFIG_AMD_ATL": "m", "CONFIG_AMD_ATL_PRM": "y", "CONFIG_RAS_FMPM": "m", "CONFIG_USB4": "m", "CONFIG_USB4_DEBUGFS_WRITE": "not set", "CONFIG_USB4_DMA_TEST": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "m", "CONFIG_BLK_DEV_PMEM": "m", "CONFIG_ND_CLAIM": "y", "CONFIG_ND_BTT": "m", "CONFIG_BTT": "y", "CONFIG_ND_PFN": "m", "CONFIG_NVDIMM_PFN": "y", "CONFIG_NVDIMM_DAX": "y", "CONFIG_NVDIMM_KEYS": "y", "CONFIG_NVDIMM_SECURITY_TEST": "not set", "CONFIG_DAX": "y", "CONFIG_DEV_DAX": "m", "CONFIG_DEV_DAX_PMEM": "m", "CONFIG_DEV_DAX_HMEM": "m", "CONFIG_DEV_DAX_CXL": "m", "CONFIG_DEV_DAX_HMEM_DEVICES": "y", "CONFIG_DEV_DAX_KMEM": "m", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUT_SL28_VPD": "m", "CONFIG_NVMEM_LAYOUT_ONIE_TLV": "m", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_NVMEM_SPMI_SDAM": "m", "CONFIG_NVMEM_STM32_BSEC_OPTEE_TA": "not set", "CONFIG_STM": "m", "CONFIG_STM_PROTO_BASIC": "m", "CONFIG_STM_PROTO_SYS_T": "m", "CONFIG_STM_DUMMY": "m", "CONFIG_STM_SOURCE_CONSOLE": "m", "CONFIG_STM_SOURCE_HEARTBEAT": "m", "CONFIG_STM_SOURCE_FTRACE": "m", "CONFIG_INTEL_TH": "m", "CONFIG_INTEL_TH_PCI": "m", "CONFIG_INTEL_TH_ACPI": "m", "CONFIG_INTEL_TH_GTH": "m", "CONFIG_INTEL_TH_STH": "m", "CONFIG_INTEL_TH_MSU": "m", "CONFIG_INTEL_TH_PTI": "m", "CONFIG_INTEL_TH_DEBUG": "not set", "CONFIG_FPGA": "m", "CONFIG_ALTERA_PR_IP_CORE": "m", "CONFIG_FPGA_MGR_ALTERA_PS_SPI": "not set", "CONFIG_FPGA_MGR_ALTERA_CVP": "m", "CONFIG_FPGA_MGR_XILINX_SPI": "not set", "CONFIG_FPGA_MGR_MACHXO2_SPI": "not set", "CONFIG_FPGA_BRIDGE": "m", "CONFIG_ALTERA_FREEZE_BRIDGE": "m", "CONFIG_XILINX_PR_DECOUPLER": "m", "CONFIG_FPGA_REGION": "m", "CONFIG_FPGA_DFL": "m", "CONFIG_FPGA_DFL_FME": "m", "CONFIG_FPGA_DFL_FME_MGR": "m", "CONFIG_FPGA_DFL_FME_BRIDGE": "m", "CONFIG_FPGA_DFL_FME_REGION": "m", "CONFIG_FPGA_DFL_AFU": "m", "CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000": "m", "CONFIG_FPGA_DFL_PCI": "m", "CONFIG_FPGA_MGR_MICROCHIP_SPI": "m", "CONFIG_FPGA_MGR_LATTICE_SYSCONFIG": "m", "CONFIG_FPGA_MGR_LATTICE_SYSCONFIG_SPI": "m", "CONFIG_TEE": "m", "CONFIG_AMDTEE": "m", "CONFIG_MULTIPLEXER": "m", "CONFIG_MUX_ADG792A": "not set", "CONFIG_MUX_ADGS1408": "not set", "CONFIG_MUX_GPIO": "not set", "CONFIG_PM_OPP": "y", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "y", "CONFIG_DPLL": "y", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "m", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "m", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "m", "CONFIG_REISERFS_FS": "m", "CONFIG_REISERFS_CHECK": "not set", "CONFIG_REISERFS_PROC_INFO": "not set", "CONFIG_REISERFS_FS_XATTR": "y", "CONFIG_REISERFS_FS_POSIX_ACL": "y", "CONFIG_REISERFS_FS_SECURITY": "y", "CONFIG_JFS_FS": "m", "CONFIG_JFS_POSIX_ACL": "y", "CONFIG_JFS_SECURITY": "y", "CONFIG_JFS_DEBUG": "not set", "CONFIG_JFS_STATISTICS": "y", "CONFIG_XFS_FS": "m", "CONFIG_XFS_SUPPORT_V4": "y", "CONFIG_XFS_SUPPORT_ASCII_CI": "y", "CONFIG_XFS_QUOTA": "y", "CONFIG_XFS_POSIX_ACL": "y", "CONFIG_XFS_RT": "not set", "CONFIG_XFS_ONLINE_SCRUB": "not set", "CONFIG_XFS_WARN": "not set", "CONFIG_XFS_DEBUG": "not set", "CONFIG_GFS2_FS": "m", "CONFIG_GFS2_FS_LOCKING_DLM": "y", "CONFIG_OCFS2_FS": "m", "CONFIG_OCFS2_FS_O2CB": "m", "CONFIG_OCFS2_FS_USERSPACE_CLUSTER": "m", "CONFIG_OCFS2_FS_STATS": "y", "CONFIG_OCFS2_DEBUG_MASKLOG": "y", "CONFIG_OCFS2_DEBUG_FS": "not set", "CONFIG_BTRFS_FS": "m", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_CHECK_INTEGRITY": "not set", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "y", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "m", "CONFIG_F2FS_FS": "not set", "CONFIG_ZONEFS_FS": "m", "CONFIG_FS_DAX": "y", "CONFIG_FS_DAX_PMD": "y", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "y", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "m", "CONFIG_FS_ENCRYPTION_INLINE_CRYPT": "y", "CONFIG_FS_VERITY": "y", "CONFIG_FS_VERITY_BUILTIN_SIGNATURES": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "y", "CONFIG_FANOTIFY_ACCESS_PERMISSIONS": "y", "CONFIG_QUOTA": "y", "CONFIG_QUOTA_NETLINK_INTERFACE": "y", "CONFIG_QUOTA_DEBUG": "not set", "CONFIG_QUOTA_TREE": "m", "CONFIG_QFMT_V1": "m", "CONFIG_QFMT_V2": "m", "CONFIG_QUOTACTL": "y", "CONFIG_AUTOFS4_FS": "m", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "m", "CONFIG_FUSE_DAX": "y", "CONFIG_OVERLAY_FS": "m", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "not set", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_NETFS_SUPPORT": "m", "CONFIG_NETFS_STATS": "y", "CONFIG_FSCACHE": "m", "CONFIG_FSCACHE_STATS": "y", "CONFIG_FSCACHE_DEBUG": "not set", "CONFIG_CACHEFILES": "m", "CONFIG_CACHEFILES_DEBUG": "not set", "CONFIG_CACHEFILES_ERROR_INJECTION": "not set", "CONFIG_CACHEFILES_ONDEMAND": "not set", "CONFIG_ISO9660_FS": "m", "CONFIG_JOLIET": "y", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "m", "CONFIG_FAT_FS": "m", "CONFIG_MSDOS_FS": "m", "CONFIG_VFAT_FS": "m", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "m", "CONFIG_EXFAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_NTFS_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_VMCORE": "y", "CONFIG_PROC_VMCORE_DEVICE_DUMP": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_PROC_CPU_RESCTRL": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "y", "CONFIG_ARCH_SUPPORTS_HUGETLBFS": "not set", "CONFIG_HUGETLBFS": "y", "CONFIG_HUGETLB_PAGE": "y", "CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP": "y", "CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON": "not set", "CONFIG_MEMFD_CREATE": "y", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "m", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "m", "CONFIG_ADFS_FS": "m", "CONFIG_ADFS_FS_RW": "y", "CONFIG_AFFS_FS": "m", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "m", "CONFIG_BEFS_FS": "m", "CONFIG_BEFS_DEBUG": "not set", "CONFIG_BFS_FS": "m", "CONFIG_EFS_FS": "m", "CONFIG_JFFS2_FS": "m", "CONFIG_JFFS2_FS_DEBUG": "0", "CONFIG_JFFS2_FS_WRITEBUFFER": "y", "CONFIG_JFFS2_FS_WBUF_VERIFY": "not set", "CONFIG_JFFS2_SUMMARY": "y", "CONFIG_JFFS2_FS_XATTR": "y", "CONFIG_JFFS2_FS_POSIX_ACL": "y", "CONFIG_JFFS2_FS_SECURITY": "y", "CONFIG_JFFS2_COMPRESSION_OPTIONS": "y", "CONFIG_JFFS2_ZLIB": "y", "CONFIG_JFFS2_LZO": "not set", "CONFIG_JFFS2_RTIME": "y", "CONFIG_JFFS2_RUBIN": "not set", "CONFIG_JFFS2_CMODE_NONE": "not set", "CONFIG_JFFS2_CMODE_PRIORITY": "y", "CONFIG_JFFS2_CMODE_SIZE": "not set", "CONFIG_JFFS2_CMODE_FAVOURLZO": "not set", "CONFIG_UBIFS_FS": "m", "CONFIG_UBIFS_FS_ADVANCED_COMPR": "y", "CONFIG_UBIFS_FS_LZO": "y", "CONFIG_UBIFS_FS_ZLIB": "y", "CONFIG_UBIFS_FS_ZSTD": "y", "CONFIG_UBIFS_ATIME_SUPPORT": "y", "CONFIG_UBIFS_FS_XATTR": "y", "CONFIG_UBIFS_FS_SECURITY": "y", "CONFIG_UBIFS_FS_AUTHENTICATION": "y", "CONFIG_CRAMFS": "m", "CONFIG_CRAMFS_BLOCKDEV": "y", "CONFIG_CRAMFS_MTD": "y", "CONFIG_SQUASHFS": "m", "CONFIG_SQUASHFS_FILE_CACHE": "not set", "CONFIG_SQUASHFS_FILE_DIRECT": "y", "CONFIG_SQUASHFS_DECOMP_SINGLE": "y", "CONFIG_SQUASHFS_DECOMP_MULTI": "y", "CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU": "y", "CONFIG_SQUASHFS_CHOICE_DECOMP_BY_MOUNT": "y", "CONFIG_SQUASHFS_MOUNT_DECOMP_THREADS": "y", "CONFIG_SQUASHFS_XATTR": "y", "CONFIG_SQUASHFS_ZLIB": "y", "CONFIG_SQUASHFS_LZ4": "y", "CONFIG_SQUASHFS_LZO": "y", "CONFIG_SQUASHFS_XZ": "y", "CONFIG_SQUASHFS_ZSTD": "y", "CONFIG_SQUASHFS_4K_DEVBLK_SIZE": "not set", "CONFIG_SQUASHFS_EMBEDDED": "not set", "CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE": "3", "CONFIG_VXFS_FS": "m", "CONFIG_MINIX_FS": "m", "CONFIG_OMFS_FS": "m", "CONFIG_HPFS_FS": "m", "CONFIG_QNX4FS_FS": "m", "CONFIG_QNX6FS_FS": "m", "CONFIG_QNX6FS_DEBUG": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "not set", "CONFIG_ROMFS_BACKED_BY_MTD": "not set", "CONFIG_ROMFS_BACKED_BY_BOTH": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_ROMFS_ON_MTD": "y", "CONFIG_PSTORE": "y", "CONFIG_PSTORE_DEFAULT_KMSG_BYTES": "10240", "CONFIG_PSTORE_DEFLATE_COMPRESS": "m", "CONFIG_PSTORE_LZO_COMPRESS": "y", "CONFIG_PSTORE_LZ4_COMPRESS": "not set", "CONFIG_PSTORE_LZ4HC_COMPRESS": "m", "CONFIG_PSTORE_842_COMPRESS": "not set", "CONFIG_PSTORE_ZSTD_COMPRESS": "y", "CONFIG_PSTORE_COMPRESS": "y", "CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_LZO_COMPRESS_DEFAULT": "y", "CONFIG_PSTORE_LZ4HC_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_ZSTD_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_COMPRESS_DEFAULT": "\\"lzo\\"", "CONFIG_PSTORE_CONSOLE": "y", "CONFIG_PSTORE_PMSG": "y", "CONFIG_PSTORE_FTRACE": "y", "CONFIG_PSTORE_RAM": "m", "CONFIG_PSTORE_ZONE": "m", "CONFIG_PSTORE_BLK": "m", "CONFIG_PSTORE_BLK_BLKDEV": "\\"\\"", "CONFIG_PSTORE_BLK_KMSG_SIZE": "64", "CONFIG_PSTORE_BLK_MAX_REASON": "2", "CONFIG_PSTORE_BLK_PMSG_SIZE": "64", "CONFIG_PSTORE_BLK_CONSOLE_SIZE": "64", "CONFIG_PSTORE_BLK_FTRACE_SIZE": "64", "CONFIG_SYSV_FS": "m", "CONFIG_UFS_FS": "m", "CONFIG_UFS_FS_WRITE": "y", "CONFIG_UFS_DEBUG": "not set", "CONFIG_EROFS_FS": "m", "CONFIG_EROFS_FS_DEBUG": "not set", "CONFIG_EROFS_FS_XATTR": "y", "CONFIG_EROFS_FS_POSIX_ACL": "y", "CONFIG_EROFS_FS_SECURITY": "y", "CONFIG_EROFS_FS_ZIP": "y", "CONFIG_EROFS_FS_ZIP_LZMA": "y", "CONFIG_EROFS_FS_PCPU_KTHREAD": "not set", "CONFIG_VBOXSF_FS": "m", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "m", "CONFIG_NFS_V2": "m", "CONFIG_NFS_V3": "m", "CONFIG_NFS_V3_ACL": "y", "CONFIG_NFS_V4": "m", "CONFIG_NFS_SWAP": "y", "CONFIG_NFS_V4_1": "y", "CONFIG_NFS_V4_2": "y", "CONFIG_PNFS_FILE_LAYOUT": "m", "CONFIG_PNFS_BLOCK": "m", "CONFIG_PNFS_FLEXFILE_LAYOUT": "m", "CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN": "\\"kernel.org\\"", "CONFIG_NFS_V4_1_MIGRATION": "not set", "CONFIG_NFS_V4_SECURITY_LABEL": "y", "CONFIG_NFS_FSCACHE": "y", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DEBUG": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFS_V4_2_READ_PLUS": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "y", "CONFIG_NFSD_V2_ACL": "y", "CONFIG_NFSD_V3_ACL": "y", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_PNFS": "y", "CONFIG_NFSD_BLOCKLAYOUT": "y", "CONFIG_NFSD_SCSILAYOUT": "y", "CONFIG_NFSD_FLEXFILELAYOUT": "y", "CONFIG_NFSD_V4_2_INTER_SSC": "y", "CONFIG_NFSD_V4_SECURITY_LABEL": "y", "CONFIG_GRACE_PERIOD": "m", "CONFIG_LOCKD": "m", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_ACL_SUPPORT": "m", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_V4_2_SSC_HELPER": "y", "CONFIG_SUNRPC": "m", "CONFIG_SUNRPC_GSS": "m", "CONFIG_SUNRPC_BACKCHANNEL": "y", "CONFIG_SUNRPC_SWAP": "y", "CONFIG_RPCSEC_GSS_KRB5": "m", "CONFIG_RPCSEC_GSS_KRB5_CRYPTOSYSTEM": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_DES": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "y", "CONFIG_SUNRPC_DEBUG": "y", "CONFIG_SUNRPC_XPRT_RDMA": "m", "CONFIG_CEPH_FS": "m", "CONFIG_CEPH_FSCACHE": "y", "CONFIG_CEPH_FS_POSIX_ACL": "y", "CONFIG_CEPH_FS_SECURITY_LABEL": "y", "CONFIG_CIFS": "m", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "y", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "y", "CONFIG_CIFS_SWN_UPCALL": "y", "CONFIG_CIFS_SMB_DIRECT": "not set", "CONFIG_CIFS_FSCACHE": "y", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "m", "CONFIG_CODA_FS": "m", "CONFIG_AFS_FS": "not set", "CONFIG_9P_FS": "m", "CONFIG_9P_FSCACHE": "y", "CONFIG_9P_FS_POSIX_ACL": "y", "CONFIG_9P_FS_SECURITY": "y", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"utf8\\"", "CONFIG_NLS_CODEPAGE_437": "m", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "m", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "m", "CONFIG_NLS_MAC_CELTIC": "m", "CONFIG_NLS_MAC_CENTEURO": "m", "CONFIG_NLS_MAC_CROATIAN": "m", "CONFIG_NLS_MAC_CYRILLIC": "m", "CONFIG_NLS_MAC_GAELIC": "m", "CONFIG_NLS_MAC_GREEK": "m", "CONFIG_NLS_MAC_ICELAND": "m", "CONFIG_NLS_MAC_INUIT": "m", "CONFIG_NLS_MAC_ROMANIAN": "m", "CONFIG_NLS_MAC_TURKISH": "m", "CONFIG_NLS_UTF8": "m", "CONFIG_DLM": "m", "CONFIG_DLM_DEBUG": "y", "CONFIG_UNICODE": "y", "CONFIG_UNICODE_NORMALIZATION_SELFTEST": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "y", "CONFIG_PERSISTENT_KEYRINGS": "y", "CONFIG_TRUSTED_KEYS": "y", "CONFIG_TRUSTED_KEYS_TPM": "y", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "y", "CONFIG_KEY_NOTIFICATIONS": "y", "CONFIG_SECURITY_DMESG_RESTRICT": "y", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "y", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_INFINIBAND": "y", "CONFIG_SECURITY_NETWORK_XFRM": "y", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "y", "CONFIG_LSM_MMAP_MIN_ADDR": "0", "CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR": "y", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "y", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_HIDDEN_AREA": "y", "CONFIG_SECURITY_SELINUX": "y", "CONFIG_SECURITY_SELINUX_BOOTPARAM": "y", "CONFIG_SECURITY_SELINUX_DEVELOP": "y", "CONFIG_SECURITY_SELINUX_AVC_STATS": "y", "CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS": "9", "CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE": "256", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "y", "CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY": "2048", "CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG": "1024", "CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER": "not set", "CONFIG_SECURITY_TOMOYO_POLICY_LOADER": "\\"/sbin/tomoyo-init\\"", "CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER": "\\"/sbin/init\\"", "CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING": "not set", "CONFIG_SECURITY_APPARMOR": "y", "CONFIG_SECURITY_APPARMOR_DEBUG": "not set", "CONFIG_SECURITY_APPARMOR_INTROSPECT_POLICY": "y", "CONFIG_SECURITY_APPARMOR_HASH": "y", "CONFIG_SECURITY_APPARMOR_HASH_DEFAULT": "y", "CONFIG_SECURITY_APPARMOR_EXPORT_BINARY": "y", "CONFIG_SECURITY_APPARMOR_PARANOID_LOAD": "y", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "y", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "y", "CONFIG_SECURITY_LOCKDOWN_LSM_EARLY": "y", "CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT": "y", "CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE": "y", "CONFIG_LOCK_DOWN_KERNEL_FORCE_INTEGRITY": "not set", "CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "y", "CONFIG_INTEGRITY_ASYMMETRIC_KEYS": "y", "CONFIG_INTEGRITY_TRUSTED_KEYRING": "y", "CONFIG_INTEGRITY_PLATFORM_KEYRING": "y", "CONFIG_INTEGRITY_MACHINE_KEYRING": "y", "CONFIG_INTEGRITY_CA_MACHINE_KEYRING": "not set", "CONFIG_LOAD_UEFI_KEYS": "y", "CONFIG_INTEGRITY_AUDIT": "y", "CONFIG_IMA": "y", "CONFIG_IMA_KEXEC": "not set", "CONFIG_IMA_MEASURE_PCR_IDX": "10", "CONFIG_IMA_LSM_RULES": "y", "CONFIG_IMA_NG_TEMPLATE": "y", "CONFIG_IMA_SIG_TEMPLATE": "not set", "CONFIG_IMA_DEFAULT_TEMPLATE": "\\"ima-ng\\"", "CONFIG_IMA_DEFAULT_HASH_SHA1": "not set", "CONFIG_IMA_DEFAULT_HASH_SHA256": "y", "CONFIG_IMA_DEFAULT_HASH_SHA512": "not set", "CONFIG_IMA_DEFAULT_HASH": "\\"sha256\\"", "CONFIG_IMA_WRITE_POLICY": "not set", "CONFIG_IMA_READ_POLICY": "y", "CONFIG_IMA_APPRAISE": "y", "CONFIG_IMA_ARCH_POLICY": "y", "CONFIG_IMA_APPRAISE_BUILD_POLICY": "not set", "CONFIG_IMA_APPRAISE_BOOTPARAM": "y", "CONFIG_IMA_APPRAISE_MODSIG": "y", "CONFIG_IMA_TRUSTED_KEYRING": "y", "CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY": "not set", "CONFIG_IMA_BLACKLIST_KEYRING": "not set", "CONFIG_IMA_LOAD_X509": "not set", "CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS": "y", "CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS": "y", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "y", "CONFIG_IMA_DISABLE_HTABLE": "y", "CONFIG_EVM": "y", "CONFIG_EVM_ATTR_FSUUID": "y", "CONFIG_EVM_ADD_XATTRS": "y", "CONFIG_EVM_LOAD_X509": "not set", "CONFIG_DEFAULT_SECURITY_SELINUX": "not set", "CONFIG_DEFAULT_SECURITY_TOMOYO": "not set", "CONFIG_DEFAULT_SECURITY_APPARMOR": "y", "CONFIG_DEFAULT_SECURITY_DAC": "not set", "CONFIG_LSM": "\\"integrity,apparmor,selinux,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_ENABLER": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "not set", "CONFIG_INIT_STACK_NONE": "y", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "not set", "CONFIG_CC_HAS_RANDSTRUCT": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT": "not set", "CONFIG_GCC_PLUGIN_RANDSTRUCT": "not set", "CONFIG_XOR_BLOCKS": "m", "CONFIG_ASYNC_CORE": "m", "CONFIG_ASYNC_MEMCPY": "m", "CONFIG_ASYNC_XOR": "m", "CONFIG_ASYNC_PQ": "m", "CONFIG_ASYNC_RAID6_RECOV": "m", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_FIPS": "y", "CONFIG_CRYPTO_FIPS_NAME": "\\"Linux Kernel Cryptographic API\\"", "CONFIG_CRYPTO_FIPS_CUSTOM_VERSION": "not set", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "m", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "not set", "CONFIG_CRYPTO_MANAGER_EXTRA_TESTS": "not set", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "m", "CONFIG_CRYPTO_CRYPTD": "m", "CONFIG_CRYPTO_AUTHENC": "m", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_SIMD": "m", "CONFIG_CRYPTO_ENGINE": "m", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "y", "CONFIG_CRYPTO_DH_RFC7919_GROUPS": "y", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "m", "CONFIG_CRYPTO_ECDSA": "y", "CONFIG_CRYPTO_ECRDSA": "m", "CONFIG_CRYPTO_SM2": "m", "CONFIG_CRYPTO_CURVE25519": "m", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "m", "CONFIG_CRYPTO_ARIA": "m", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "m", "CONFIG_CRYPTO_FCRYPT": "m", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4": "m", "CONFIG_CRYPTO_SM4_GENERIC": "m", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "m", "CONFIG_CRYPTO_CHACHA20": "m", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CFB": "m", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "m", "CONFIG_CRYPTO_KEYWRAP": "m", "CONFIG_CRYPTO_LRW": "m", "CONFIG_CRYPTO_OFB": "m", "CONFIG_CRYPTO_PCBC": "m", "CONFIG_CRYPTO_XCTR": "m", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_NHPOLY1305": "m", "CONFIG_CRYPTO_AEGIS128": "m", "CONFIG_CRYPTO_CHACHA20POLY1305": "m", "CONFIG_CRYPTO_CCM": "m", "CONFIG_CRYPTO_GCM": "m", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "m", "CONFIG_CRYPTO_ESSIV": "m", "CONFIG_CRYPTO_BLAKE2B": "m", "CONFIG_CRYPTO_CMAC": "m", "CONFIG_CRYPTO_GHASH": "m", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "m", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLYVAL": "m", "CONFIG_CRYPTO_POLY1305": "m", "CONFIG_CRYPTO_RMD160": "m", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3": "m", "CONFIG_CRYPTO_SM3_GENERIC": "m", "CONFIG_CRYPTO_STREEBOG": "m", "CONFIG_CRYPTO_VMAC": "m", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "m", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "m", "CONFIG_CRYPTO_CRCT10DIF": "y", "CONFIG_CRYPTO_CRC64_ROCKSOFT": "m", "CONFIG_CRYPTO_DEFLATE": "m", "CONFIG_CRYPTO_LZO": "y", "CONFIG_CRYPTO_842": "m", "CONFIG_CRYPTO_LZ4": "m", "CONFIG_CRYPTO_LZ4HC": "m", "CONFIG_CRYPTO_ZSTD": "y", "CONFIG_CRYPTO_ANSI_CPRNG": "m", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "y", "CONFIG_CRYPTO_DRBG_CTR": "y", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_2": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_128": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_1024": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_8192": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_KDF800108_CTR": "y", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_STATS": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_CURVE25519_X86": "m", "CONFIG_CRYPTO_AES_NI_INTEL": "m", "CONFIG_CRYPTO_BLOWFISH_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "m", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "m", "CONFIG_CRYPTO_DES3_EDE_X86_64": "m", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "m", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "m", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "m", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_TWOFISH_X86_64": "m", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "m", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "m", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "m", "CONFIG_CRYPTO_CHACHA20_X86_64": "m", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "m", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "m", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "m", "CONFIG_CRYPTO_BLAKE2S_X86": "y", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "m", "CONFIG_CRYPTO_POLY1305_X86_64": "m", "CONFIG_CRYPTO_SHA1_SSSE3": "m", "CONFIG_CRYPTO_SHA256_SSSE3": "m", "CONFIG_CRYPTO_SHA512_SSSE3": "m", "CONFIG_CRYPTO_SM3_AVX_X86_64": "m", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "m", "CONFIG_CRYPTO_CRC32C_INTEL": "m", "CONFIG_CRYPTO_CRC32_PCLMUL": "m", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "y", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "m", "CONFIG_CRYPTO_DEV_PADLOCK_AES": "m", "CONFIG_CRYPTO_DEV_PADLOCK_SHA": "m", "CONFIG_CRYPTO_DEV_ATMEL_I2C": "m", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "m", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "m", "CONFIG_CRYPTO_DEV_CCP": "y", "CONFIG_CRYPTO_DEV_CCP_DD": "m", "CONFIG_CRYPTO_DEV_SP_CCP": "y", "CONFIG_CRYPTO_DEV_CCP_CRYPTO": "m", "CONFIG_CRYPTO_DEV_SP_PSP": "y", "CONFIG_CRYPTO_DEV_CCP_DEBUGFS": "not set", "CONFIG_CRYPTO_DEV_NITROX": "m", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "m", "CONFIG_CRYPTO_DEV_QAT": "m", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "m", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "m", "CONFIG_CRYPTO_DEV_QAT_C62X": "m", "CONFIG_CRYPTO_DEV_QAT_4XXX": "m", "CONFIG_CRYPTO_DEV_QAT_420XX": "m", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "m", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "m", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "m", "CONFIG_CRYPTO_DEV_QAT_ERROR_INJECTION": "not set", "CONFIG_CRYPTO_DEV_IAA_CRYPTO": "m", "CONFIG_CRYPTO_DEV_IAA_CRYPTO_STATS": "y", "CONFIG_CRYPTO_DEV_CHELSIO": "m", "CONFIG_CRYPTO_DEV_VIRTIO": "m", "CONFIG_CRYPTO_DEV_SAFEXCEL": "m", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "m", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "m", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST_RSA": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST_ECDSA": "y", "CONFIG_CHECK_CODESIGN_EKU": "y", "CONFIG_MODULE_SIG_KEY": "\\".kernel_signing_key.pem\\"", "CONFIG_MODULE_SIG_KEY_TYPE_RSA": "y", "CONFIG_MODULE_SIG_KEY_TYPE_ECDSA": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "y", "CONFIG_SYSTEM_BLACKLIST_HASH_LIST": "\\"\\"", "CONFIG_SYSTEM_REVOCATION_LIST": "y", "CONFIG_SYSTEM_REVOCATION_KEYS": "\\"\\"", "CONFIG_SYSTEM_BLACKLIST_AUTH_UPDATE": "y", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "m", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_LINEAR_RANGES": "y", "CONFIG_PACKING": "y", "CONFIG_BITREVERSE": "y", "CONFIG_HAVE_ARCH_BITREVERSE": "not set", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "m", "CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA": "m", "CONFIG_CRYPTO_LIB_CHACHA_GENERIC": "m", "CONFIG_CRYPTO_LIB_CHACHA": "m", "CONFIG_CRYPTO_ARCH_HAVE_LIB_CURVE25519": "m", "CONFIG_CRYPTO_LIB_CURVE25519_GENERIC": "m", "CONFIG_CRYPTO_LIB_CURVE25519": "m", "CONFIG_CRYPTO_LIB_DES": "m", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305": "m", "CONFIG_CRYPTO_LIB_POLY1305_GENERIC": "m", "CONFIG_CRYPTO_LIB_POLY1305": "m", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "m", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "y", "CONFIG_CRC16": "m", "CONFIG_CRC_T10DIF": "y", "CONFIG_CRC64_ROCKSOFT": "m", "CONFIG_CRC_ITU_T": "m", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "m", "CONFIG_CRC4": "m", "CONFIG_CRC7": "m", "CONFIG_LIBCRC32C": "m", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_AUDIT_ARCH_COMPAT_GENERIC": "not set", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_842_COMPRESS": "m", "CONFIG_842_DECOMPRESS": "m", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_COMPRESS": "m", "CONFIG_LZ4HC_COMPRESS": "m", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_IA64": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_MICROLZMA": "y", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_REED_SOLOMON": "m", "CONFIG_REED_SOLOMON_ENC8": "y", "CONFIG_REED_SOLOMON_DEC8": "y", "CONFIG_REED_SOLOMON_DEC16": "y", "CONFIG_BCH": "m", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_BTREE": "y", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_CLOSURES": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED": "y", "CONFIG_SWIOTLB": "y", "CONFIG_DMA_COHERENT_POOL": "y", "CONFIG_DMA_CMA": "y", "CONFIG_DMA_PERNUMA_CMA": "not set", "CONFIG_CMA_SIZE_MBYTES": "0", "CONFIG_CMA_SIZE_SEL_MBYTES": "y", "CONFIG_CMA_SIZE_SEL_PERCENTAGE": "not set", "CONFIG_CMA_SIZE_SEL_MIN": "not set", "CONFIG_CMA_SIZE_SEL_MAX": "not set", "CONFIG_CMA_ALIGNMENT": "8", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_IOMMU_HELPER": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPUMASK_OFFSTACK": "y", "CONFIG_FORCE_NR_CPUS": "not set", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "y", "CONFIG_MPILIB": "y", "CONFIG_SIGNATURE": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "y", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_FONT_6x11": "not set", "CONFIG_FONT_7x14": "not set", "CONFIG_FONT_PEARL_8x8": "not set", "CONFIG_FONT_ACORN_8x8": "not set", "CONFIG_FONT_MINI_4x6": "not set", "CONFIG_FONT_6x10": "not set", "CONFIG_FONT_10x18": "not set", "CONFIG_FONT_SUN8x16": "not set", "CONFIG_FONT_SUN12x22": "not set", "CONFIG_FONT_TER16x32": "y", "CONFIG_FONT_6x8": "y", "CONFIG_SG_SPLIT": "not set", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_NO_SG_CHAIN": "not set", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_MEMREGION": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_SBITMAP": "y", "CONFIG_PARMAN": "m", "CONFIG_OBJAGG": "m", "CONFIG_PLDMFW": "y", "CONFIG_ASN1_ENCODER": "y", "CONFIG_POLYNOMIAL": "m", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "y", "CONFIG_STACKTRACE_BUILD_ID": "y", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "y", "CONFIG_DYNAMIC_DEBUG_CORE": "y", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_LEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "not set", "CONFIG_DEBUG_INFO_DWARF4": "y", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_DEBUG_INFO_BTF": "y", "CONFIG_PAHOLE_HAS_SPLIT_BTF": "y", "CONFIG_PAHOLE_HAS_LANG_EXCLUDE": "y", "CONFIG_DEBUG_INFO_BTF_MODULES": "y", "CONFIG_MODULE_ALLOW_BTF_MISMATCH": "y", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "y", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B": "not set", "CONFIG_OBJTOOL": "y", "CONFIG_VMLINUX_MAP": "y", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "y", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "y", "CONFIG_DEBUG_PAGEALLOC": "y", "CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "y", "CONFIG_PAGE_TABLE_CHECK": "y", "CONFIG_PAGE_TABLE_CHECK_ENFORCED": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "y", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM_IRQSOFF": "not set", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_MEMORY_NOTIFIER_ERROR_INJECT": "m", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "not set", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "0", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STATIC_KEYS": "y", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_LOCKUP_DETECTOR": "y", "CONFIG_SOFTLOCKUP_DETECTOR": "y", "CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC": "not set", "CONFIG_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_HARDLOCKUP_DETECTOR": "y", "CONFIG_BOOTPARAM_HARDLOCKUP_PANIC": "y", "CONFIG_DETECT_HUNG_TASK": "y", "CONFIG_DEFAULT_HUNG_TASK_TIMEOUT": "480", "CONFIG_BOOTPARAM_HUNG_TASK_PANIC": "not set", "CONFIG_WQ_WATCHDOG": "y", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "y", "CONFIG_DEBUG_TIMEKEEPING": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "y", "CONFIG_CSD_LOCK_WAIT_DEBUG_DEFAULT": "not set", "CONFIG_NMI_CHECK_CPU": "y", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "y", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_DEBUG_CLOSURES": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_DEBUG_CREDENTIALS": "not set", "CONFIG_PROVE_RCU": "not set", "CONFIG_TORTURE_TEST": "m", "CONFIG_RCU_SCALE_TEST": "m", "CONFIG_RCU_TORTURE_TEST": "m", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "60", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "y", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "y", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACER_MAX_TRACE": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_RING_BUFFER_ALLOW_SWAP": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "y", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "y", "CONFIG_FUNCTION_PROFILER": "y", "CONFIG_STACK_TRACER": "y", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "y", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "y", "CONFIG_TIMERLAT_TRACER": "y", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "y", "CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP": "y", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_BPF_KPROBE_OVERRIDE": "not set", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_TRACING_MAP": "y", "CONFIG_SYNTH_EVENTS": "y", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "y", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "m", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "m", "CONFIG_SYNTH_EVENT_GEN_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_HIST_TRIGGERS_DEBUG": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "y", "CONFIG_SAMPLES": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "y", "CONFIG_EARLY_PRINTK_USB": "y", "CONFIG_X86_VERBOSE_BOOTUP": "not set", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "y", "CONFIG_EARLY_PRINTK_USB_XDBC": "y", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_IOMMU_DEBUG": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "not set", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "y", "CONFIG_UNWINDER_FRAME_POINTER": "not set", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "m", "CONFIG_PM_NOTIFIER_ERROR_INJECT": "m", "CONFIG_NETDEV_NOTIFIER_ERROR_INJECT": "m", "CONFIG_FUNCTION_ERROR_INJECTION": "y", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "not set", "CONFIG_FAIL_PAGE_ALLOC": "not set", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "not set", "CONFIG_FAIL_FUTEX": "not set", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_FUNCTION": "not set", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAIL_SUNRPC": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "m", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "m", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "m", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "m", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_STRING_SELFTEST": "not set", "CONFIG_TEST_STRING_HELPERS": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_PARMAN": "not set", "CONFIG_TEST_LKM": "m", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_USER_COPY": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "m", "CONFIG_TEST_SYSCTL": "m", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_DYNAMIC_DEBUG": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_LIVEPATCH": "m", "CONFIG_TEST_OBJAGG": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_HMM": "m", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "y", "CONFIG_HYPERV_TESTING": "not set", "CONFIG_SUSE_KERNEL": "y", "CONFIG_SUSE_PRODUCT_SLE": "y", "CONFIG_SUSE_PRODUCT_OPENSUSE_LEAP": "not set", "CONFIG_SUSE_PRODUCT_OPENSUSE_TUMBLEWEED": "not set", "CONFIG_SUSE_PRODUCT_SLFO": "not set", "CONFIG_SUSE_PRODUCT_CODE": "1", "CONFIG_SUSE_VERSION": "15", "CONFIG_SUSE_PATCHLEVEL": "6", "CONFIG_SUSE_AUXRELEASE": "0", "CONFIG_SUSE_HAVE_STABLE_KABI": "y", "CONFIG_SUSE_KERNEL_SUPPORTED": "y", "CONFIG_SUSE_KERNEL_RELEASED": "y"} {"id": "localhost", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Ubuntu 24.04 PC v2 (i440FX + PIIX, arch_caps fix, 1996)", "vendor": "QEMU", "version": "pc-i440fx-noble-v2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-3.0.0": "SMBIOS version 3.0.0", "dmi-3.0.0": "DMI version 3.0.0", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "1.16.3-debian-1.16.3-2", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "QEMU Virtual CPU version 2.5+", "vendor": "Advanced Micro Devices [AMD]", "physid": "400", "businfo": "cpu@0", "version": "15.107.1", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "16777317", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "x86-64": "64bits extensions (x86-64)", "rep_good": true, "nopl": true, "cpuid": true, "extd_apicid": true, "tsc_known_freq": true, "pni": true, "cx16": true, "x2apic": true, "hypervisor": true, "lahf_lm": true, "cmp_legacy": true, "svm": true, "3dnowprefetch": true, "vmmcall": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "440FX - 82441FX PMC [Natoma]", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "02", "width": 32, "clock": 33000000, "children": [{"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "ISA bridge", "product": "82371SB PIIX3 ISA [Natoma/Triton II]", "vendor": "Intel Corporation", "physid": "1", "businfo": "pci@0000:00:01.0", "version": "00", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "input", "claimed": true, "product": "PnP device PNP0303", "physid": "0", "configuration": {"driver": "i8042 kbd"}, "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "input", "claimed": true, "product": "PnP device PNP0f13", "physid": "1", "configuration": {"driver": "i8042 aux"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "storage", "claimed": true, "product": "PnP device PNP0700", "physid": "2", "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "printer", "claimed": true, "product": "PnP device PNP0400", "physid": "3", "configuration": {"driver": "parport_pc"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "communication", "claimed": true, "product": "PnP device PNP0501", "physid": "4", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:05", "class": "system", "claimed": true, "product": "PnP device PNP0b00", "physid": "5", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}]}, {"id": "ide", "class": "storage", "claimed": true, "handle": "PCI:0000:00:01.1", "description": "IDE interface", "product": "82371SB PIIX3 IDE [Natoma/Triton II]", "vendor": "Intel Corporation", "physid": "1.1", "businfo": "pci@0000:00:01.1", "logicalname": ["scsi0", "scsi1"], "version": "00", "width": 32, "clock": 33000000, "configuration": {"driver": "ata_piix", "latency": "0"}, "capabilities": {"ide": true, "isa_compat_mode": "ISA compatibility mode", "bus_master": "bus mastering", "emulated": "Emulated device"}, "children": [{"id": "disk", "class": "disk", "claimed": true, "handle": "GUID:05b094aa-7ee2-41aa-a8e0-b7d3b1a8dc3b", "description": "ATA Disk", "product": "QEMU HARDDISK", "physid": "0", "businfo": "scsi@0:0.0.0", "logicalname": "/dev/sda", "dev": "8:0", "version": "2.5+", "serial": "QM00001", "units": "bytes", "size": 10737418240, "configuration": {"ansiversion": "5", "guid": "05b094aa-7ee2-41aa-a8e0-b7d3b1a8dc3b", "logicalsectorsize": "512", "sectorsize": "512"}, "capabilities": {"gpt-1.00": "GUID Partition Table version 1.00", "partitioned": "Partitioned disk", "partitioned:gpt": "GUID partition table"}, "children": [{"id": "volume:0", "class": "volume", "claimed": true, "handle": "GUID:5c0101e1-af37-4a78-9a73-f634f62509db", "description": "BIOS Boot partition", "vendor": "EFI", "physid": "1", "businfo": "scsi@0:0.0.0,1", "logicalname": "/dev/sda1", "dev": "8:1", "serial": "5c0101e1-af37-4a78-9a73-f634f62509db", "capacity": 2096640, "configuration": {"name": "p.legacy"}, "capabilities": {"nofs": "No filesystem"}}, {"id": "volume:1", "class": "volume", "claimed": true, "handle": "GUID:078876ff-5daf-43a5-bd92-21170ccf7442", "description": "Windows FAT volume", "vendor": "mkfs.fat", "physid": "2", "businfo": "scsi@0:0.0.0,2", "logicalname": ["/dev/sda2", "/boot/efi"], "dev": "8:2", "version": "FAT16", "serial": "e11d-da3b", "size": 18446744073709549568, "configuration": {"FATs": "2", "filesystem": "fat", "label": "EFI", "mount.fstype": "vfat", "mount.options": "rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro", "name": "p.UEFI", "state": "mounted"}, "capabilities": {"boot": "Contains boot code", "fat": "Windows FAT volume", "initialized": "initialized volume"}}, {"id": "volume:2", "class": "volume", "claimed": true, "handle": "GUID:838148d0-f19f-461e-94ad-cfdd8eacdb11", "description": "EFI partition", "physid": "3", "businfo": "scsi@0:0.0.0,3", "logicalname": ["/dev/sda3", "/"], "dev": "8:3", "serial": "838148d0-f19f-461e-94ad-cfdd8eacdb11", "capacity": 10713283584, "configuration": {"mount.fstype": "xfs", "mount.options": "rw,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota", "name": "p.lxroot", "state": "mounted"}}]}, {"id": "cdrom", "class": "disk", "claimed": true, "handle": "SCSI:01:00:00:00", "description": "DVD reader", "product": "QEMU DVD-ROM", "vendor": "QEMU", "physid": "1", "businfo": "scsi@1:0.0.0", "logicalname": ["/dev/cdrom", "/dev/dvd", "/dev/sr0"], "dev": "11:0", "version": "2.5+", "configuration": {"ansiversion": "5", "status": "ready"}, "capabilities": {"removable": "support is removable", "audio": "Audio CD playback", "dvd": "DVD playback"}, "children": [{"id": "medium", "class": "disk", "claimed": true, "physid": "0", "logicalname": "/dev/cdrom", "dev": "11:0"}]}]}, {"id": "bridge", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:01.3", "description": "Bridge", "product": "82371AB/EB/MB PIIX4 ACPI", "vendor": "Intel Corporation", "physid": "1.3", "businfo": "pci@0000:00:01.3", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "piix4_smbus", "latency": "0"}, "capabilities": {"bridge": true}}, {"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "2", "businfo": "pci@0000:00:02.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Ethernet interface", "product": "82540EM Gigabit Ethernet Controller", "vendor": "Intel Corporation", "physid": "3", "businfo": "pci@0000:00:03.0", "logicalname": "eth0", "version": "03", "serial": "52:54:00:12:34:56", "units": "bit/s", "size": 1000000000, "capacity": 1000000000, "width": 32, "clock": 33000000, "configuration": {"autonegotiation": "on", "broadcast": "yes", "driver": "e1000", "driverversion": "6.4.0-150600.23.125-default", "duplex": "full", "ip": "10.0.2.15", "latency": "0", "link": "yes", "multicast": "yes", "port": "twisted pair", "speed": "1Gbit/s"}, "capabilities": {"bus_master": "bus mastering", "rom": "extension ROM", "ethernet": true, "physical": "Physical interface", "tp": "twisted pair", "10bt": "10Mbit/s", "10bt-fd": "10Mbit/s (full duplex)", "100bt": "100Mbit/s", "100bt-fd": "100Mbit/s (full duplex)", "1000bt-fd": "1Gbit/s (full duplex)", "autonegotiation": "Auto-negotiation"}}]}]}, {"id": "input:0", "class": "input", "claimed": true, "product": "AT Translated Set 2 keyboard", "physid": "1", "logicalname": ["input0", "/dev/input/event0", "input0::capslock", "input0::numlock", "input0::scrolllock"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:1", "class": "input", "claimed": true, "product": "VirtualPS/2 VMware VMMouse", "physid": "2", "logicalname": ["input2", "/dev/input/event2", "/dev/input/mouse1"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:2", "class": "input", "claimed": true, "product": "VirtualPS/2 VMware VMMouse", "physid": "3", "logicalname": ["input3", "/dev/input/event1", "/dev/input/mouse0"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:3", "class": "input", "claimed": true, "product": "PC Speaker", "physid": "4", "logicalname": ["input4", "/dev/input/event3"], "capabilities": {"isa": "ISA bus"}}, {"id": "input:4", "class": "input", "claimed": true, "product": "Power Button", "physid": "5", "logicalname": ["input5", "/dev/input/event4"], "capabilities": {"platform": true}}]} +\. + + +-- +-- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin; +\. + + +-- +-- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.django_content_type (id, app_label, model) FROM stdin; +1 admin logentry +2 auth group +3 auth permission +4 auth user +5 contenttypes contenttype +6 sessions session +7 django_tasks_database dbtaskresult +8 tests_interface distribution +\. + + +-- +-- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.django_migrations (id, app, name, applied) FROM stdin; +1 contenttypes 0001_initial 2026-07-04 11:58:50.17467+00 +2 auth 0001_initial 2026-07-04 11:58:50.199156+00 +3 admin 0001_initial 2026-07-04 11:58:50.207759+00 +4 admin 0002_logentry_remove_auto_add 2026-07-04 11:58:50.211695+00 +5 admin 0003_logentry_add_action_flag_choices 2026-07-04 11:58:50.215678+00 +6 contenttypes 0002_remove_content_type_name 2026-07-04 11:58:50.224306+00 +7 auth 0002_alter_permission_name_max_length 2026-07-04 11:58:50.228854+00 +8 auth 0003_alter_user_email_max_length 2026-07-04 11:58:50.233383+00 +9 auth 0004_alter_user_username_opts 2026-07-04 11:58:50.237296+00 +10 auth 0005_alter_user_last_login_null 2026-07-04 11:58:50.241547+00 +11 auth 0006_require_contenttypes_0002 2026-07-04 11:58:50.24233+00 +12 auth 0007_alter_validators_add_error_messages 2026-07-04 11:58:50.246328+00 +13 auth 0008_alter_user_username_max_length 2026-07-04 11:58:50.251476+00 +14 auth 0009_alter_user_last_name_max_length 2026-07-04 11:58:50.255968+00 +15 auth 0010_alter_group_name_max_length 2026-07-04 11:58:50.260654+00 +16 auth 0011_update_proxy_permissions 2026-07-04 11:58:50.264846+00 +17 auth 0012_alter_user_first_name_max_length 2026-07-04 11:58:50.26928+00 +18 django_tasks_database 0001_initial 2026-07-04 11:58:50.271829+00 +19 django_tasks_database 0002_alter_dbtaskresult_options 2026-07-04 11:58:50.273979+00 +20 django_tasks_database 0003_dbtaskresult_enqueued_at_dbtaskresult_finished_at 2026-07-04 11:58:50.27713+00 +21 django_tasks_database 0004_dbtaskresult_started_at 2026-07-04 11:58:50.278814+00 +22 django_tasks_database 0005_alter_dbtaskresult_priority_and_more 2026-07-04 11:58:50.286057+00 +23 django_tasks_database 0006_alter_dbtaskresult_args_kwargs_and_more 2026-07-04 11:58:50.295802+00 +24 django_tasks_database 0007_add_separate_results_fields 2026-07-04 11:58:50.298627+00 +25 django_tasks_database 0008_separate_results_field 2026-07-04 11:58:50.304324+00 +26 django_tasks_database 0009_remove_results_field 2026-07-04 11:58:50.306144+00 +27 django_tasks_database 0010_alter_dbtaskresult_status 2026-07-04 11:58:50.308061+00 +28 django_tasks_database 0011_rename_complete_status 2026-07-04 11:58:50.312842+00 +29 django_tasks_database 0012_add_separate_exception_fields 2026-07-04 11:58:50.316295+00 +30 django_tasks_database 0013_separate_exception_fields 2026-07-04 11:58:50.32173+00 +31 django_tasks_database 0014_remove_dbtaskresult_exception_data 2026-07-04 11:58:50.323557+00 +32 django_tasks_database 0015_correctly_order_run_after 2026-07-04 11:58:50.325077+00 +33 django_tasks_database 0016_remove_dbtaskresult_django_task_new_ordering_idx_and_more 2026-07-04 11:58:50.342613+00 +34 django_tasks_database 0017_dbtaskresult_metadata 2026-07-04 11:58:50.347144+00 +35 django_tasks_database 0018_rename_succeeded_status 2026-07-04 11:58:50.353985+00 +36 django_tasks_database 0019_rename_django_task_new_ordering_idx_tasks_db_new_ordering_idx_and_more 2026-07-04 11:58:50.35716+00 +37 sessions 0001_initial 2026-07-04 11:58:50.360928+00 +38 tests_interface 0001_initial 2026-07-04 11:58:50.363642+00 +\. + + +-- +-- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.django_session (session_key, session_data, expire_date) FROM stdin; +\. + + +-- +-- Data for Name: django_tasks_database_dbtaskresult; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.django_tasks_database_dbtaskresult (id, status, args_kwargs, priority, task_path, queue_name, backend_name, run_after, enqueued_at, finished_at, started_at, return_value, exception_class_path, traceback, worker_ids) FROM stdin; +319f87ed-f128-4ff4-a8fb-4aeecd7e7d21 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 12:13:42.297811+00 2026-07-04 12:33:02.069248+00 2026-07-04 12:13:42.706476+00 {"error": "LTPSyscallsTest.__init__() got an unexpected keyword argument 'timeout'", "status": "failed"} ["wu635B4fLY0xuoeXsK16p7uXlB04dga7"] +fe321983-959c-428a-82d1-c54e78ba9fe4 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 12:37:58.646762+00 2026-07-04 12:57:33.774378+00 2026-07-04 12:37:59.37242+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["wu635B4fLY0xuoeXsK16p7uXlB04dga7"] +b4fb9f0e-fd3a-441f-8332-0dc10d5a3b96 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 13:03:32.267971+00 2026-07-04 13:33:23.485453+00 2026-07-04 13:03:32.566284+00 {"error": "Command '['nc', '-q', '0', '10.0.2.2', '4444']' timed out after '60.0' seconds", "status": "failed"} ["gUSAx8DoGtuyE0QmXteNSUVREzA3EQag"] +bce58961-13b5-40e9-aa6e-1a7502dec34c SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-13 17:18:27.344898+00 2026-07-13 17:21:15.612678+00 2026-07-13 17:18:27.371258+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["iQRma7pFAHVZPLmdLaQXpRrf7m3d7euu"] +8e8fb4c7-9182-498e-a3d2-ef35a81e54f8 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 13:37:35.944544+00 2026-07-04 14:02:34.341326+00 2026-07-04 13:37:36.812616+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["wu635B4fLY0xuoeXsK16p7uXlB04dga7"] +170f6ff3-590b-43e6-961f-a2bcb3c9542b SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 14:14:08.640152+00 2026-07-04 14:28:27.985417+00 2026-07-04 14:14:08.955599+00 {"error": "SSH session not active", "status": "failed"} ["wu635B4fLY0xuoeXsK16p7uXlB04dga7"] +fabb5e72-160f-41df-90ef-52c577f4b731 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 14:29:31.89604+00 2026-07-04 14:42:24.09647+00 2026-07-04 14:29:32.004741+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["gUSAx8DoGtuyE0QmXteNSUVREzA3EQag"] +bdb4e88a-05a0-4e04-9e47-abab4f0e9a57 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 14:43:17.909689+00 2026-07-04 14:56:24.921279+00 2026-07-04 14:43:18.011024+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["wu635B4fLY0xuoeXsK16p7uXlB04dga7"] +6e7ae19c-cc47-46e7-8406-4c5bc90dc9d3 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 15:00:59.632389+00 2026-07-04 15:07:25.301039+00 2026-07-04 15:00:59.653789+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["wu635B4fLY0xuoeXsK16p7uXlB04dga7"] +d82b1c6a-ce93-459c-ab71-e9a10db2eff8 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 15:16:22.671654+00 2026-07-04 15:19:24.672535+00 2026-07-04 15:16:22.771105+00 {"error": "SSH session not active", "status": "failed"} ["gUSAx8DoGtuyE0QmXteNSUVREzA3EQag"] +6c933df6-a418-45a4-8684-18a6ae97dad2 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 15:35:44.96493+00 2026-07-04 15:43:14.500266+00 2026-07-04 15:35:45.506611+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["wu635B4fLY0xuoeXsK16p7uXlB04dga7"] +0a345fa1-0e84-45d9-bcb0-01c71a3e2079 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 15:48:28.948879+00 2026-07-04 15:51:35.335655+00 2026-07-04 15:48:29.535045+00 {"error": "LTPSyscallsTest.__init__() got an unexpected keyword argument 'timeout'", "status": "failed"} ["gUSAx8DoGtuyE0QmXteNSUVREzA3EQag"] +31fce3f3-3bab-4408-8fbe-c85bef634a28 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 15:59:38.484421+00 2026-07-04 16:05:10.063476+00 2026-07-04 15:59:39.267728+00 {"error": "LTPSyscallsTest.__init__() got an unexpected keyword argument 'timeout'", "status": "failed"} ["wu635B4fLY0xuoeXsK16p7uXlB04dga7"] +266b055e-725d-4fd5-be1b-12075fb425b1 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 16:06:15.358508+00 2026-07-04 16:56:15.459296+00 2026-07-04 16:06:15.952075+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["wu635B4fLY0xuoeXsK16p7uXlB04dga7"] +c8d80f8a-0763-4bfc-acca-421b1c9e3b1d SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 17:03:56.343014+00 2026-07-04 17:50:33.07434+00 2026-07-04 17:03:57.223847+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["gUSAx8DoGtuyE0QmXteNSUVREzA3EQag"] +3aab6cbe-2c5c-411e-b380-78ac568c5bb0 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 18:14:11.383004+00 2026-07-04 18:34:48.408901+00 2026-07-04 18:14:11.996656+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["3yuo1noDAUsydzni4lDHjWHSGMnpXFOt"] +d2556b73-5847-4c2c-8ef1-0bf83a3301e6 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 18:38:40.052599+00 2026-07-04 18:41:03.940577+00 2026-07-04 18:38:40.917808+00 {"error": "SSH session not active", "status": "failed"} ["iRZiAuHDNZ8q84gpb0iD5QOSp0U7HlQS"] +071242da-3506-43fe-8e5d-84e04192bc75 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-04 18:43:21.523187+00 2026-07-04 18:56:18.326289+00 2026-07-04 18:43:22.013103+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["3yuo1noDAUsydzni4lDHjWHSGMnpXFOt"] +a5138ef1-11ff-4430-a2f9-5a903c91d938 RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-06 09:53:31.713635+00 \N 2026-07-06 09:53:31.76096+00 \N ["voy4ScBTvwSSC1hROtZrhsYZeITBfnuu"] +01040a52-fe35-4109-9fdb-b891bda8bfe4 RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-06 09:59:00.018393+00 \N 2026-07-06 09:59:00.313877+00 \N ["n6Bg3ipxrutP8qmjydBHOEOCSIhelz3N"] +1cd58d24-0480-409d-ae5f-6d5aee0f45ba RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-06 10:08:16.571042+00 \N 2026-07-06 10:08:16.952934+00 \N ["R7ZyIVHQUzRE28dwUxaXwzPHnvRVkaQb"] +f4eaa5e6-f2c3-4e13-b70f-b8c7e3c4cef4 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-13 14:11:40.679875+00 2026-07-13 14:14:17.106254+00 2026-07-13 14:11:40.808693+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["1MRJagCAvA45eLkPn0Kg4NIQLbyziETc"] +ef9a409b-9590-4160-849c-1296a805a9fb RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-06 10:22:30.748883+00 \N 2026-07-06 10:22:31.12138+00 \N ["kn67sfDeJTeNk0j4k4v8Q1W5PWQysDLH"] +be89fff2-1964-4dfb-ba1c-674065963f88 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-13 14:22:25.750938+00 2026-07-13 14:25:15.417945+00 2026-07-13 14:22:25.885476+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["165oQzZED37jwXFFMYQGWzHQg3xXCEvt"] +ba1e71f4-b3ed-42f8-9481-fc645bbdef22 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-07 12:18:16.849177+00 2026-07-07 12:21:45.037636+00 2026-07-07 12:18:17.496671+00 {"error": "SSH session not active", "status": "failed"} ["6DiA3CIpWheik4PlF7vHtw2zFR1hdlh4"] +25bcb226-3b5c-4129-b29c-415d1df3f332 RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-07 12:23:58.42044+00 \N 2026-07-07 12:23:59.05609+00 \N ["Z9M9RPIpBXHikSAfgDsX8zfOsPN6nYub"] +84ce1e0f-5cc9-4bcf-8197-7bf6b1c454f0 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-13 16:04:53.955538+00 2026-07-13 16:07:31.191947+00 2026-07-13 16:04:53.961079+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["GIybw8QntjKNop0nnYLu8tdpeLX94cfC"] +8365f48f-6270-4a84-85f0-68e0d08634cf RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-07 12:29:06.712556+00 \N 2026-07-07 12:29:07.072734+00 \N ["n3Hfipi1MgIib7GAdGU3TxqN2azc2Gsb"] +8643f99e-4f80-4bfc-b97e-e183bdaa3439 RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-07 13:43:57.712159+00 \N 2026-07-07 13:43:58.450775+00 \N ["WjaW1WwctiifGWWI8ubBdOJ4dgZRA6PE"] +06fe5ec6-5e6b-4955-9f85-ee7852960c70 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-13 16:21:50.39491+00 2026-07-13 16:24:29.854502+00 2026-07-13 16:21:50.789654+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["8bm8nLUObMEej1WAHHFbAj4Gm4U2KBQ6"] +8c7e529a-2f9b-4b56-9b32-35e00b746e76 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-07 13:50:50.303091+00 2026-07-07 13:54:23.686177+00 2026-07-07 13:50:50.980692+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["FWli8b9mXIuMQ71lZJYOeJ2SZdqjwYRo"] +d8165bf6-21c7-4da8-99bd-a1fb0bdec2f3 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-13 16:29:38.083475+00 2026-07-13 16:32:18.246797+00 2026-07-13 16:29:38.137429+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["tUvlmESrhkkivyWfosW8WgPo4Hkhxr4d"] +3eb8b151-c1bd-43de-9810-ea298e7845ac SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-07 14:01:40.010775+00 2026-07-07 14:05:24.318535+00 2026-07-07 14:01:40.135999+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["bY0gR0JCaKHxUeY8mAdpNFUG5BBuOXWZ"] +10edc755-9a5b-4435-b26d-0a2dfc3f9905 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-13 16:42:21.206989+00 2026-07-13 16:44:46.792743+00 2026-07-13 16:42:21.330558+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["6fLCGlg9KzIcwUY0fsCikY4vsWadDZJP"] +d34d5128-514a-4175-a6f4-9fb67ae5e391 RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-07 14:25:57.501442+00 \N 2026-07-07 14:25:57.660368+00 \N ["AZRdA5cuPn9gHQTysr7dcZOeZZFP6dfN"] +1cf32712-5592-475c-be87-0585422e22c0 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-07 14:32:53.041058+00 2026-07-07 14:35:50.948655+00 2026-07-07 14:32:53.336609+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["pjQhLQzwgZxaHSo9xsldwamXnWBJrQt9"] +8950da72-dfc8-4a82-bdae-b60514cd1708 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-07 14:43:56.369661+00 2026-07-07 14:47:55.272678+00 2026-07-07 14:43:57.120671+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["kjbAPLP9cAz59eq3gYFCfzSliTVcCVIb"] +7eeae753-7337-4b88-b549-b03ce57e5595 RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-12 15:07:44.964603+00 \N 2026-07-12 15:07:45.346977+00 \N ["CxnJnyTKoIfibUGcpSgJiqb7rfEvwCa4"] +86daa516-d6e1-4515-a8d0-8a3249093015 RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-12 15:14:52.093871+00 \N 2026-07-12 15:14:52.449661+00 \N ["xxeMW0KYwXh0HolzgSXfXmV8xZ1esda9"] +715c0d28-4ae7-40f5-93e3-a5301caee09c RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-12 15:23:06.148927+00 \N 2026-07-12 15:23:06.44479+00 \N ["3qyqIYiBuzL7X9VdYXHEfe5IPA6HfdqC"] +36f1e4cd-b2b5-48a9-acf3-cf0d0ff7f2dd SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-13 13:56:00.571796+00 2026-07-13 14:01:12.718785+00 2026-07-13 13:56:01.006127+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["zE8MINeTSrOPUHHYF21z1xKX3D7Md77H"] +d6dff167-9dd7-4a78-ba72-08fb400cd0ee SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-13 18:00:55.922129+00 2026-07-13 18:04:19.374781+00 2026-07-13 18:00:56.04784+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["fsLFU1DjHllAuEhwwJcrd29xCXS7UHxi"] +3bed1f4b-d723-44c9-a618-b29e7c497672 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-13 18:19:28.54021+00 2026-07-13 18:21:53.593092+00 2026-07-13 18:19:28.700273+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["RuL3P2oNwIlU2gnTaAyr7u7KSGyw185K"] +535a95a4-c91d-44a8-99f2-586b9b0759af SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-13 18:42:23.151105+00 2026-07-13 18:46:24.24596+00 2026-07-13 18:42:23.577851+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["eAKbQwKeHI3CG47gbG5tloeCerWeDiey"] +0ce98329-ca49-4447-9feb-7f828b948af6 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-16 11:07:27.88848+00 2026-07-16 11:17:13.540085+00 2026-07-16 11:07:28.462199+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["d85eCroaqlBoWAAdzQAUjomLEfHsHGaB"] +762585c1-16b0-49c5-b173-98a7c616ee5f RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 2}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-16 11:19:22.415284+00 \N 2026-07-16 11:19:22.786778+00 \N ["d85eCroaqlBoWAAdzQAUjomLEfHsHGaB"] +18148c8d-a130-4935-9ee9-25d40b06e304 RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-16 11:21:56.789485+00 \N 2026-07-16 11:21:57.431383+00 \N ["XyTVoeUakmSuUZcIMR4Ey0TNwIKE8QDY"] +d12ffd06-aef1-48c8-8ccd-0f1420bff85a SUCCESSFUL {"args": [], "kwargs": {"mode": "profiled", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-16 11:28:03.715848+00 2026-07-16 11:31:23.645144+00 2026-07-16 11:28:04.476789+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["hmyALIyujzCigx5Z8nClYMtm45pyWDsa"] +e0d95a2b-99b6-413c-9650-f0a848226648 RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-17 12:00:34.345873+00 \N 2026-07-17 12:00:34.423116+00 \N ["2PbzOOPzQm2h7vjmprjLMvNXAmXddjOi"] +5fc1296d-3c7c-443f-a62e-944f8455f851 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-17 12:19:21.989585+00 2026-07-17 12:28:41.937914+00 2026-07-17 12:19:22.271266+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["JI3fKMY2T2ZX6E1RpEnGYO6r8HJ5ENlp"] +b7d7a62e-25fc-420e-9567-28bfec9b8274 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-17 12:38:56.214148+00 2026-07-17 12:47:41.802202+00 2026-07-17 12:38:56.951577+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["rUHofcGHYWBiCYgncJpsmx0kaQ1HgxTt"] +6d5bc90d-42ed-4be7-9688-3de091cc466c SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-20 18:29:49.53813+00 2026-07-20 18:36:29.819446+00 2026-07-20 18:29:49.55641+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["xQkLWXrz6s6PEeHCWQ5E8Wz6mh9szuZ5"] +6374d9e5-efda-4575-83f2-a5599e4f67f8 SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "yocto", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-20 19:09:55.974204+00 2026-07-20 20:29:54.959228+00 2026-07-20 19:09:56.665798+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["8iynvQcJNC2OF8TNQXPfgqbSVGcRrIU6"] +067c2e25-29a9-4824-978f-da436ca94262 RUNNING {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-21 03:20:36.409023+00 \N 2026-07-21 03:20:36.496552+00 \N ["SrJu0eIJtOpwCVQIW4ylUa7jHkslEste"] +3e5796b1-dfc5-401a-b29c-58125117f35c SUCCESSFUL {"args": [], "kwargs": {"mode": "default", "config": null, "distro": "opensuse", "test_runs_count": 1}} 0 tests_interface.tasks.run_test_task default default 9999-01-01 00:00:00+00 2026-07-22 13:10:25.97785+00 2026-07-22 14:33:59.949106+00 2026-07-22 13:10:26.184447+00 {"output": "", "status": "completed", "stderr": "", "exit_code": 0} ["rcRtgtUX30j7olPsSCrn7UvlLDyPThhN"] +\. + + +-- +-- Data for Name: experiment; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.experiment (experiment_id, config_id, description, type, started_at, ended_at, tests_total, tests_passed, tests_failed, tests_broken, tests_skipped) FROM stdin; +47 17 Test suite for virtual memory. performance 2026-07-20 19:58:30.164199 2026-07-20 20:08:48.808827 12 12 0 0 0 +6 2 Test suite for IPC subsystem. performance 2026-07-04 14:48:57.463932 2026-07-04 14:56:24.897509 9 9 0 0 0 +21 1 Test suite for syscalls. performance 2026-07-07 14:34:49.311002 2026-07-07 14:35:50.943481 3 3 0 0 0 +39 1 Test suite for file subsystem. performance 2026-07-16 11:23:51.037501 2026-07-16 11:24:48.200599 7 7 0 0 0 +11 5 Test suite for file subsystem. performance 2026-07-04 16:09:00.231419 2026-07-04 16:56:15.354288 90 90 0 0 0 +1 1 Test suite for virtual memory. performance 2026-07-04 12:17:07.795602 2026-07-04 12:30:09.728172 12 11 1 0 0 +14 2 Test suite for syscalls. performance 2026-07-04 18:47:40.465203 2026-07-04 18:56:18.319649 15 9 6 0 0 +28 8 Test suite for syscalls. performance 2026-07-13 14:24:33.525891 2026-07-13 14:25:15.413313 3 3 0 0 0 +2 1 Test suite for syscalls. performance 2026-07-04 12:32:05.326205 2026-07-04 12:33:01.398453 3 3 0 0 0 +7 3 Test suite for network subsystem. performance 2026-07-04 15:03:31.036338 2026-07-04 15:07:25.295173 7 6 0 1 0 +15 1 Test suite for network subsystem. performance 2026-07-06 09:56:31.70732 2026-07-06 09:56:48.713754 2 2 0 0 0 +22 1 Test suite for syscalls. performance 2026-07-07 14:46:53.494194 2026-07-07 14:47:55.26562 3 3 0 0 0 +40 15 Profiled plan: load performance 2026-07-16 11:28:47.617977 2026-07-16 11:31:14.361898 18 18 0 0 0 +33 1 Test suite for syscalls. performance 2026-07-13 17:20:33.983819 2026-07-13 17:21:15.607351 3 3 0 0 0 +3 1 Test suite for virtual memory. performance 2026-07-04 12:40:00.021381 2026-07-04 12:57:33.755635 14 12 2 0 0 +16 1 Test suite for file subsystem. performance 2026-07-06 10:10:11.359614 2026-07-06 10:11:08.81745 7 7 0 0 0 +23 1 Test suite for network subsystem. performance 2026-07-12 15:11:27.06765 2026-07-12 15:11:44.763307 2 2 0 0 0 +12 2 Test suite for file subsystem. performance 2026-07-04 17:08:39.041719 2026-07-04 17:50:32.992725 83 75 8 0 0 +8 2 Test suite for network subsystem. performance 2026-07-04 15:38:50.253335 2026-07-04 15:43:14.492107 7 6 0 1 0 +41 1 Test suite for syscalls. performance 2026-07-17 12:04:03.368721 2026-07-17 12:04:03.368724 0 0 0 0 0 +4 2 Test suite for virtual memory. performance 2026-07-04 13:40:43.687725 2026-07-04 14:02:34.304259 16 12 3 0 1 +17 1 Test suite for file subsystem. performance 2026-07-07 13:47:25.818934 2026-07-07 13:47:46.929225 2 2 0 0 0 +9 4 Test suite for syscalls. performance 2026-07-04 15:50:36.741685 2026-07-04 15:51:34.744491 3 3 0 0 0 +29 9 Test suite for syscalls. performance 2026-07-13 16:06:49.342955 2026-07-13 16:07:31.187217 3 3 0 0 0 +24 1 Test suite for network subsystem. performance 2026-07-12 15:16:46.115992 2026-07-12 15:17:03.982167 2 2 0 0 0 +5 1 Test suite for IPC subsystem. performance 2026-07-04 14:32:34.987453 2026-07-04 14:42:24.082698 10 10 0 0 0 +10 2 Test suite for syscalls. performance 2026-07-04 16:04:00.213717 2026-07-04 16:05:09.584952 3 3 0 0 0 +18 1 Test suite for syscalls. performance 2026-07-07 13:52:59.86555 2026-07-07 13:54:23.676901 3 3 0 0 0 +48 18 Test suite for network subsystem. performance 2026-07-20 20:11:04.602732 2026-07-20 20:14:35.933671 7 6 0 1 0 +46 17 Test suite for IPC subsystem. performance 2026-07-20 19:51:50.954014 2026-07-20 19:55:56.852455 10 10 0 0 0 +25 1 Test suite for IPC subsystem. performance 2026-07-12 15:24:47.899203 2026-07-12 15:25:05.421396 2 2 0 0 0 +13 1 Test suite for syscalls. performance 2026-07-04 18:17:08.604808 2026-07-04 18:34:48.392847 16 16 0 0 0 +44 1 Test suite for syscalls. performance 2026-07-20 18:32:45.631193 2026-07-20 18:36:29.813528 3 3 0 0 0 +19 6 Test suite for syscalls. performance 2026-07-07 14:04:10.942364 2026-07-07 14:05:24.30966 3 3 0 0 0 +34 1 Test suite for syscalls. performance 2026-07-13 18:03:37.240359 2026-07-13 18:04:19.369965 3 3 0 0 0 +30 10 Test suite for syscalls. performance 2026-07-13 16:23:46.826715 2026-07-13 16:24:29.850582 3 3 0 0 0 +20 1 Test suite for file subsystem. performance 2026-07-07 14:28:54.474595 2026-07-07 14:29:11.50707 2 2 0 0 0 +26 1 Test suite for syscalls. performance 2026-07-13 13:58:42.43649 2026-07-13 14:01:12.714265 3 3 0 0 0 +37 1 Test suite for network subsystem. performance 2026-07-16 11:10:35.435349 2026-07-16 11:14:09.972526 7 6 0 1 0 +42 1 Test suite for syscalls. performance 2026-07-17 12:24:46.902307 2026-07-17 12:28:41.922948 3 3 0 0 0 +31 11 Test suite for syscalls. performance 2026-07-13 16:31:36.672939 2026-07-13 16:32:18.242053 3 3 0 0 0 +27 7 Test suite for syscalls. performance 2026-07-13 14:13:35.800073 2026-07-13 14:14:17.101738 3 3 0 0 0 +35 13 Test suite for syscalls. performance 2026-07-13 18:21:11.34625 2026-07-13 18:21:53.588326 3 3 0 0 0 +38 14 Test suite for syscalls. performance 2026-07-16 11:16:18.002724 2026-07-16 11:17:13.534707 3 3 0 0 0 +32 12 Test suite for syscalls. performance 2026-07-13 16:44:04.120976 2026-07-13 16:44:46.788522 3 3 0 0 0 +50 19 Test suite for file subsystem. performance 2026-07-22 13:30:44.435095 2026-07-22 13:59:54.118192 83 74 9 0 0 +36 2 Test suite for syscalls. performance 2026-07-13 18:45:21.450179 2026-07-13 18:46:24.240264 3 3 0 0 0 +45 17 Test suite for file subsystem. performance 2026-07-20 19:13:13.362964 2026-07-20 19:49:25.912256 90 90 0 0 0 +51 19 Test suite for IPC subsystem. performance 2026-07-22 14:02:52.892171 2026-07-22 14:08:11.946529 9 9 0 0 0 +43 16 Test suite for syscalls. performance 2026-07-17 12:44:16.355492 2026-07-17 12:47:41.785644 3 3 0 0 0 +49 18 Test suite for syscalls. performance 2026-07-20 20:16:51.816344 2026-07-20 20:29:54.953335 16 16 0 0 0 +53 19 Test suite for network subsystem. performance 2026-07-22 14:23:54.726444 2026-07-22 14:27:27.041041 7 6 0 1 0 +52 19 Test suite for virtual memory. performance 2026-07-22 14:11:12.682545 2026-07-22 14:20:57.433025 12 11 0 0 1 +54 19 Test suite for syscalls. performance 2026-07-22 14:30:24.945942 2026-07-22 14:33:59.920323 15 9 6 0 0 +\. + + +-- +-- Data for Name: tests_interface_distribution; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.tests_interface_distribution (id, name, display_name, description, "order", is_active) FROM stdin; +154 yocto Yocto Project Run tests for Yocto platform 1 t +155 opensuse OpenSUSE Run tests for OpenSUSE platform 2 t +\. + + +-- +-- Data for Name: util_run_result; Type: TABLE DATA; Schema: public; Owner: user +-- + +COPY public.util_run_result (id, experiment_id, util_type, command, result, description, started_at, ended_at) FROM stdin; +1 1 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +2 1 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:17:09.155289 2026-07-04 12:17:09.155293 +3 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:17:08' --until '2026-07-04 12:17:08' 0 OOM records 2026-07-04 12:17:08.244922 2026-07-04 12:17:08.73055 +4 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:17:08' --until '2026-07-04 12:17:08' 0 systemd errors records 2026-07-04 12:17:08.244922 2026-07-04 12:17:08.73055 +5 1 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +6 1 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:17:24.129863 2026-07-04 12:17:24.129867 +7 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:17:10' --until '2026-07-04 12:17:23' 0 OOM records 2026-07-04 12:17:10.05149 2026-07-04 12:17:23.701684 +8 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:17:10' --until '2026-07-04 12:17:23' 0 systemd errors records 2026-07-04 12:17:10.05149 2026-07-04 12:17:23.701684 +9 1 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics --vm-populate {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 197.82}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 3942, "real_time_secs": 35.05, "usr_time_secs": 6.64, "sys_time_secs": 49.52, "bogo_ops_s_real_time": 112.47, "bogo_ops_s_usr_sys_time": 70.19, "cpu_used_per_instance": 40.06, "rss_max_kb": 223184, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 4, "real_time_secs": 35.41, "usr_time_secs": 7.56, "sys_time_secs": 63.64, "bogo_ops_s_real_time": 0.11, "bogo_ops_s_usr_sys_time": 0.06, "cpu_used_per_instance": 50.27, "rss_max_kb": 226008, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:17:25.175813 2026-07-04 11:58:54.193208 +10 1 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --memrate 0 --memrate-rd-mbs 500 --memrate-wr-mbs 1000 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "memrate"}, "time": {"duration_sec": 93.05}, "metrics": {"0": {"bogo_ops": 8, "real_time_secs": 33.12, "usr_time_secs": 54.42, "sys_time_secs": 5.51, "bogo_ops_s_real_time": 0.24, "bogo_ops_s_usr_sys_time": 0.13, "cpu_used_per_instance": 45.24, "rss_max_kb": 264292, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:18:01.298205 2026-07-04 11:58:54.193208 +11 1 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaptorture 0 --mmaptorture-bytes 70% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mmaptorture"}, "time": {"duration_sec": 83.17}, "metrics": {"0": {"bogo_ops": 245, "real_time_secs": 36.87, "usr_time_secs": 6.55, "sys_time_secs": 39.75, "bogo_ops_s_real_time": 6.65, "bogo_ops_s_usr_sys_time": 5.29, "cpu_used_per_instance": 31.39, "rss_max_kb": 10928, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:18:34.861527 2026-07-04 11:58:54.193208 +12 1 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:19:16.657727 2026-07-04 12:19:16.65773 +13 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:17:24' --until '2026-07-04 12:19:13' 1 OOM records 2026-07-04 12:17:24.956738 2026-07-04 12:19:13.81676 +14 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:17:24' --until '2026-07-04 12:19:13' 0 systemd errors records 2026-07-04 12:17:24.956738 2026-07-04 12:19:13.81676 +15 1 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 25% --mmap 4 --mmap-bytes 25% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 269.75}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 169622, "real_time_secs": 68.69, "usr_time_secs": 28.05, "sys_time_secs": 36.92, "bogo_ops_s_real_time": 2469.54, "bogo_ops_s_usr_sys_time": 2610.69, "cpu_used_per_instance": 23.65, "rss_max_kb": 175676, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 11, "real_time_secs": 69.53, "usr_time_secs": 7.3, "sys_time_secs": 59.26, "bogo_ops_s_real_time": 0.16, "bogo_ops_s_usr_sys_time": 0.17, "cpu_used_per_instance": 23.93, "rss_max_kb": 178004, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:19:27.757776 2026-07-04 11:58:54.193208 +16 1 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 199.86}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 84942, "real_time_secs": 33.25, "usr_time_secs": 21.07, "sys_time_secs": 43.11, "bogo_ops_s_real_time": 2555.0, "bogo_ops_s_usr_sys_time": 1323.62, "cpu_used_per_instance": 48.26, "rss_max_kb": 228208, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 8, "real_time_secs": 34.2, "usr_time_secs": 8.55, "sys_time_secs": 59.68, "bogo_ops_s_real_time": 0.23, "bogo_ops_s_usr_sys_time": 0.12, "cpu_used_per_instance": 49.88, "rss_max_kb": 230960, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:20:03.631036 2026-07-04 11:58:54.193208 +17 1 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 4M --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 666.42}, "metrics": {"0": {"bogo_ops": 2793973, "real_time_secs": 33.99, "usr_time_secs": 476.23, "sys_time_secs": 156.2, "bogo_ops_s_real_time": 82203.15, "bogo_ops_s_usr_sys_time": 4417.86, "cpu_used_per_instance": 1.82, "rss_max_kb": 2440, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:20:38.582732 2026-07-04 11:58:54.193208 +18 1 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 1G --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 634.91}, "metrics": {"0": {"bogo_ops": 2424165, "real_time_secs": 33.58, "usr_time_secs": 310.92, "sys_time_secs": 290.41, "bogo_ops_s_real_time": 72184.62, "bogo_ops_s_usr_sys_time": 4031.37, "cpu_used_per_instance": 1.75, "rss_max_kb": 3492, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:23:22.848999 2026-07-04 11:58:54.193208 +19 1 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 0.0}, "metrics": {"summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:25:58.309698 2026-07-04 11:58:54.193208 +20 1 loader null 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +21 1 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:29:31.697196 2026-07-04 12:29:31.697199 +22 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:19:27' --until '2026-07-04 12:29:31' 0 OOM records 2026-07-04 12:19:27.269109 2026-07-04 12:29:31.07406 +23 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:19:27' --until '2026-07-04 12:29:31' 0 systemd errors records 2026-07-04 12:19:27.269109 2026-07-04 12:29:31.07406 +24 1 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 95% --syscall-method all --verify --metrics {"pgscan_time_sec": 2.0, "tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 161.69}, "metrics": {"0": {"bogo_ops": 36357, "real_time_secs": 33.05, "usr_time_secs": 26.03, "sys_time_secs": 102.61, "bogo_ops_s_real_time": 1099.98, "bogo_ops_s_usr_sys_time": 282.62, "cpu_used_per_instance": 97.3, "rss_max_kb": 667052, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:29:34.128437 2026-07-04 11:58:54.193208 +25 1 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:30:08.441122 2026-07-04 12:30:08.441125 +26 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:29:33' --until '2026-07-04 12:30:07' 0 OOM records 2026-07-04 12:29:33.728179 2026-07-04 12:30:07.917115 +27 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:29:33' --until '2026-07-04 12:30:07' 0 systemd errors records 2026-07-04 12:29:33.728179 2026-07-04 12:30:07.917115 +28 2 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +29 2 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:32:06.584075 2026-07-04 12:32:06.58408 +30 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:32:05' --until '2026-07-04 12:32:06' 0 OOM records 2026-07-04 12:32:05.725239 2026-07-04 12:32:06.159021 +31 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:32:05' --until '2026-07-04 12:32:06' 0 systemd errors records 2026-07-04 12:32:05.725239 2026-07-04 12:32:06.159021 +32 2 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +33 2 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:32:21.592202 2026-07-04 12:32:21.592205 +34 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:32:07' --until '2026-07-04 12:32:21' 0 OOM records 2026-07-04 12:32:07.422797 2026-07-04 12:32:21.166691 +35 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:32:07' --until '2026-07-04 12:32:21' 0 systemd errors records 2026-07-04 12:32:07.422797 2026-07-04 12:32:21.166691 +36 2 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 37.43}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 35.54, "usr_time_secs": 0.28, "sys_time_secs": 1.61, "bogo_ops_s_real_time": 63.93, "bogo_ops_s_usr_sys_time": 1198.22, "cpu_used_per_instance": 1.33, "rss_max_kb": 4844, "top10_slowest": [["syslog", 16686709879.0, 723479009, 32649940749], ["sync", 58988569.0, 33960558, 84016580], ["execveat", 19657394.5, 18495156, 20819633], ["execve", 19356936.5, 18400737, 20313136], ["fdatasync", 14445462.5, 10094437, 18796488], ["pwritev2", 4687192.5, 4400149, 4974236], ["msync", 4623637.0, 53926, 9193348], ["waitid", 4037313.5, 926884, 7147743], ["fsync", 3371270.5, 3000657, 3741884], ["syncfs", 2629257.5, 2099142, 3159373]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:32:22.743211 2026-07-04 11:58:54.193208 +37 2 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:32:59.631425 2026-07-04 12:32:59.631429 +38 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:32:22' --until '2026-07-04 12:32:59' 0 OOM records 2026-07-04 12:32:22.530815 2026-07-04 12:32:59.205971 +39 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:32:22' --until '2026-07-04 12:32:59' 0 systemd errors records 2026-07-04 12:32:22.530815 2026-07-04 12:32:59.205971 +40 3 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +41 3 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:40:01.290854 2026-07-04 12:40:01.290857 +42 3 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:40:00' --until '2026-07-04 12:40:00' 0 OOM records 2026-07-04 12:40:00.438154 2026-07-04 12:40:00.867446 +43 3 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:40:00' --until '2026-07-04 12:40:00' 0 systemd errors records 2026-07-04 12:40:00.438154 2026-07-04 12:40:00.867446 +44 3 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +45 3 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:40:16.186687 2026-07-04 12:40:16.186692 +46 3 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:40:02' --until '2026-07-04 12:40:15' 0 OOM records 2026-07-04 12:40:02.219686 2026-07-04 12:40:15.761581 +47 3 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:40:02' --until '2026-07-04 12:40:15' 0 systemd errors records 2026-07-04 12:40:02.219686 2026-07-04 12:40:15.761581 +48 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics --vm-populate {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 200.88}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 77862, "real_time_secs": 33.26, "usr_time_secs": 20.1, "sys_time_secs": 43.5, "bogo_ops_s_real_time": 2341.04, "bogo_ops_s_usr_sys_time": 1224.21, "cpu_used_per_instance": 47.81, "rss_max_kb": 223368, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 9, "real_time_secs": 34.37, "usr_time_secs": 7.56, "sys_time_secs": 62.09, "bogo_ops_s_real_time": 0.26, "bogo_ops_s_usr_sys_time": 0.13, "cpu_used_per_instance": 50.67, "rss_max_kb": 225948, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:40:17.23939 2026-07-04 11:58:54.193208 +49 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --memrate 0 --memrate-rd-mbs 500 --memrate-wr-mbs 1000 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "memrate"}, "time": {"duration_sec": 95.58}, "metrics": {"0": {"bogo_ops": 8, "real_time_secs": 33.12, "usr_time_secs": 57.12, "sys_time_secs": 5.34, "bogo_ops_s_real_time": 0.24, "bogo_ops_s_usr_sys_time": 0.13, "cpu_used_per_instance": 47.15, "rss_max_kb": 264360, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:40:52.192453 2026-07-04 11:58:54.193208 +50 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaptorture 0 --mmaptorture-bytes 70% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mmaptorture"}, "time": {"duration_sec": 78.06}, "metrics": {"0": {"bogo_ops": 249, "real_time_secs": 33.46, "usr_time_secs": 6.43, "sys_time_secs": 38.17, "bogo_ops_s_real_time": 7.44, "bogo_ops_s_usr_sys_time": 5.58, "cpu_used_per_instance": 33.32, "rss_max_kb": 12648, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:41:25.756338 2026-07-04 11:58:54.193208 +51 3 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:42:00.535276 2026-07-04 12:42:00.53528 +52 3 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:40:17' --until '2026-07-04 12:42:00' 0 OOM records 2026-07-04 12:40:17.033429 2026-07-04 12:42:00.10784 +53 3 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:40:17' --until '2026-07-04 12:42:00' 0 systemd errors records 2026-07-04 12:40:17.033429 2026-07-04 12:42:00.10784 +54 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 25% --mmap 4 --mmap-bytes 25% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 198.73}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 165904, "real_time_secs": 33.19, "usr_time_secs": 26.92, "sys_time_secs": 37.04, "bogo_ops_s_real_time": 4998.83, "bogo_ops_s_usr_sys_time": 2593.8, "cpu_used_per_instance": 48.18, "rss_max_kb": 175680, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 12, "real_time_secs": 34.02, "usr_time_secs": 6.26, "sys_time_secs": 61.3, "bogo_ops_s_real_time": 0.35, "bogo_ops_s_usr_sys_time": 0.18, "cpu_used_per_instance": 49.65, "rss_max_kb": 178016, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:42:03.3007 2026-07-04 11:58:54.193208 +55 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 200.19}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 69199, "real_time_secs": 33.32, "usr_time_secs": 19.54, "sys_time_secs": 44.97, "bogo_ops_s_real_time": 2076.97, "bogo_ops_s_usr_sys_time": 1072.67, "cpu_used_per_instance": 48.41, "rss_max_kb": 232348, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 8, "real_time_secs": 34.16, "usr_time_secs": 8.86, "sys_time_secs": 59.34, "bogo_ops_s_real_time": 0.23, "bogo_ops_s_usr_sys_time": 0.12, "cpu_used_per_instance": 49.91, "rss_max_kb": 235184, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:42:38.695339 2026-07-04 11:58:54.193208 +56 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 4M --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 640.89}, "metrics": {"0": {"bogo_ops": 2682999, "real_time_secs": 34.33, "usr_time_secs": 458.32, "sys_time_secs": 148.24, "bogo_ops_s_real_time": 78164.19, "bogo_ops_s_usr_sys_time": 4423.29, "cpu_used_per_instance": 1.73, "rss_max_kb": 2672, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:43:13.745109 2026-07-04 11:58:54.193208 +57 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 1G --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 639.3}, "metrics": {"0": {"bogo_ops": 2520575, "real_time_secs": 33.56, "usr_time_secs": 312.85, "sys_time_secs": 292.89, "bogo_ops_s_real_time": 75099.4, "bogo_ops_s_usr_sys_time": 4161.13, "cpu_used_per_instance": 1.76, "rss_max_kb": 3488, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:45:51.400632 2026-07-04 11:58:54.193208 +58 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 0.0}, "metrics": {"summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:48:27.772589 2026-07-04 11:58:54.193208 +59 3 loader null 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +60 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 0.0}, "metrics": {"summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:52:42.875911 2026-07-04 11:58:54.193208 +61 3 loader null 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +62 3 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:56:55.065926 2026-07-04 12:56:55.06593 +63 3 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:42:02' --until '2026-07-04 12:56:53' 38 OOM records 2026-07-04 12:42:02.863152 2026-07-04 12:56:53.837519 +64 3 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:42:02' --until '2026-07-04 12:56:53' 0 systemd errors records 2026-07-04 12:42:02.863152 2026-07-04 12:56:53.837519 +65 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 95% --syscall-method all --verify --metrics {"pgscan_time_sec": 0, "tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 162.19}, "metrics": {"0": {"bogo_ops": 46593, "real_time_secs": 33.06, "usr_time_secs": 28.2, "sys_time_secs": 100.93, "bogo_ops_s_real_time": 1409.48, "bogo_ops_s_usr_sys_time": 360.81, "cpu_used_per_instance": 97.66, "rss_max_kb": 678892, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 12:56:58.004363 2026-07-04 11:58:54.193208 +66 3 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 12:57:32.491098 2026-07-04 12:57:32.491103 +67 3 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 12:56:57' --until '2026-07-04 12:57:31' 0 OOM records 2026-07-04 12:56:57.52678 2026-07-04 12:57:31.768881 +68 3 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 12:56:57' --until '2026-07-04 12:57:31' 0 systemd errors records 2026-07-04 12:56:57.52678 2026-07-04 12:57:31.768881 +69 4 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 52.424, "kernel_time": 3.74, "userspace_time": 74.71000000000001, "total_time": 130.875} 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +70 4 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 13:40:47.83986 2026-07-04 13:40:47.839864 +71 4 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 13:40:44' --until '2026-07-04 13:40:45' 0 OOM records 2026-07-04 13:40:44.11524 2026-07-04 13:40:45.673222 +72 4 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 13:40:44' --until '2026-07-04 13:40:45' 0 systemd errors records 2026-07-04 13:40:44.11524 2026-07-04 13:40:45.673222 +140 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 14:49:30' --until '2026-07-04 14:55:08' 0 OOM records 2026-07-04 14:49:30.326239 2026-07-04 14:55:08.618352 +73 4 loader systemd-analyze critical-chain [{"service_name": "cloud-config.service", "slow_time_s": 7.318}, {"service_name": "cloud-init.service", "slow_time_s": 13.249}, {"service_name": "wicked.service", "slow_time_s": 14.412}, {"service_name": "cloud-init-local.service", "slow_time_s": 15.218}] 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +74 4 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 13:40:59.419615 2026-07-04 13:40:59.41962 +75 4 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 13:40:50' --until '2026-07-04 13:40:56' 0 OOM records 2026-07-04 13:40:50.220103 2026-07-04 13:40:56.820535 +76 4 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 13:40:50' --until '2026-07-04 13:40:56' 0 systemd errors records 2026-07-04 13:40:50.220103 2026-07-04 13:40:56.820535 +77 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics --vm-populate {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 193.5}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 200779, "real_time_secs": 33.12, "usr_time_secs": 40.66, "sys_time_secs": 21.14, "bogo_ops_s_real_time": 6062.03, "bogo_ops_s_usr_sys_time": 3248.93, "cpu_used_per_instance": 46.65, "rss_max_kb": 130844, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 11, "real_time_secs": 34.1, "usr_time_secs": 4.61, "sys_time_secs": 59.87, "bogo_ops_s_real_time": 0.32, "bogo_ops_s_usr_sys_time": 0.17, "cpu_used_per_instance": 47.28, "rss_max_kb": 129424, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 13:41:02.79708 2026-07-04 11:58:54.193208 +78 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --memrate 0 --memrate-rd-mbs 500 --memrate-wr-mbs 1000 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "memrate"}, "time": {"duration_sec": 84.46}, "metrics": {"0": {"bogo_ops": 12, "real_time_secs": 33.05, "usr_time_secs": 48.85, "sys_time_secs": 2.56, "bogo_ops_s_real_time": 0.36, "bogo_ops_s_usr_sys_time": 0.23, "cpu_used_per_instance": 38.89, "rss_max_kb": 265616, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 13:41:38.846156 2026-07-04 11:58:54.193208 +79 4 loader null 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +80 4 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 13:42:19.794726 2026-07-04 13:42:19.79473 +81 4 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 13:41:01' --until '2026-07-04 13:42:15' 0 OOM records 2026-07-04 13:41:01.990418 2026-07-04 13:42:15.764477 +82 4 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 13:41:01' --until '2026-07-04 13:42:15' 0 systemd errors records 2026-07-04 13:41:01.990418 2026-07-04 13:42:15.764477 +83 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 25% --mmap 4 --mmap-bytes 25% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 163.89}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 239510, "real_time_secs": 34.57, "usr_time_secs": 29.99, "sys_time_secs": 16.44, "bogo_ops_s_real_time": 6928.41, "bogo_ops_s_usr_sys_time": 5158.2, "cpu_used_per_instance": 33.58, "rss_max_kb": 178760, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 7, "real_time_secs": 34.78, "usr_time_secs": 3.63, "sys_time_secs": 44.48, "bogo_ops_s_real_time": 0.2, "bogo_ops_s_usr_sys_time": 0.15, "cpu_used_per_instance": 34.58, "rss_max_kb": 181760, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 13:42:30.022319 2026-07-04 11:58:54.193208 +84 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 194.68}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 310928, "real_time_secs": 33.53, "usr_time_secs": 45.16, "sys_time_secs": 19.44, "bogo_ops_s_real_time": 9273.95, "bogo_ops_s_usr_sys_time": 4812.89, "cpu_used_per_instance": 48.17, "rss_max_kb": 250752, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 8, "real_time_secs": 33.63, "usr_time_secs": 4.63, "sys_time_secs": 58.29, "bogo_ops_s_real_time": 0.24, "bogo_ops_s_usr_sys_time": 0.13, "cpu_used_per_instance": 46.77, "rss_max_kb": 252208, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 13:43:10.900148 2026-07-04 11:58:54.193208 +85 4 loader null 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +86 4 loader null 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +87 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mmaphuge"}, "time": {"duration_sec": 592.12}, "metrics": {"0": {"bogo_ops": 2478, "real_time_secs": 23.05, "usr_time_secs": 11.01, "sys_time_secs": 558.06, "bogo_ops_s_real_time": 107.5, "bogo_ops_s_usr_sys_time": 4.35, "cpu_used_per_instance": 2.82, "rss_max_kb": 364884, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 13:46:56.640987 2026-07-04 11:58:54.193208 +88 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 840 --vm-method all --vm-bytes 70% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 454.99}, "metrics": {"0": {"bogo_ops": 3153089, "real_time_secs": 33.27, "usr_time_secs": 276.02, "sys_time_secs": 145.7, "bogo_ops_s_real_time": 94762.47, "bogo_ops_s_usr_sys_time": 7476.71, "cpu_used_per_instance": 1.51, "rss_max_kb": 4252, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 840, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 13:50:17.823803 2026-07-04 11:58:54.193208 +89 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mmaphuge"}, "time": {"duration_sec": 582.57}, "metrics": {"0": {"bogo_ops": 2632, "real_time_secs": 29.09, "usr_time_secs": 9.8, "sys_time_secs": 543.68, "bogo_ops_s_real_time": 90.47, "bogo_ops_s_usr_sys_time": 4.76, "cpu_used_per_instance": 2.34, "rss_max_kb": 133016, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 13:52:12.230794 2026-07-04 11:58:54.193208 +90 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 898 --vm-method all --vm-bytes 70% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 488.51}, "metrics": {"0": {"bogo_ops": 3335091, "real_time_secs": 33.26, "usr_time_secs": 299.53, "sys_time_secs": 155.72, "bogo_ops_s_real_time": 100266.79, "bogo_ops_s_usr_sys_time": 7325.89, "cpu_used_per_instance": 1.52, "rss_max_kb": 4128, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 898, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 13:55:36.848307 2026-07-04 11:58:54.193208 +141 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 14:49:30' --until '2026-07-04 14:55:08' 0 systemd errors records 2026-07-04 14:49:30.326239 2026-07-04 14:55:08.618352 +162 7 loader {"profiles_count": 12, "required_timeout_sec": 60, "provided_timeout_sec": 50} 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +91 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mmaphuge"}, "time": {"duration_sec": 557.3}, "metrics": {"0": {"bogo_ops": 2592, "real_time_secs": 25.38, "usr_time_secs": 10.56, "sys_time_secs": 521.36, "bogo_ops_s_real_time": 102.12, "bogo_ops_s_usr_sys_time": 4.87, "cpu_used_per_instance": 2.67, "rss_max_kb": 89048, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 13:57:35.934944 2026-07-04 11:58:54.193208 +92 4 loader null 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +93 4 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 14:01:41.707525 2026-07-04 14:01:41.70753 +94 4 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 13:42:27' --until '2026-07-04 14:01:38' 276 OOM records 2026-07-04 13:42:27.460038 2026-07-04 14:01:38.721101 +95 4 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 13:42:27' --until '2026-07-04 14:01:38' 2 systemd errors records 2026-07-04 13:42:27.460038 2026-07-04 14:01:38.721101 +96 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 95% --syscall-method all --verify --metrics {"pgscan_time_sec": 4.0, "tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 159.62}, "metrics": {"0": {"bogo_ops": 745520, "real_time_secs": 33.27, "usr_time_secs": 89.02, "sys_time_secs": 37.33, "bogo_ops_s_real_time": 22405.68, "bogo_ops_s_usr_sys_time": 5900.41, "cpu_used_per_instance": 94.93, "rss_max_kb": 663792, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 14:01:51.122228 2026-07-04 11:58:54.193208 +97 4 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 14:02:28.594307 2026-07-04 14:02:28.59431 +98 4 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 14:01:49' --until '2026-07-04 14:02:26' 0 OOM records 2026-07-04 14:01:49.29054 2026-07-04 14:02:26.026441 +99 4 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 14:01:49' --until '2026-07-04 14:02:26' 0 systemd errors records 2026-07-04 14:01:49.29054 2026-07-04 14:02:26.026441 +100 5 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-04 11:58:54.192277 2026-07-04 11:58:54.192283 +101 5 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 14:32:36.429881 2026-07-04 14:32:36.429885 +102 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 14:32:35' --until '2026-07-04 14:32:36' 0 OOM records 2026-07-04 14:32:35.562702 2026-07-04 14:32:36.007832 +103 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 14:32:35' --until '2026-07-04 14:32:36' 0 systemd errors records 2026-07-04 14:32:35.562702 2026-07-04 14:32:36.007832 +104 5 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-04 11:58:54.192277 2026-07-04 11:58:54.192283 +105 5 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 14:32:51.958551 2026-07-04 14:32:51.958555 +106 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 14:32:37' --until '2026-07-04 14:32:51' 0 OOM records 2026-07-04 14:32:37.539703 2026-07-04 14:32:51.532117 +107 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 14:32:37' --until '2026-07-04 14:32:51' 0 systemd errors records 2026-07-04 14:32:37.539703 2026-07-04 14:32:51.532117 +108 5 loader /usr/bin/kirk --suite-timeout 50 --run-suite syscalls-ipc --json-report /var/tmp/ltp-results/syscalls-ipc_2026-07-04_14:32:53.json {"tool": "kirk", "test_type": {}, "time": {"duration_sec": 0.61}, "metrics": {"0": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgxD6cXC as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl01.c:37: TPASS: msgctl(IPC_STAT)\\nmsgctl01.c:40: TPASS: msg_stime = 0\\nmsgctl01.c:45: TPASS: msg_rtime = 0\\nmsgctl01.c:50: TPASS: msg_ctime = 1783167428, expected 1783167428\\nmsgctl01.c:58: TPASS: msg_qnum = 0\\nmsgctl01.c:63: TPASS: msg_qbytes = 16384\\nmsgctl01.c:68: TPASS: msg_lspid = 0\\nmsgctl01.c:73: TPASS: msg_lrpid = 0\\nmsgctl01.c:78: TPASS: msg_perm.__key == 1629028369\\nmsgctl01.c:85: TPASS: msg_perm.uid = 0\\nmsgctl01.c:92: TPASS: msg_perm.gid = 0\\nmsgctl01.c:99: TPASS: msg_perm.cuid = 0\\nmsgctl01.c:106: TPASS: msg_perm.cgid = 0\\nmsgctl01.c:113: TPASS: msg_perm.mode = 0660\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1092672348022461}, "1": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msg3mxmAs as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl02.c:34: TPASS: msgctl(IPC_SET) msg_qbytes - 1\\nmsgctl02.c:40: TPASS: msg_qbytes = 16383\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10235309600830078}, "2": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgCgojWs as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl03.c:30: TPASS: msgctl(IPC_RMID)\\nmsgctl03.c:34: TPASS: msgctl(IPC_STAT): EINVAL (22)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08865928649902344}, "3": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgWYKH8W as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl04.c:103: TINFO: Testing variant: libc msgctl()\\nmsgctl04.c:79: TPASS: msgctl(4, 2, 0x5565a2a41b00) : EACCES (13)\\nmsgctl04.c:75: TCONF: EFAULT is skipped for libc variant\\nmsgctl04.c:75: TCONF: EFAULT is skipped for libc variant\\nmsgctl04.c:79: TPASS: msgctl(5, -1, 0x5565a2a41b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(-1, 2, 0x5565a2a41b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(-1, 1, 0x5565a2a41b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(3, 0, (nil)) : EPERM (1)\\nmsgctl04.c:103: TINFO: Testing variant: __NR_msgctl syscall\\nmsgctl04.c:79: TPASS: msgctl(7, 2, 0x5565a2a41b00) : EACCES (13)\\nmsgctl04.c:79: TPASS: msgctl(8, 2, 0xffffffffffffffff) : EFAULT (14)\\nmsgctl04.c:79: TPASS: msgctl(8, 1, 0xffffffffffffffff) : EFAULT (14)\\nmsgctl04.c:79: TPASS: msgctl(8, -1, 0x5565a2a41b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(-1, 2, 0x5565a2a41b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(-1, 1, 0x5565a2a41b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(6, 0, (nil)) : EPERM (1)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1066131591796875}, "4": {"test": "msgctl05", "status": "conf", "arguments": [], "log": "tst_test.c:1276: TCONF: test requires struct msqid64_ds to have the time_high fields\\n", "retval": ["32"], "duration": 0.02639293670654297}, "5": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl06.c:104: TINFO: Test MSG_STAT_ANY with nobody user\\nmsgctl06.c:120: TPASS: MSG_INFO returned valid index 9 to msgid 9\\nmsgctl06.c:130: TPASS: Counted used = 1\\nmsgctl06.c:77: TPASS: queue_cnt = 1\\nmsgctl06.c:84: TPASS: msg_cnt = 1\\nmsgctl06.c:91: TPASS: msg_bytes = 5\\nmsgctl06.c:104: TINFO: Test MSG_STAT_ANY with root user\\nmsgctl06.c:120: TPASS: MSG_INFO returned valid index 9 to msgid 9\\nmsgctl06.c:130: TPASS: Counted used = 1\\nmsgctl06.c:77: TPASS: queue_cnt = 1\\nmsgctl06.c:84: TPASS: msg_cnt = 1\\nmsgctl06.c:91: TPASS: msg_bytes = 5\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09472298622131348}, "6": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl12.c:44: TPASS: msgctl() test IPC_INFO succeeded\\nmsgctl12.c:44: TPASS: msgctl() test MSG_INFO succeeded\\nmsgctl12.c:44: TPASS: msgctl() test MSG_STAT succeeded\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08681797981262207}, "7": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "8": {"test": "msgget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "9": {"test": "msgget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "10": {"test": "msgget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "11": {"test": "msgget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "12": {"test": "msgget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "13": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "14": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "15": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "16": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "17": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "18": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "19": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "20": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "21": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "22": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "23": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "24": {"test": "semctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "25": {"test": "semctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "26": {"test": "semctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "27": {"test": "semctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "28": {"test": "semctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "29": {"test": "semctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "30": {"test": "semctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "31": {"test": "semctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "32": {"test": "semctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "33": {"test": "semget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "34": {"test": "semget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "35": {"test": "semget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "36": {"test": "semop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "37": {"test": "semop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "38": {"test": "semop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "39": {"test": "shmat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "40": {"test": "shmat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "41": {"test": "shmat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "42": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "43": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "44": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "45": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "46": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "47": {"test": "shmctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "48": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "49": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "50": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "51": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "52": {"test": "shmget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "53": {"test": "shmget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "54": {"test": "shmget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "55": {"test": "shmget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "56": {"test": "shmget06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "summary": {"passed": 43, "failed": 0, "broken": 0, "skipped": 53, "warnings": 0}}} 2026-07-04 14:32:53.109111 2026-07-04 11:58:54.192283 +109 5 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 14:35:59.137262 2026-07-04 14:35:59.137265 +110 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 14:32:52' --until '2026-07-04 14:35:58' 0 OOM records 2026-07-04 14:32:52.782836 2026-07-04 14:35:58.674276 +111 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 14:32:52' --until '2026-07-04 14:35:58' 0 systemd errors records 2026-07-04 14:32:52.782836 2026-07-04 14:35:58.674276 +112 5 loader /usr/bin/perf bench --format default --repeat 3 sched messaging {"tool": "perf", "test_type": {"benchmark": "sched/messaging"}, "time": {"duration_sec": 8.99}, "metrics": {}} 2026-07-04 14:38:12.444648 2026-07-04 14:38:22.961308 +113 5 loader /usr/bin/perf bench --format default --repeat 3 sched messaging --thread {"tool": "perf", "test_type": {"benchmark": "sched/messaging"}, "time": {"duration_sec": 8.473}, "metrics": {}} 2026-07-04 14:38:22.968498 2026-07-04 14:38:31.884385 +114 5 loader /usr/bin/perf bench --format default --repeat 3 sched pipe {"tool": "perf", "test_type": {"benchmark": "sched/pipe"}, "time": {"duration_sec": 173.586}, "metrics": {"usecs_per_op": 173.586036, "ops_per_sec": 5760}} 2026-07-04 14:38:31.88916 2026-07-04 14:41:25.627198 +115 5 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 14:41:26.058434 2026-07-04 14:41:26.058437 +116 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 14:36:01' --until '2026-07-04 14:41:25' 0 OOM records 2026-07-04 14:36:01.544483 2026-07-04 14:41:25.632285 +117 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 14:36:01' --until '2026-07-04 14:41:25' 0 systemd errors records 2026-07-04 14:36:01.544483 2026-07-04 14:41:25.632285 +118 5 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 204.18}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 29, "real_time_secs": 12.08, "usr_time_secs": 0.2, "sys_time_secs": 1.46, "bogo_ops_s_real_time": 2.4, "bogo_ops_s_usr_sys_time": 17.46, "cpu_used_per_instance": 13.75, "rss_max_kb": 2228, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 10547, "real_time_secs": 12.05, "usr_time_secs": 0.46, "sys_time_secs": 0.96, "bogo_ops_s_real_time": 875.43, "bogo_ops_s_usr_sys_time": 7432.4, "cpu_used_per_instance": 11.78, "rss_max_kb": 2260, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 16357, "real_time_secs": 12.04, "usr_time_secs": 0.32, "sys_time_secs": 1.48, "bogo_ops_s_real_time": 1359.0, "bogo_ops_s_usr_sys_time": 9099.3, "cpu_used_per_instance": 14.94, "rss_max_kb": 2344, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 46178, "real_time_secs": 12.03, "usr_time_secs": 0.52, "sys_time_secs": 1.38, "bogo_ops_s_real_time": 3838.58, "bogo_ops_s_usr_sys_time": 24285.93, "cpu_used_per_instance": 15.81, "rss_max_kb": 3124, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 22522, "real_time_secs": 12.04, "usr_time_secs": 0.39, "sys_time_secs": 1.23, "bogo_ops_s_real_time": 1871.2, "bogo_ops_s_usr_sys_time": 13910.54, "cpu_used_per_instance": 13.45, "rss_max_kb": 2224, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 3, "real_time_secs": 12.08, "usr_time_secs": 0.06, "sys_time_secs": 1.08, "bogo_ops_s_real_time": 0.25, "bogo_ops_s_usr_sys_time": 2.64, "cpu_used_per_instance": 9.41, "rss_max_kb": 2256, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 2, "real_time_secs": 12.08, "usr_time_secs": 0.02, "sys_time_secs": 0.53, "bogo_ops_s_real_time": 0.17, "bogo_ops_s_usr_sys_time": 3.64, "cpu_used_per_instance": 4.55, "rss_max_kb": 26360, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 2058555, "real_time_secs": 12.05, "usr_time_secs": 2.12, "sys_time_secs": 0.06, "bogo_ops_s_real_time": 170767.5, "bogo_ops_s_usr_sys_time": 944932.8, "cpu_used_per_instance": 18.07, "rss_max_kb": 2224, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 31729, "real_time_secs": 12.06, "usr_time_secs": 0.8, "sys_time_secs": 2.17, "bogo_ops_s_real_time": 2631.36, "bogo_ops_s_usr_sys_time": 10698.02, "cpu_used_per_instance": 24.6, "rss_max_kb": 2224, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 824, "real_time_secs": 12.06, "usr_time_secs": 0.48, "sys_time_secs": 1.5, "bogo_ops_s_real_time": 68.34, "bogo_ops_s_usr_sys_time": 416.9, "cpu_used_per_instance": 16.39, "rss_max_kb": 2088, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1463104, "real_time_secs": 12.04, "usr_time_secs": 2.3, "sys_time_secs": 0.07, "bogo_ops_s_real_time": 121524.59, "bogo_ops_s_usr_sys_time": 617545.4, "cpu_used_per_instance": 19.68, "rss_max_kb": 2088, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 157643, "real_time_secs": 12.14, "usr_time_secs": 2.97, "sys_time_secs": 23.66, "bogo_ops_s_real_time": 12982.37, "bogo_ops_s_usr_sys_time": 5920.59, "cpu_used_per_instance": 219.28, "rss_max_kb": 2088, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 9476, "real_time_secs": 12.03, "usr_time_secs": 0.44, "sys_time_secs": 0.74, "bogo_ops_s_real_time": 787.65, "bogo_ops_s_usr_sys_time": 8018.97, "cpu_used_per_instance": 9.82, "rss_max_kb": 2088, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 13, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 14:41:28.46838 2026-07-04 11:58:54.192283 +160 7 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:03:48' --until '2026-07-04 15:05:34' 0 OOM records 2026-07-04 15:03:48.156327 2026-07-04 15:05:34.724304 +161 7 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:03:48' --until '2026-07-04 15:05:34' 0 systemd errors records 2026-07-04 15:03:48.156327 2026-07-04 15:05:34.724304 +119 5 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 2 --syscall-method all --mq 2 --pipe 2 --sem 2 --sem-sysv 2 --shm 2 --shm-sysv 2 --verify --dekker 2 --fifo 2 --futex 2 --peterson 2 --pipeherd 2 --sigq 2 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 205.89}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 32, "real_time_secs": 12.23, "usr_time_secs": 0.24, "sys_time_secs": 1.58, "bogo_ops_s_real_time": 2.62, "bogo_ops_s_usr_sys_time": 17.58, "cpu_used_per_instance": 7.44, "rss_max_kb": 2336, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 13148, "real_time_secs": 12.05, "usr_time_secs": 0.61, "sys_time_secs": 1.16, "bogo_ops_s_real_time": 1091.57, "bogo_ops_s_usr_sys_time": 7449.79, "cpu_used_per_instance": 7.33, "rss_max_kb": 2268, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 18282, "real_time_secs": 12.04, "usr_time_secs": 0.36, "sys_time_secs": 1.67, "bogo_ops_s_real_time": 1518.48, "bogo_ops_s_usr_sys_time": 9013.54, "cpu_used_per_instance": 8.42, "rss_max_kb": 2396, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 48569, "real_time_secs": 12.06, "usr_time_secs": 0.55, "sys_time_secs": 1.59, "bogo_ops_s_real_time": 4026.72, "bogo_ops_s_usr_sys_time": 22610.32, "cpu_used_per_instance": 8.9, "rss_max_kb": 3024, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 8361, "real_time_secs": 12.02, "usr_time_secs": 0.16, "sys_time_secs": 0.71, "bogo_ops_s_real_time": 695.42, "bogo_ops_s_usr_sys_time": 9534.77, "cpu_used_per_instance": 3.65, "rss_max_kb": 2140, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 9, "real_time_secs": 12.22, "usr_time_secs": 0.06, "sys_time_secs": 1.19, "bogo_ops_s_real_time": 0.74, "bogo_ops_s_usr_sys_time": 7.18, "cpu_used_per_instance": 5.13, "rss_max_kb": 2140, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 10, "real_time_secs": 12.33, "usr_time_secs": 0.06, "sys_time_secs": 0.69, "bogo_ops_s_real_time": 0.81, "bogo_ops_s_usr_sys_time": 13.32, "cpu_used_per_instance": 3.04, "rss_max_kb": 10064, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 2184575, "real_time_secs": 12.08, "usr_time_secs": 2.31, "sys_time_secs": 0.06, "bogo_ops_s_real_time": 180906.68, "bogo_ops_s_usr_sys_time": 923990.88, "cpu_used_per_instance": 9.79, "rss_max_kb": 2276, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 35098, "real_time_secs": 12.06, "usr_time_secs": 1.0, "sys_time_secs": 2.26, "bogo_ops_s_real_time": 2910.42, "bogo_ops_s_usr_sys_time": 10774.05, "cpu_used_per_instance": 13.51, "rss_max_kb": 2204, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 763, "real_time_secs": 12.02, "usr_time_secs": 0.62, "sys_time_secs": 1.59, "bogo_ops_s_real_time": 63.49, "bogo_ops_s_usr_sys_time": 345.12, "cpu_used_per_instance": 9.2, "rss_max_kb": 2140, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1177751, "real_time_secs": 12.05, "usr_time_secs": 2.33, "sys_time_secs": 0.06, "bogo_ops_s_real_time": 97761.22, "bogo_ops_s_usr_sys_time": 492832.33, "cpu_used_per_instance": 9.92, "rss_max_kb": 2276, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 187896, "real_time_secs": 12.23, "usr_time_secs": 3.68, "sys_time_secs": 22.71, "bogo_ops_s_real_time": 15364.81, "bogo_ops_s_usr_sys_time": 7119.92, "cpu_used_per_instance": 107.9, "rss_max_kb": 2140, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 9973, "real_time_secs": 12.02, "usr_time_secs": 0.44, "sys_time_secs": 0.79, "bogo_ops_s_real_time": 829.78, "bogo_ops_s_usr_sys_time": 8124.39, "cpu_used_per_instance": 5.11, "rss_max_kb": 2140, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 26, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 14:41:42.87089 2026-07-04 11:58:54.192283 +120 5 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 3 --syscall-method all --mq 3 --pipe 3 --sem 3 --sem-sysv 3 --shm 3 --shm-sysv 3 --verify --dekker 3 --fifo 3 --futex 3 --peterson 3 --pipeherd 3 --sigq 3 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 207.45}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 39, "real_time_secs": 12.37, "usr_time_secs": 0.29, "sys_time_secs": 1.92, "bogo_ops_s_real_time": 3.15, "bogo_ops_s_usr_sys_time": 17.68, "cpu_used_per_instance": 5.95, "rss_max_kb": 2260, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 13825, "real_time_secs": 12.04, "usr_time_secs": 0.63, "sys_time_secs": 1.21, "bogo_ops_s_real_time": 1148.67, "bogo_ops_s_usr_sys_time": 7503.28, "cpu_used_per_instance": 5.1, "rss_max_kb": 2272, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 19132, "real_time_secs": 12.08, "usr_time_secs": 0.34, "sys_time_secs": 1.76, "bogo_ops_s_real_time": 1584.26, "bogo_ops_s_usr_sys_time": 9118.63, "cpu_used_per_instance": 5.79, "rss_max_kb": 2516, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 49713, "real_time_secs": 12.11, "usr_time_secs": 0.59, "sys_time_secs": 1.81, "bogo_ops_s_real_time": 4105.77, "bogo_ops_s_usr_sys_time": 20732.55, "cpu_used_per_instance": 6.6, "rss_max_kb": 3176, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 7259, "real_time_secs": 12.09, "usr_time_secs": 0.16, "sys_time_secs": 0.72, "bogo_ops_s_real_time": 600.45, "bogo_ops_s_usr_sys_time": 8269.58, "cpu_used_per_instance": 2.42, "rss_max_kb": 2264, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 13, "real_time_secs": 12.39, "usr_time_secs": 0.18, "sys_time_secs": 1.28, "bogo_ops_s_real_time": 1.05, "bogo_ops_s_usr_sys_time": 8.88, "cpu_used_per_instance": 3.94, "rss_max_kb": 6544, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 6, "real_time_secs": 12.43, "usr_time_secs": 0.05, "sys_time_secs": 0.6, "bogo_ops_s_real_time": 0.48, "bogo_ops_s_usr_sys_time": 9.17, "cpu_used_per_instance": 1.75, "rss_max_kb": 9904, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 2973189, "real_time_secs": 12.09, "usr_time_secs": 2.57, "sys_time_secs": 0.07, "bogo_ops_s_real_time": 245869.62, "bogo_ops_s_usr_sys_time": 1127090.42, "cpu_used_per_instance": 7.27, "rss_max_kb": 2120, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 38298, "real_time_secs": 12.1, "usr_time_secs": 1.01, "sys_time_secs": 2.52, "bogo_ops_s_real_time": 3165.89, "bogo_ops_s_usr_sys_time": 10849.37, "cpu_used_per_instance": 9.73, "rss_max_kb": 2268, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 785, "real_time_secs": 12.04, "usr_time_secs": 0.65, "sys_time_secs": 2.0, "bogo_ops_s_real_time": 65.19, "bogo_ops_s_usr_sys_time": 296.56, "cpu_used_per_instance": 7.33, "rss_max_kb": 2132, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1688200, "real_time_secs": 12.06, "usr_time_secs": 2.51, "sys_time_secs": 0.06, "bogo_ops_s_real_time": 139992.57, "bogo_ops_s_usr_sys_time": 657186.6, "cpu_used_per_instance": 7.1, "rss_max_kb": 2128, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 189508, "real_time_secs": 12.25, "usr_time_secs": 3.54, "sys_time_secs": 21.38, "bogo_ops_s_real_time": 15464.41, "bogo_ops_s_usr_sys_time": 7603.44, "cpu_used_per_instance": 67.8, "rss_max_kb": 2128, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 12079, "real_time_secs": 12.0, "usr_time_secs": 0.54, "sys_time_secs": 1.01, "bogo_ops_s_real_time": 1006.22, "bogo_ops_s_usr_sys_time": 7780.78, "cpu_used_per_instance": 4.31, "rss_max_kb": 2128, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 39, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 14:41:55.711115 2026-07-04 11:58:54.192283 +121 5 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 4 --syscall-method all --mq 4 --pipe 4 --sem 4 --sem-sysv 4 --shm 4 --shm-sysv 4 --verify --dekker 4 --fifo 4 --futex 4 --peterson 4 --pipeherd 4 --sigq 4 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 210.15}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 45, "real_time_secs": 12.61, "usr_time_secs": 0.35, "sys_time_secs": 2.25, "bogo_ops_s_real_time": 3.57, "bogo_ops_s_usr_sys_time": 17.35, "cpu_used_per_instance": 5.14, "rss_max_kb": 2240, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 16910, "real_time_secs": 12.15, "usr_time_secs": 0.72, "sys_time_secs": 1.52, "bogo_ops_s_real_time": 1391.78, "bogo_ops_s_usr_sys_time": 7547.58, "cpu_used_per_instance": 4.61, "rss_max_kb": 2344, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 23616, "real_time_secs": 12.21, "usr_time_secs": 0.41, "sys_time_secs": 2.24, "bogo_ops_s_real_time": 1934.8, "bogo_ops_s_usr_sys_time": 8904.94, "cpu_used_per_instance": 5.43, "rss_max_kb": 2608, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 54543, "real_time_secs": 12.21, "usr_time_secs": 0.66, "sys_time_secs": 2.07, "bogo_ops_s_real_time": 4468.72, "bogo_ops_s_usr_sys_time": 19963.57, "cpu_used_per_instance": 5.6, "rss_max_kb": 2952, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 6180, "real_time_secs": 12.06, "usr_time_secs": 0.13, "sys_time_secs": 0.71, "bogo_ops_s_real_time": 512.38, "bogo_ops_s_usr_sys_time": 7408.09, "cpu_used_per_instance": 1.73, "rss_max_kb": 2352, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 21, "real_time_secs": 12.62, "usr_time_secs": 0.21, "sys_time_secs": 1.53, "bogo_ops_s_real_time": 1.66, "bogo_ops_s_usr_sys_time": 12.02, "cpu_used_per_instance": 3.46, "rss_max_kb": 2344, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 6, "real_time_secs": 12.8, "usr_time_secs": 0.08, "sys_time_secs": 1.04, "bogo_ops_s_real_time": 0.47, "bogo_ops_s_usr_sys_time": 5.37, "cpu_used_per_instance": 2.18, "rss_max_kb": 18168, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 3003761, "real_time_secs": 12.13, "usr_time_secs": 2.93, "sys_time_secs": 0.08, "bogo_ops_s_real_time": 247595.89, "bogo_ops_s_usr_sys_time": 998260.22, "cpu_used_per_instance": 6.2, "rss_max_kb": 2352, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 44625, "real_time_secs": 12.14, "usr_time_secs": 1.19, "sys_time_secs": 2.97, "bogo_ops_s_real_time": 3674.92, "bogo_ops_s_usr_sys_time": 10735.01, "cpu_used_per_instance": 8.56, "rss_max_kb": 2220, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 1040, "real_time_secs": 12.06, "usr_time_secs": 0.77, "sys_time_secs": 2.15, "bogo_ops_s_real_time": 86.27, "bogo_ops_s_usr_sys_time": 357.07, "cpu_used_per_instance": 6.04, "rss_max_kb": 2276, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1685419, "real_time_secs": 12.08, "usr_time_secs": 2.89, "sys_time_secs": 0.09, "bogo_ops_s_real_time": 139512.12, "bogo_ops_s_usr_sys_time": 565784.55, "cpu_used_per_instance": 6.16, "rss_max_kb": 2356, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 171635, "real_time_secs": 12.33, "usr_time_secs": 3.26, "sys_time_secs": 18.86, "bogo_ops_s_real_time": 13919.93, "bogo_ops_s_usr_sys_time": 7758.99, "cpu_used_per_instance": 44.85, "rss_max_kb": 2220, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 12899, "real_time_secs": 12.01, "usr_time_secs": 0.58, "sys_time_secs": 1.05, "bogo_ops_s_real_time": 1074.0, "bogo_ops_s_usr_sys_time": 7889.19, "cpu_used_per_instance": 3.4, "rss_max_kb": 2216, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 52, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 14:42:08.849551 2026-07-04 11:58:54.192283 +122 5 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 14:42:22.808738 2026-07-04 14:42:22.808742 +123 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 14:41:27' --until '2026-07-04 14:42:22' 0 OOM records 2026-07-04 14:41:27.983146 2026-07-04 14:42:22.3842 +124 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 14:41:27' --until '2026-07-04 14:42:22' 0 systemd errors records 2026-07-04 14:41:27.983146 2026-07-04 14:42:22.3842 +125 6 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 52.424, "kernel_time": 3.74, "userspace_time": 74.71000000000001, "total_time": 130.875} 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +126 6 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 14:49:01.86839 2026-07-04 14:49:01.868394 +127 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 14:48:57' --until '2026-07-04 14:48:59' 0 OOM records 2026-07-04 14:48:57.95049 2026-07-04 14:48:59.601455 +128 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 14:48:57' --until '2026-07-04 14:48:59' 0 systemd errors records 2026-07-04 14:48:57.95049 2026-07-04 14:48:59.601455 +129 6 loader systemd-analyze critical-chain [{"service_name": "cloud-config.service", "slow_time_s": 7.318}, {"service_name": "cloud-init.service", "slow_time_s": 13.249}, {"service_name": "wicked.service", "slow_time_s": 14.412}, {"service_name": "cloud-init-local.service", "slow_time_s": 15.218}] 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +130 6 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 14:49:15.31351 2026-07-04 14:49:15.313514 +131 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 14:49:05' --until '2026-07-04 14:49:12' 0 OOM records 2026-07-04 14:49:05.479386 2026-07-04 14:49:12.590116 +132 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 14:49:05' --until '2026-07-04 14:49:12' 0 systemd errors records 2026-07-04 14:49:05.479386 2026-07-04 14:49:12.590116 +133 6 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 14:49:22.330244 2026-07-04 14:49:22.330247 +134 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 14:49:18' --until '2026-07-04 14:49:19' 0 OOM records 2026-07-04 14:49:18.144084 2026-07-04 14:49:19.788089 +135 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 14:49:18' --until '2026-07-04 14:49:19' 0 systemd errors records 2026-07-04 14:49:18.144084 2026-07-04 14:49:19.788089 +136 6 loader /usr/bin/perf bench --format default --repeat 3 sched messaging {"tool": "perf", "test_type": {"benchmark": "sched/messaging"}, "time": {"duration_sec": 1.436}, "metrics": {}} 2026-07-04 14:53:46.470914 2026-07-04 14:53:49.711549 +137 6 loader /usr/bin/perf bench --format default --repeat 3 sched messaging --thread {"tool": "perf", "test_type": {"benchmark": "sched/messaging"}, "time": {"duration_sec": 1.007}, "metrics": {}} 2026-07-04 14:53:49.726015 2026-07-04 14:53:51.63538 +138 6 loader /usr/bin/perf bench --format default --repeat 3 sched pipe {"tool": "perf", "test_type": {"benchmark": "sched/pipe"}, "time": {"duration_sec": 76.282}, "metrics": {"usecs_per_op": 76.282697, "ops_per_sec": 13109}} 2026-07-04 14:53:51.644229 2026-07-04 14:55:08.614724 +139 6 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 14:55:11.2616 2026-07-04 14:55:11.261603 +142 6 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 216.2}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 59, "real_time_secs": 12.05, "usr_time_secs": 0.08, "sys_time_secs": 1.58, "bogo_ops_s_real_time": 4.89, "bogo_ops_s_usr_sys_time": 35.37, "cpu_used_per_instance": 13.84, "rss_max_kb": 2148, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 32433, "real_time_secs": 12.02, "usr_time_secs": 0.18, "sys_time_secs": 1.6, "bogo_ops_s_real_time": 2698.54, "bogo_ops_s_usr_sys_time": 18216.92, "cpu_used_per_instance": 14.81, "rss_max_kb": 3816, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 49942, "real_time_secs": 12.01, "usr_time_secs": 0.12, "sys_time_secs": 1.62, "bogo_ops_s_real_time": 4158.3, "bogo_ops_s_usr_sys_time": 28718.72, "cpu_used_per_instance": 14.48, "rss_max_kb": 2148, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 139200, "real_time_secs": 12.0, "usr_time_secs": 0.3, "sys_time_secs": 1.32, "bogo_ops_s_real_time": 11595.21, "bogo_ops_s_usr_sys_time": 85751.04, "cpu_used_per_instance": 13.52, "rss_max_kb": 6372, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 148447, "real_time_secs": 12.01, "usr_time_secs": 0.14, "sys_time_secs": 1.58, "bogo_ops_s_real_time": 12356.32, "bogo_ops_s_usr_sys_time": 85966.68, "cpu_used_per_instance": 14.37, "rss_max_kb": 2020, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 6, "real_time_secs": 12.07, "usr_time_secs": 0.03, "sys_time_secs": 0.87, "bogo_ops_s_real_time": 0.5, "bogo_ops_s_usr_sys_time": 6.68, "cpu_used_per_instance": 7.44, "rss_max_kb": 17476, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 6, "real_time_secs": 12.11, "usr_time_secs": 0.02, "sys_time_secs": 0.43, "bogo_ops_s_real_time": 0.5, "bogo_ops_s_usr_sys_time": 13.25, "cpu_used_per_instance": 3.74, "rss_max_kb": 59108, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 214804, "real_time_secs": 12.01, "usr_time_secs": 0.06, "sys_time_secs": 1.57, "bogo_ops_s_real_time": 17882.7, "bogo_ops_s_usr_sys_time": 131545.14, "cpu_used_per_instance": 13.59, "rss_max_kb": 1892, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 57799, "real_time_secs": 12.03, "usr_time_secs": 0.19, "sys_time_secs": 3.14, "bogo_ops_s_real_time": 4804.96, "bogo_ops_s_usr_sys_time": 17363.44, "cpu_used_per_instance": 27.67, "rss_max_kb": 1892, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 8472, "real_time_secs": 24.02, "usr_time_secs": 0.4, "sys_time_secs": 2.33, "bogo_ops_s_real_time": 352.69, "bogo_ops_s_usr_sys_time": 3099.06, "cpu_used_per_instance": 11.38, "rss_max_kb": 1892, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 177389, "real_time_secs": 12.01, "usr_time_secs": 0.9, "sys_time_secs": 1.42, "bogo_ops_s_real_time": 14766.35, "bogo_ops_s_usr_sys_time": 76183.63, "cpu_used_per_instance": 19.38, "rss_max_kb": 3988, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 333893, "real_time_secs": 12.1, "usr_time_secs": 1.31, "sys_time_secs": 24.76, "bogo_ops_s_real_time": 27597.63, "bogo_ops_s_usr_sys_time": 12809.97, "cpu_used_per_instance": 215.44, "rss_max_kb": 1892, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 73860, "real_time_secs": 12.0, "usr_time_secs": 0.21, "sys_time_secs": 1.6, "bogo_ops_s_real_time": 6153.19, "bogo_ops_s_usr_sys_time": 40921.14, "cpu_used_per_instance": 15.04, "rss_max_kb": 1892, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 13, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 14:55:20.716309 2026-07-04 11:58:54.193208 +143 6 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 2 --syscall-method all --mq 2 --pipe 2 --sem 2 --sem-sysv 2 --shm 2 --shm-sysv 2 --verify --dekker 2 --fifo 2 --futex 2 --peterson 2 --pipeherd 2 --sigq 2 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 220.71}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 29, "real_time_secs": 12.35, "usr_time_secs": 0.02, "sys_time_secs": 0.47, "bogo_ops_s_real_time": 2.35, "bogo_ops_s_usr_sys_time": 58.6, "cpu_used_per_instance": 2.0, "rss_max_kb": 1968, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 8216, "real_time_secs": 12.26, "usr_time_secs": 0.05, "sys_time_secs": 0.48, "bogo_ops_s_real_time": 670.38, "bogo_ops_s_usr_sys_time": 15354.74, "cpu_used_per_instance": 2.18, "rss_max_kb": 3900, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 13606, "real_time_secs": 12.19, "usr_time_secs": 0.02, "sys_time_secs": 0.4, "bogo_ops_s_real_time": 1115.9, "bogo_ops_s_usr_sys_time": 32560.99, "cpu_used_per_instance": 1.71, "rss_max_kb": 2096, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 29800, "real_time_secs": 12.16, "usr_time_secs": 0.03, "sys_time_secs": 0.33, "bogo_ops_s_real_time": 2450.16, "bogo_ops_s_usr_sys_time": 82965.83, "cpu_used_per_instance": 1.48, "rss_max_kb": 6320, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 7301, "real_time_secs": 12.12, "usr_time_secs": 0.04, "sys_time_secs": 0.47, "bogo_ops_s_real_time": 602.51, "bogo_ops_s_usr_sys_time": 14319.22, "cpu_used_per_instance": 2.1, "rss_max_kb": 1968, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 6, "real_time_secs": 12.13, "usr_time_secs": 0.01, "sys_time_secs": 0.26, "bogo_ops_s_real_time": 0.49, "bogo_ops_s_usr_sys_time": 22.16, "cpu_used_per_instance": 1.12, "rss_max_kb": 2096, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 1, "real_time_secs": 12.28, "usr_time_secs": 0.01, "sys_time_secs": 0.12, "bogo_ops_s_real_time": 0.08, "bogo_ops_s_usr_sys_time": 7.96, "cpu_used_per_instance": 0.51, "rss_max_kb": 18224, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 80050, "real_time_secs": 12.27, "usr_time_secs": 0.02, "sys_time_secs": 0.58, "bogo_ops_s_real_time": 6525.72, "bogo_ops_s_usr_sys_time": 134788.82, "cpu_used_per_instance": 2.42, "rss_max_kb": 1840, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 37389, "real_time_secs": 12.3, "usr_time_secs": 0.06, "sys_time_secs": 0.75, "bogo_ops_s_real_time": 3039.97, "bogo_ops_s_usr_sys_time": 46371.6, "cpu_used_per_instance": 3.28, "rss_max_kb": 1840, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 962, "real_time_secs": 24.47, "usr_time_secs": 0.25, "sys_time_secs": 1.13, "bogo_ops_s_real_time": 39.32, "bogo_ops_s_usr_sys_time": 700.56, "cpu_used_per_instance": 2.81, "rss_max_kb": 1840, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 85823, "real_time_secs": 12.26, "usr_time_secs": 0.02, "sys_time_secs": 0.57, "bogo_ops_s_real_time": 7002.53, "bogo_ops_s_usr_sys_time": 145083.53, "cpu_used_per_instance": 2.41, "rss_max_kb": 3988, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 707319, "real_time_secs": 12.26, "usr_time_secs": 2.59, "sys_time_secs": 40.34, "bogo_ops_s_real_time": 57692.05, "bogo_ops_s_usr_sys_time": 16474.06, "cpu_used_per_instance": 175.1, "rss_max_kb": 1840, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 9186, "real_time_secs": 12.17, "usr_time_secs": 0.05, "sys_time_secs": 0.42, "bogo_ops_s_real_time": 754.84, "bogo_ops_s_usr_sys_time": 19402.55, "cpu_used_per_instance": 1.95, "rss_max_kb": 1840, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 26, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 14:55:34.510587 2026-07-04 11:58:54.193208 +144 6 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 3 --syscall-method all --mq 3 --pipe 3 --sem 3 --sem-sysv 3 --shm 3 --shm-sysv 3 --verify --dekker 3 --fifo 3 --futex 3 --peterson 3 --pipeherd 3 --sigq 3 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 219.82}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 54, "real_time_secs": 12.29, "usr_time_secs": 0.05, "sys_time_secs": 1.09, "bogo_ops_s_real_time": 4.4, "bogo_ops_s_usr_sys_time": 47.27, "cpu_used_per_instance": 3.1, "rss_max_kb": 2148, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 14774, "real_time_secs": 12.22, "usr_time_secs": 0.16, "sys_time_secs": 0.87, "bogo_ops_s_real_time": 1209.48, "bogo_ops_s_usr_sys_time": 14293.12, "cpu_used_per_instance": 2.82, "rss_max_kb": 3992, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 38270, "real_time_secs": 12.14, "usr_time_secs": 0.06, "sys_time_secs": 0.85, "bogo_ops_s_real_time": 3153.23, "bogo_ops_s_usr_sys_time": 41824.5, "cpu_used_per_instance": 2.51, "rss_max_kb": 2148, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 45407, "real_time_secs": 12.19, "usr_time_secs": 0.21, "sys_time_secs": 0.89, "bogo_ops_s_real_time": 3726.34, "bogo_ops_s_usr_sys_time": 41487.55, "cpu_used_per_instance": 2.99, "rss_max_kb": 6548, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 13815, "real_time_secs": 12.02, "usr_time_secs": 0.08, "sys_time_secs": 0.87, "bogo_ops_s_real_time": 1149.2, "bogo_ops_s_usr_sys_time": 14636.57, "cpu_used_per_instance": 2.62, "rss_max_kb": 2020, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 19, "real_time_secs": 12.26, "usr_time_secs": 0.04, "sys_time_secs": 0.63, "bogo_ops_s_real_time": 1.55, "bogo_ops_s_usr_sys_time": 28.32, "cpu_used_per_instance": 1.82, "rss_max_kb": 2276, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 6, "real_time_secs": 12.32, "usr_time_secs": 0.02, "sys_time_secs": 0.26, "bogo_ops_s_real_time": 0.49, "bogo_ops_s_usr_sys_time": 21.26, "cpu_used_per_instance": 0.76, "rss_max_kb": 18276, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 145698, "real_time_secs": 12.17, "usr_time_secs": 0.03, "sys_time_secs": 1.08, "bogo_ops_s_real_time": 11969.0, "bogo_ops_s_usr_sys_time": 131982.27, "cpu_used_per_instance": 3.02, "rss_max_kb": 2020, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 63881, "real_time_secs": 12.18, "usr_time_secs": 0.08, "sys_time_secs": 1.24, "bogo_ops_s_real_time": 5243.43, "bogo_ops_s_usr_sys_time": 48067.04, "cpu_used_per_instance": 3.64, "rss_max_kb": 2020, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 2554, "real_time_secs": 24.22, "usr_time_secs": 0.24, "sys_time_secs": 1.37, "bogo_ops_s_real_time": 105.44, "bogo_ops_s_usr_sys_time": 1589.88, "cpu_used_per_instance": 2.21, "rss_max_kb": 1892, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 123613, "real_time_secs": 12.06, "usr_time_secs": 0.06, "sys_time_secs": 0.99, "bogo_ops_s_real_time": 10251.98, "bogo_ops_s_usr_sys_time": 118755.31, "cpu_used_per_instance": 2.88, "rss_max_kb": 3988, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 1157094, "real_time_secs": 12.23, "usr_time_secs": 2.6, "sys_time_secs": 34.94, "bogo_ops_s_real_time": 94631.46, "bogo_ops_s_usr_sys_time": 30821.34, "cpu_used_per_instance": 102.34, "rss_max_kb": 1892, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 14691, "real_time_secs": 12.02, "usr_time_secs": 0.09, "sys_time_secs": 0.7, "bogo_ops_s_real_time": 1222.06, "bogo_ops_s_usr_sys_time": 18579.34, "cpu_used_per_instance": 2.19, "rss_max_kb": 2020, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 39, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 14:55:48.382737 2026-07-04 11:58:54.193208 +145 6 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 4 --syscall-method all --mq 4 --pipe 4 --sem 4 --sem-sysv 4 --shm 4 --shm-sysv 4 --verify --dekker 4 --fifo 4 --futex 4 --peterson 4 --pipeherd 4 --sigq 4 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 223.47}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 77, "real_time_secs": 12.67, "usr_time_secs": 0.05, "sys_time_secs": 1.34, "bogo_ops_s_real_time": 6.08, "bogo_ops_s_usr_sys_time": 55.03, "cpu_used_per_instance": 2.76, "rss_max_kb": 2148, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 19890, "real_time_secs": 12.32, "usr_time_secs": 0.15, "sys_time_secs": 1.11, "bogo_ops_s_real_time": 1614.22, "bogo_ops_s_usr_sys_time": 15668.65, "cpu_used_per_instance": 2.58, "rss_max_kb": 3996, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 64976, "real_time_secs": 12.23, "usr_time_secs": 0.18, "sys_time_secs": 1.2, "bogo_ops_s_real_time": 5312.24, "bogo_ops_s_usr_sys_time": 47193.39, "cpu_used_per_instance": 2.81, "rss_max_kb": 2148, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 57331, "real_time_secs": 12.28, "usr_time_secs": 0.2, "sys_time_secs": 1.06, "bogo_ops_s_real_time": 4667.73, "bogo_ops_s_usr_sys_time": 45668.28, "cpu_used_per_instance": 2.56, "rss_max_kb": 6416, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 13483, "real_time_secs": 12.11, "usr_time_secs": 0.11, "sys_time_secs": 0.88, "bogo_ops_s_real_time": 1113.55, "bogo_ops_s_usr_sys_time": 13617.43, "cpu_used_per_instance": 2.04, "rss_max_kb": 2020, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 29, "real_time_secs": 12.49, "usr_time_secs": 0.03, "sys_time_secs": 0.71, "bogo_ops_s_real_time": 2.32, "bogo_ops_s_usr_sys_time": 39.08, "cpu_used_per_instance": 1.49, "rss_max_kb": 2148, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 4, "real_time_secs": 12.58, "usr_time_secs": 0.02, "sys_time_secs": 0.48, "bogo_ops_s_real_time": 0.32, "bogo_ops_s_usr_sys_time": 8.03, "cpu_used_per_instance": 0.99, "rss_max_kb": 18276, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 149917, "real_time_secs": 12.45, "usr_time_secs": 0.03, "sys_time_secs": 1.17, "bogo_ops_s_real_time": 12040.29, "bogo_ops_s_usr_sys_time": 124987.6, "cpu_used_per_instance": 2.41, "rss_max_kb": 1892, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 98048, "real_time_secs": 12.15, "usr_time_secs": 0.07, "sys_time_secs": 1.39, "bogo_ops_s_real_time": 8072.1, "bogo_ops_s_usr_sys_time": 66927.56, "cpu_used_per_instance": 3.02, "rss_max_kb": 1892, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 1896, "real_time_secs": 24.6, "usr_time_secs": 0.3, "sys_time_secs": 1.5, "bogo_ops_s_real_time": 77.08, "bogo_ops_s_usr_sys_time": 1050.95, "cpu_used_per_instance": 1.83, "rss_max_kb": 1892, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 142943, "real_time_secs": 12.23, "usr_time_secs": 0.04, "sys_time_secs": 1.15, "bogo_ops_s_real_time": 11688.35, "bogo_ops_s_usr_sys_time": 119591.85, "cpu_used_per_instance": 2.44, "rss_max_kb": 3984, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 1615441, "real_time_secs": 12.4, "usr_time_secs": 2.68, "sys_time_secs": 33.98, "bogo_ops_s_real_time": 130258.71, "bogo_ops_s_usr_sys_time": 44062.83, "cpu_used_per_instance": 73.91, "rss_max_kb": 1892, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 16246, "real_time_secs": 12.14, "usr_time_secs": 0.09, "sys_time_secs": 0.9, "bogo_ops_s_real_time": 1338.01, "bogo_ops_s_usr_sys_time": 16274.01, "cpu_used_per_instance": 2.06, "rss_max_kb": 1892, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 52, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 14:56:02.418546 2026-07-04 11:58:54.193208 +146 6 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 14:56:19.305338 2026-07-04 14:56:19.305341 +147 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 14:55:18' --until '2026-07-04 14:56:16' 0 OOM records 2026-07-04 14:55:18.064025 2026-07-04 14:56:16.955053 +148 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 14:55:18' --until '2026-07-04 14:56:16' 0 systemd errors records 2026-07-04 14:55:18.064025 2026-07-04 14:56:16.955053 +149 7 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +150 7 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 15:03:32.307656 2026-07-04 15:03:32.307676 +151 7 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:03:31' --until '2026-07-04 15:03:31' 0 OOM records 2026-07-04 15:03:31.457323 2026-07-04 15:03:31.88403 +152 7 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:03:31' --until '2026-07-04 15:03:31' 0 systemd errors records 2026-07-04 15:03:31.457323 2026-07-04 15:03:31.88403 +153 7 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +154 7 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 15:03:47.324599 2026-07-04 15:03:47.324603 +155 7 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:03:33' --until '2026-07-04 15:03:46' 0 OOM records 2026-07-04 15:03:33.155754 2026-07-04 15:03:46.898206 +156 7 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:03:33' --until '2026-07-04 15:03:46' 0 systemd errors records 2026-07-04 15:03:33.155754 2026-07-04 15:03:46.898206 +157 7 loader /usr/bin/iperf3 --time 50 --port 5201 --client 10.5.0.10 --version4 --json {"tool": "iperf3", "test_type": {"protocol": "TCP"}, "time": {"duration_sec": 50.0}, "metrics": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 41520, "remote_host": "10.5.0.10", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux f88e0f09de05 6.17.0-35-generic #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 19:30:42 UTC 2 x86_64", "timestamp": {"time": "Sat, 04 Jul 2026 15:03:51 GMT", "timesecs": 1783177431}, "connecting_to": {"host": "10.5.0.10", "port": 5201}, "cookie": "tfyc4xnkvtdds7y5jlwnfh64zje2wcjyqjtn", "tcp_mss_default": 1448, "target_bitrate": 0, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.000053, "seconds": 1.00005304813385, "bytes": 110100480, "bits_per_second": 880757117.4785426, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 363, "rttvar": 527, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.000053, "seconds": 1.00005304813385, "bytes": 110100480, "bits_per_second": 880757117.4785426, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.000053, "end": 2.00095, "seconds": 1.0008970499038696, "bytes": 98959360, "bits_per_second": 790965344.61365, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 594, "rttvar": 670, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 1.000053, "end": 2.00095, "seconds": 1.0008970499038696, "bytes": 98959360, "bits_per_second": 790965344.61365, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.00095, "end": 3.001348, "seconds": 1.00039803981781, "bytes": 98041856, "bits_per_second": 784022775.7171946, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 520, "rttvar": 566, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 2.00095, "end": 3.001348, "seconds": 1.00039803981781, "bytes": 98041856, "bits_per_second": 784022775.7171946, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.001348, "end": 4.000063, "seconds": 0.9987149834632874, "bytes": 100270080, "bits_per_second": 803192755.973594, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 472, "rttvar": 590, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 3.001348, "end": 4.000063, "seconds": 0.9987149834632874, "bytes": 100270080, "bits_per_second": 803192755.973594, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.000063, "end": 5.001031, "seconds": 1.0009679794311523, "bytes": 97124352, "bits_per_second": 776243428.3278115, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 67584, "rtt": 355, "rttvar": 420, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 4.000063, "end": 5.001031, "seconds": 1.0009679794311523, "bytes": 97124352, "bits_per_second": 776243428.3278115, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.001031, "end": 6.001016, "seconds": 0.9999849796295166, "bytes": 99614720, "bits_per_second": 796929730.1797966, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 66560, "rtt": 522, "rttvar": 560, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 5.001031, "end": 6.001016, "seconds": 0.9999849796295166, "bytes": 99614720, "bits_per_second": 796929730.1797966, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.001016, "end": 7.001016, "seconds": 1, "bytes": 100794368, "bits_per_second": 806354944, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 381, "rttvar": 521, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 6.001016, "end": 7.001016, "seconds": 1, "bytes": 100794368, "bits_per_second": 806354944, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.001016, "end": 8.000271, "seconds": 0.9992550015449524, "bytes": 90570752, "bits_per_second": 725106219.01291, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 66560, "rtt": 558, "rttvar": 578, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 7.001016, "end": 8.000271, "seconds": 0.9992550015449524, "bytes": 90570752, "bits_per_second": 725106219.01291, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.000271, "end": 9.00103, "seconds": 1.00075900554657, "bytes": 106037248, "bits_per_second": 847654609.449852, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 500, "rttvar": 408, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 8.000271, "end": 9.00103, "seconds": 1.00075900554657, "bytes": 106037248, "bits_per_second": 847654609.449852, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.00103, "end": 10.000049, "seconds": 0.9990190267562866, "bytes": 116916224, "bits_per_second": 936248226.459631, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 491, "rttvar": 414, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 9.00103, "end": 10.000049, "seconds": 0.9990190267562866, "bytes": 116916224, "bits_per_second": 936248226.459631, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.000049, "end": 11.001032, "seconds": 1.0009829998016357, "bytes": 119537664, "bits_per_second": 955362191.1556038, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 67584, "rtt": 401, "rttvar": 335, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 10.000049, "end": 11.001032, "seconds": 1.0009829998016357, "bytes": 119537664, "bits_per_second": 955362191.1556038, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.001032, "end": 12.000051, "seconds": 0.9990190267562866, "bytes": 120061952, "bits_per_second": 961438761.7006973, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 499, "rttvar": 355, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 11.001032, "end": 12.000051, "seconds": 0.9990190267562866, "bytes": 120061952, "bits_per_second": 961438761.7006973, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.000051, "end": 13.000052, "seconds": 1.0000009536743164, "bytes": 125304832, "bits_per_second": 1002437700.0009117, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 513, "rttvar": 379, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 12.000051, "end": 13.000052, "seconds": 1.0000009536743164, "bytes": 125304832, "bits_per_second": 1002437700.0009117, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.000052, "end": 14.001018, "seconds": 1.00096595287323, "bytes": 125042688, "bits_per_second": 999376153.7328643, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 375, "rttvar": 368, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 13.000052, "end": 14.001018, "seconds": 1.00096595287323, "bytes": 125042688, "bits_per_second": 999376153.7328643, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.001018, "end": 15.001016, "seconds": 0.9999979734420776, "bytes": 118751232, "bits_per_second": 950011781.2539016, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 436, "rttvar": 350, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 14.001018, "end": 15.001016, "seconds": 0.9999979734420776, "bytes": 118751232, "bits_per_second": 950011781.2539016, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.001016, "end": 16.000055, "seconds": 0.9990389943122864, "bytes": 122290176, "bits_per_second": 979262484.8176744, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 433, "rttvar": 452, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 15.001016, "end": 16.000055, "seconds": 0.9990389943122864, "bytes": 122290176, "bits_per_second": 979262484.8176744, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.000055, "end": 17.001032, "seconds": 1.0009770393371582, "bytes": 114950144, "bits_per_second": 918703542.499791, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 443, "rttvar": 360, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 16.000055, "end": 17.001032, "seconds": 1.0009770393371582, "bytes": 114950144, "bits_per_second": 918703542.499791, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.001032, "end": 18.001032, "seconds": 1, "bytes": 108789760, "bits_per_second": 870318080, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 19456, "rtt": 388, "rttvar": 521, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 17.001032, "end": 18.001032, "seconds": 1, "bytes": 108789760, "bits_per_second": 870318080, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.001032, "end": 19.000803, "seconds": 0.999770998954773, "bytes": 98435072, "bits_per_second": 787660951.181105, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 19456, "rtt": 590, "rttvar": 538, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 18.001032, "end": 19.000803, "seconds": 0.999770998954773, "bytes": 98435072, "bits_per_second": 787660951.181105, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.000803, "end": 20.001031, "seconds": 1.0002280473709106, "bytes": 98566144, "bits_per_second": 788349370.9985847, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 119808, "rtt": 540, "rttvar": 632, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 19.000803, "end": 20.001031, "seconds": 1.0002280473709106, "bytes": 98566144, "bits_per_second": 788349370.9985847, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.001031, "end": 21.000047, "seconds": 0.999015986919403, "bytes": 100663296, "bits_per_second": 806099580.5315067, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 697, "rttvar": 709, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 20.001031, "end": 21.000047, "seconds": 0.999015986919403, "bytes": 100663296, "bits_per_second": 806099580.5315067, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.000047, "end": 22.001021, "seconds": 1.0009740591049194, "bytes": 99614720, "bits_per_second": 796142270.372732, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 471, "rttvar": 562, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 21.000047, "end": 22.001021, "seconds": 1.0009740591049194, "bytes": 99614720, "bits_per_second": 796142270.372732, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.001021, "end": 23.001031, "seconds": 1.0000100135803223, "bytes": 99614720, "bits_per_second": 796909780.0799075, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 19456, "rtt": 581, "rttvar": 499, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 22.001021, "end": 23.001031, "seconds": 1.0000100135803223, "bytes": 99614720, "bits_per_second": 796909780.0799075, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.001031, "end": 24.00103, "seconds": 0.9999989867210388, "bytes": 96337920, "bits_per_second": 770704140.9382913, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 493, "rttvar": 688, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 23.001031, "end": 24.00103, "seconds": 0.9999989867210388, "bytes": 96337920, "bits_per_second": 770704140.9382913, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.00103, "end": 25.000051, "seconds": 0.9990209937095642, "bytes": 98697216, "bits_per_second": 790351487.077504, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 592, "rttvar": 546, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 24.00103, "end": 25.000051, "seconds": 0.9990209937095642, "bytes": 98697216, "bits_per_second": 790351487.077504, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.000051, "end": 26.001032, "seconds": 1.0009809732437134, "bytes": 100532224, "bits_per_second": 803469609.810639, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 502, "rttvar": 607, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 25.000051, "end": 26.001032, "seconds": 1.0009809732437134, "bytes": 100532224, "bits_per_second": 803469609.810639, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.001032, "end": 27.000148, "seconds": 0.9991160035133362, "bytes": 99745792, "bits_per_second": 798672359.5598464, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 201728, "rtt": 751, "rttvar": 534, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 26.001032, "end": 27.000148, "seconds": 0.9991160035133362, "bytes": 99745792, "bits_per_second": 798672359.5598464, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.000148, "end": 28.00103, "seconds": 1.0008820295333862, "bytes": 99745792, "bits_per_second": 797263126.376656, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 644, "rttvar": 523, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 27.000148, "end": 28.00103, "seconds": 1.0008820295333862, "bytes": 99745792, "bits_per_second": 797263126.376656, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.00103, "end": 29.000061, "seconds": 0.9990310072898865, "bytes": 100663296, "bits_per_second": 806087460.8733002, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 19456, "rtt": 438, "rttvar": 527, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 28.00103, "end": 29.000061, "seconds": 0.9990310072898865, "bytes": 100663296, "bits_per_second": 806087460.8733002, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.000061, "end": 30.000055, "seconds": 0.9999939799308777, "bytes": 97517568, "bits_per_second": 780145240.5282735, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 19456, "rtt": 376, "rttvar": 499, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 29.000061, "end": 30.000055, "seconds": 0.9999939799308777, "bytes": 97517568, "bits_per_second": 780145240.5282735, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.000055, "end": 31.000065, "seconds": 1.0000100135803223, "bytes": 100663296, "bits_per_second": 805298304.0807487, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 19456, "rtt": 381, "rttvar": 511, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 30.000055, "end": 31.000065, "seconds": 1.0000100135803223, "bytes": 100663296, "bits_per_second": 805298304.0807487, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.000065, "end": 32.001033, "seconds": 1.0009679794311523, "bytes": 97517568, "bits_per_second": 779386114.2724586, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 651, "rttvar": 663, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 31.000065, "end": 32.001033, "seconds": 1.0009679794311523, "bytes": 97517568, "bits_per_second": 779386114.2724586, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.001033, "end": 33.001031, "seconds": 0.9999979734420776, "bytes": 99614720, "bits_per_second": 796919375.003273, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 119808, "rtt": 527, "rttvar": 620, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 32.001033, "end": 33.001031, "seconds": 0.9999979734420776, "bytes": 99614720, "bits_per_second": 796919375.003273, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.001031, "end": 34.000048, "seconds": 0.9990170001983643, "bytes": 97517568, "bits_per_second": 780908176.5826765, "retransmits": 1, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 426, "rttvar": 586, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 33.001031, "end": 34.000048, "seconds": 0.9990170001983643, "bytes": 97517568, "bits_per_second": 780908176.5826765, "retransmits": 1, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.000048, "end": 35.000478, "seconds": 1.00042998790741, "bytes": 96337920, "bits_per_second": 770372109.3087915, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 537, "rttvar": 658, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 34.000048, "end": 35.000478, "seconds": 1.00042998790741, "bytes": 96337920, "bits_per_second": 770372109.3087915, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.000478, "end": 36.00051, "seconds": 1.0000319480895996, "bytes": 99614720, "bits_per_second": 796892300.8133724, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 561, "rttvar": 674, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 35.000478, "end": 36.00051, "seconds": 1.0000319480895996, "bytes": 99614720, "bits_per_second": 796892300.8133724, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.00051, "end": 37.000048, "seconds": 0.999538004398346, "bytes": 99614720, "bits_per_second": 797286102.6726947, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 517, "rttvar": 627, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 36.00051, "end": 37.000048, "seconds": 0.999538004398346, "bytes": 99614720, "bits_per_second": 797286102.6726947, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.000048, "end": 38.000048, "seconds": 1, "bytes": 97517568, "bits_per_second": 780140544, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 610, "rttvar": 609, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 37.000048, "end": 38.000048, "seconds": 1, "bytes": 97517568, "bits_per_second": 780140544, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.000048, "end": 39.00005, "seconds": 1.0000020265579224, "bytes": 99614720, "bits_per_second": 796916145.003273, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 549, "rttvar": 534, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 38.000048, "end": 39.00005, "seconds": 1.0000020265579224, "bytes": 99614720, "bits_per_second": 796916145.003273, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.00005, "end": 40.00136, "seconds": 1.0013099908828735, "bytes": 98566144, "bits_per_second": 787497537.4057132, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 179200, "rtt": 527, "rttvar": 611, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 39.00005, "end": 40.00136, "seconds": 1.0013099908828735, "bytes": 98566144, "bits_per_second": 787497537.4057132, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.00136, "end": 41.00103, "seconds": 0.9996700286865234, "bytes": 99614720, "bits_per_second": 797180806.7978975, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 119808, "rtt": 559, "rttvar": 661, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 40.00136, "end": 41.00103, "seconds": 0.9996700286865234, "bytes": 99614720, "bits_per_second": 797180806.7978975, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.00103, "end": 42.00074, "seconds": 0.9997100234031677, "bytes": 97517568, "bits_per_second": 780366832.1182585, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 421, "rttvar": 557, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 41.00103, "end": 42.00074, "seconds": 0.9997100234031677, "bytes": 97517568, "bits_per_second": 780366832.1182585, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.00074, "end": 43.001018, "seconds": 1.0002779960632324, "bytes": 98566144, "bits_per_second": 788310004.922025, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 201728, "rtt": 639, "rttvar": 635, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 42.00074, "end": 43.001018, "seconds": 1.0002779960632324, "bytes": 98566144, "bits_per_second": 788310004.922025, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.001018, "end": 44.000048, "seconds": 0.9990299940109253, "bytes": 98435072, "bits_per_second": 788245178.544047, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 501, "rttvar": 620, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 43.001018, "end": 44.000048, "seconds": 0.9990299940109253, "bytes": 98435072, "bits_per_second": 788245178.544047, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.000048, "end": 45.000068, "seconds": 1.0000200271606445, "bytes": 94109696, "bits_per_second": 752862490.3019634, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 179200, "rtt": 584, "rttvar": 645, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 44.000048, "end": 45.000068, "seconds": 1.0000200271606445, "bytes": 94109696, "bits_per_second": 752862490.3019634, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 45.000068, "end": 46.001031, "seconds": 1.0009629726409912, "bytes": 98566144, "bits_per_second": 787770550.512478, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 119808, "rtt": 537, "rttvar": 654, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 45.000068, "end": 46.001031, "seconds": 1.0009629726409912, "bytes": 98566144, "bits_per_second": 787770550.512478, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 46.001031, "end": 47.001041, "seconds": 1.0000100135803223, "bytes": 99614720, "bits_per_second": 796909780.0799075, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 67584, "rtt": 653, "rttvar": 577, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 46.001031, "end": 47.001041, "seconds": 1.0000100135803223, "bytes": 99614720, "bits_per_second": 796909780.0799075, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 47.001041, "end": 48.001031, "seconds": 0.9999899864196777, "bytes": 98566144, "bits_per_second": 788537048.079068, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 693, "rttvar": 669, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 47.001041, "end": 48.001031, "seconds": 0.9999899864196777, "bytes": 98566144, "bits_per_second": 788537048.079068, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 48.001031, "end": 49.001031, "seconds": 1, "bytes": 98566144, "bits_per_second": 788529152, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 681, "rttvar": 661, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 48.001031, "end": 49.001031, "seconds": 1, "bytes": 98566144, "bits_per_second": 788529152, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 49.001031, "end": 50.008496, "seconds": 1.0074650049209595, "bytes": 95420416, "bits_per_second": 757707041.208731, "retransmits": 0, "snd_cwnd": 485080, "snd_wnd": 0, "rtt": 676, "rttvar": 674, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 49.001031, "end": 50.008496, "seconds": 1.0074650049209595, "bytes": 95420416, "bits_per_second": 757707041.208731, "retransmits": 0, "omitted": false, "sender": true}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 50.008496, "seconds": 50.008496, "bytes": 5128847360, "bits_per_second": 820476162.2905036, "retransmits": 1, "max_snd_cwnd": 485080, "max_snd_wnd": 201728, "max_rtt": 751, "min_rtt": 355, "mean_rtt": 522, "sender": true}, "receiver": {"socket": 5, "start": 0, "end": 50.008001, "seconds": 50.008496, "bytes": 5126356992, "bits_per_second": 820085888.57611, "sender": true}}], "sum_sent": {"start": 0, "end": 50.008496, "seconds": 50.008496, "bytes": 5128847360, "bits_per_second": 820476162.2905036, "retransmits": 1, "sender": true}, "sum_received": {"start": 0, "end": 50.008001, "seconds": 50.008001, "bytes": 5126356992, "bits_per_second": 820085888.57611, "sender": true}, "cpu_utilization_percent": {"host_total": 1.7757321900919407, "host_user": 0.040394958904092074, "host_system": 1.7353332360381204, "remote_total": 94.11365887005424, "remote_user": 5.627762285354663, "remote_system": 88.48892210315806}, "sender_tcp_congestion": "cubic", "receiver_tcp_congestion": "cubic"}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 41520}], "version": "iperf 3.18", "system_info": "Linux qemux86-64 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64", "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "timestamp": {"time": "Sat, 04 Jul 2026 15:03:51 GMT", "timesecs": 1783177431}, "accepted_connection": {"host": "10.5.0.11", "port": 41504}, "cookie": "tfyc4xnkvtdds7y5jlwnfh64zje2wcjyqjtn", "tcp_mss_default": 0, "target_bitrate": 0, "fq_rate": 0, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.002159, "seconds": 1.0021589994430542, "bytes": 107085824, "bits_per_second": 854840990.7770126, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.002159, "seconds": 1.0021589994430542, "bytes": 107085824, "bits_per_second": 854840990.7770126, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.002159, "end": 2.001502, "seconds": 0.999342978000641, "bytes": 98697216, "bits_per_second": 790096839.0048503, "omitted": false, "sender": false}], "sum": {"start": 1.002159, "end": 2.001502, "seconds": 0.999342978000641, "bytes": 98697216, "bits_per_second": 790096839.0048503, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.001502, "end": 3.001626, "seconds": 1.0001239776611328, "bytes": 98697216, "bits_per_second": 789479850.134669, "omitted": false, "sender": false}], "sum": {"start": 2.001502, "end": 3.001626, "seconds": 1.0001239776611328, "bytes": 98697216, "bits_per_second": 789479850.134669, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.001626, "end": 4.001523, "seconds": 0.999897003173828, "bytes": 100270080, "bits_per_second": 802243268.5104743, "omitted": false, "sender": false}], "sum": {"start": 3.001626, "end": 4.001523, "seconds": 0.999897003173828, "bytes": 100270080, "bits_per_second": 802243268.5104743, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.001523, "end": 5.00148, "seconds": 0.999957025051117, "bytes": 96731136, "bits_per_second": 773882345.5542417, "omitted": false, "sender": false}], "sum": {"start": 4.001523, "end": 5.00148, "seconds": 0.999957025051117, "bytes": 96731136, "bits_per_second": 773882345.5542417, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.00148, "end": 6.001464, "seconds": 0.9999840259552002, "bytes": 100139008, "bits_per_second": 801124861.204423, "omitted": false, "sender": false}], "sum": {"start": 5.00148, "end": 6.001464, "seconds": 0.9999840259552002, "bytes": 100139008, "bits_per_second": 801124861.204423, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.001464, "end": 7.001482, "seconds": 1.0000180006027222, "bytes": 100007936, "bits_per_second": 800049086.6342332, "omitted": false, "sender": false}], "sum": {"start": 6.001464, "end": 7.001482, "seconds": 1.0000180006027222, "bytes": 100007936, "bits_per_second": 800049086.6342332, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.001482, "end": 8.001584, "seconds": 1.0001020431518555, "bytes": 91357184, "bits_per_second": 730782900.6094997, "omitted": false, "sender": false}], "sum": {"start": 7.001482, "end": 8.001584, "seconds": 1.0001020431518555, "bytes": 91357184, "bits_per_second": 730782900.6094997, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.001584, "end": 9.001506, "seconds": 0.999921977519989, "bytes": 105381888, "bits_per_second": 843120886.3825046, "omitted": false, "sender": false}], "sum": {"start": 8.001584, "end": 9.001506, "seconds": 0.999921977519989, "bytes": 105381888, "bits_per_second": 843120886.3825046, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.001506, "end": 10.000982, "seconds": 0.9994760155677795, "bytes": 116785152, "bits_per_second": 934771021.4629374, "omitted": false, "sender": false}], "sum": {"start": 9.001506, "end": 10.000982, "seconds": 0.9994760155677795, "bytes": 116785152, "bits_per_second": 934771021.4629374, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.000982, "end": 11.001531, "seconds": 1.0005489587783813, "bytes": 120193024, "bits_per_second": 961016633.482879, "omitted": false, "sender": false}], "sum": {"start": 10.000982, "end": 11.001531, "seconds": 1.0005489587783813, "bytes": 120193024, "bits_per_second": 961016633.482879, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.001531, "end": 12.001546, "seconds": 1.0000150203704834, "bytes": 119275520, "bits_per_second": 954189827.7152762, "omitted": false, "sender": false}], "sum": {"start": 11.001531, "end": 12.001546, "seconds": 1.0000150203704834, "bytes": 119275520, "bits_per_second": 954189827.7152762, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.001546, "end": 13.00147, "seconds": 0.9999240040779114, "bytes": 125173760, "bits_per_second": 1001466187.3463479, "omitted": false, "sender": false}], "sum": {"start": 12.001546, "end": 13.00147, "seconds": 0.9999240040779114, "bytes": 125173760, "bits_per_second": 1001466187.3463479, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.00147, "end": 14.001585, "seconds": 1.0001150369644165, "bytes": 125698048, "bits_per_second": 1005468717.9308735, "omitted": false, "sender": false}], "sum": {"start": 13.00147, "end": 14.001585, "seconds": 1.0001150369644165, "bytes": 125698048, "bits_per_second": 1005468717.9308735, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.001585, "end": 15.001464, "seconds": 0.999879002571106, "bytes": 118489088, "bits_per_second": 948027412.8794795, "omitted": false, "sender": false}], "sum": {"start": 14.001585, "end": 15.001464, "seconds": 0.999879002571106, "bytes": 118489088, "bits_per_second": 948027412.8794795, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.001464, "end": 16.001456, "seconds": 0.9999920129776, "bytes": 122552320, "bits_per_second": 980426390.687544, "omitted": false, "sender": false}], "sum": {"start": 15.001464, "end": 16.001456, "seconds": 0.9999920129776, "bytes": 122552320, "bits_per_second": 980426390.687544, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.001456, "end": 17.001625, "seconds": 1.000169038772583, "bytes": 114688000, "bits_per_second": 917348932.4624262, "omitted": false, "sender": false}], "sum": {"start": 16.001456, "end": 17.001625, "seconds": 1.000169038772583, "bytes": 114688000, "bits_per_second": 917348932.4624262, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.001625, "end": 18.001513, "seconds": 0.999888002872467, "bytes": 107610112, "bits_per_second": 860977322.9870455, "omitted": false, "sender": false}], "sum": {"start": 17.001625, "end": 18.001513, "seconds": 0.999888002872467, "bytes": 107610112, "bits_per_second": 860977322.9870455, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.001513, "end": 19.001529, "seconds": 1.0000159740448, "bytes": 99090432, "bits_per_second": 792710793.202276, "omitted": false, "sender": false}], "sum": {"start": 18.001513, "end": 19.001529, "seconds": 1.0000159740448, "bytes": 99090432, "bits_per_second": 792710793.202276, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.001529, "end": 20.001493, "seconds": 0.9999639987945557, "bytes": 98697216, "bits_per_second": 789606154.773398, "omitted": false, "sender": false}], "sum": {"start": 19.001529, "end": 20.001493, "seconds": 0.9999639987945557, "bytes": 98697216, "bits_per_second": 789606154.773398, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.001493, "end": 21.0016, "seconds": 1.0001070499420166, "bytes": 101056512, "bits_per_second": 808365560.513619, "omitted": false, "sender": false}], "sum": {"start": 20.001493, "end": 21.0016, "seconds": 1.0001070499420166, "bytes": 101056512, "bits_per_second": 808365560.513619, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.0016, "end": 22.001492, "seconds": 0.999891996383667, "bytes": 99221504, "bits_per_second": 793857771.510177, "omitted": false, "sender": false}], "sum": {"start": 21.0016, "end": 22.001492, "seconds": 0.999891996383667, "bytes": 99221504, "bits_per_second": 793857771.510177, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.001492, "end": 23.00148, "seconds": 0.9999880194664, "bytes": 99483648, "bits_per_second": 795878719.051735, "omitted": false, "sender": false}], "sum": {"start": 22.001492, "end": 23.00148, "seconds": 0.9999880194664, "bytes": 99483648, "bits_per_second": 795878719.051735, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.00148, "end": 24.001484, "seconds": 1.0000040531158447, "bytes": 96337920, "bits_per_second": 770700236.262661, "omitted": false, "sender": false}], "sum": {"start": 23.00148, "end": 24.001484, "seconds": 1.0000040531158447, "bytes": 96337920, "bits_per_second": 770700236.262661, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.001484, "end": 25.00147, "seconds": 0.9999859929084778, "bytes": 98959360, "bits_per_second": 791685969.2178277, "omitted": false, "sender": false}], "sum": {"start": 24.001484, "end": 25.00147, "seconds": 0.9999859929084778, "bytes": 98959360, "bits_per_second": 791685969.2178277, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.00147, "end": 26.00148, "seconds": 1.0000100135803223, "bytes": 100139008, "bits_per_second": 801104042.080328, "omitted": false, "sender": false}], "sum": {"start": 25.00147, "end": 26.00148, "seconds": 1.0000100135803223, "bytes": 100139008, "bits_per_second": 801104042.080328, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.00148, "end": 27.001477, "seconds": 0.9999970197677612, "bytes": 100139008, "bits_per_second": 801114451.5071154, "omitted": false, "sender": false}], "sum": {"start": 26.00148, "end": 27.001477, "seconds": 0.9999970197677612, "bytes": 100139008, "bits_per_second": 801114451.5071154, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.001477, "end": 28.001449, "seconds": 0.9999719858169556, "bytes": 99483648, "bits_per_second": 795891480.2496113, "omitted": false, "sender": false}], "sum": {"start": 27.001477, "end": 28.001449, "seconds": 0.9999719858169556, "bytes": 99483648, "bits_per_second": 795891480.2496113, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.001449, "end": 29.001527, "seconds": 1.0000779628753662, "bytes": 100270080, "bits_per_second": 802098106.1253207, "omitted": false, "sender": false}], "sum": {"start": 28.001449, "end": 29.001527, "seconds": 1.0000779628753662, "bytes": 100270080, "bits_per_second": 802098106.1253207, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.001527, "end": 30.001675, "seconds": 1.000148057937622, "bytes": 98172928, "bits_per_second": 785267158.9639615, "omitted": false, "sender": false}], "sum": {"start": 29.001527, "end": 30.001675, "seconds": 1.000148057937622, "bytes": 98172928, "bits_per_second": 785267158.9639615, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.001675, "end": 31.001549, "seconds": 0.9998739957809448, "bytes": 100007936, "bits_per_second": 800164312.0792594, "omitted": false, "sender": false}], "sum": {"start": 30.001675, "end": 31.001549, "seconds": 0.9998739957809448, "bytes": 100007936, "bits_per_second": 800164312.0792594, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.001549, "end": 32.001511, "seconds": 0.9999619722366333, "bytes": 98304000, "bits_per_second": 786461907.387311, "omitted": false, "sender": false}], "sum": {"start": 31.001549, "end": 32.001511, "seconds": 0.9999619722366333, "bytes": 98304000, "bits_per_second": 786461907.387311, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.001511, "end": 33.001491, "seconds": 0.9999799728393555, "bytes": 98828288, "bits_per_second": 790642138.3171164, "omitted": false, "sender": false}], "sum": {"start": 32.001511, "end": 33.001491, "seconds": 0.9999799728393555, "bytes": 98828288, "bits_per_second": 790642138.3171164, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.001491, "end": 34.001528, "seconds": 1.0000369548797607, "bytes": 98304000, "bits_per_second": 786402938.5739615, "omitted": false, "sender": false}], "sum": {"start": 33.001491, "end": 34.001528, "seconds": 1.0000369548797607, "bytes": 98304000, "bits_per_second": 786402938.5739615, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.001528, "end": 35.001573, "seconds": 1.0000449419021606, "bytes": 95813632, "bits_per_second": 766474609.173106, "omitted": false, "sender": false}], "sum": {"start": 34.001528, "end": 35.001573, "seconds": 1.0000449419021606, "bytes": 95813632, "bits_per_second": 766474609.173106, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.001573, "end": 36.001487, "seconds": 0.999913990497589, "bytes": 100139008, "bits_per_second": 801180973.176844, "omitted": false, "sender": false}], "sum": {"start": 35.001573, "end": 36.001487, "seconds": 0.999913990497589, "bytes": 100139008, "bits_per_second": 801180973.176844, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.001487, "end": 37.001551, "seconds": 1.0000640153884888, "bytes": 99876864, "bits_per_second": 798963766.0241295, "omitted": false, "sender": false}], "sum": {"start": 36.001487, "end": 37.001551, "seconds": 1.0000640153884888, "bytes": 99876864, "bits_per_second": 798963766.0241295, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.001551, "end": 38.001491, "seconds": 0.9999399781227112, "bytes": 97255424, "bits_per_second": 778090094.4281675, "omitted": false, "sender": false}], "sum": {"start": 37.001551, "end": 38.001491, "seconds": 0.9999399781227112, "bytes": 97255424, "bits_per_second": 778090094.4281675, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.001491, "end": 39.001499, "seconds": 1.0000079870224, "bytes": 99876864, "bits_per_second": 799008530.3009708, "omitted": false, "sender": false}], "sum": {"start": 38.001491, "end": 39.001499, "seconds": 1.0000079870224, "bytes": 99876864, "bits_per_second": 799008530.3009708, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.001499, "end": 40.001529, "seconds": 1.0000300407409668, "bytes": 98041856, "bits_per_second": 784311286.7077987, "omitted": false, "sender": false}], "sum": {"start": 39.001499, "end": 40.001529, "seconds": 1.0000300407409668, "bytes": 98041856, "bits_per_second": 784311286.7077987, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.001529, "end": 41.001548, "seconds": 1.0000189542770386, "bytes": 99614720, "bits_per_second": 796902655.286299, "omitted": false, "sender": false}], "sum": {"start": 40.001529, "end": 41.001548, "seconds": 1.0000189542770386, "bytes": 99614720, "bits_per_second": 796902655.286299, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.001548, "end": 42.001529, "seconds": 0.9999809861183167, "bytes": 97517568, "bits_per_second": 780155377.7820477, "omitted": false, "sender": false}], "sum": {"start": 41.001548, "end": 42.001529, "seconds": 0.9999809861183167, "bytes": 97517568, "bits_per_second": 780155377.7820477, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.001529, "end": 43.001696, "seconds": 1.0001670122146606, "bytes": 98959360, "bits_per_second": 791542682.7035632, "omitted": false, "sender": false}], "sum": {"start": 42.001529, "end": 43.001696, "seconds": 1.0001670122146606, "bytes": 98959360, "bits_per_second": 791542682.7035632, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.001696, "end": 44.001606, "seconds": 0.999909996986389, "bytes": 97910784, "bits_per_second": 783356776.4706148, "omitted": false, "sender": false}], "sum": {"start": 43.001696, "end": 44.001606, "seconds": 0.999909996986389, "bytes": 97910784, "bits_per_second": 783356776.4706148, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.001606, "end": 45.001503, "seconds": 0.999897003173828, "bytes": 94240768, "bits_per_second": 754003803.9987334, "omitted": false, "sender": false}], "sum": {"start": 44.001606, "end": 45.001503, "seconds": 0.999897003173828, "bytes": 94240768, "bits_per_second": 754003803.9987334, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.001503, "end": 46.001504, "seconds": 1.0000009536743164, "bytes": 98566144, "bits_per_second": 788528400.000717, "omitted": false, "sender": false}], "sum": {"start": 45.001503, "end": 46.001504, "seconds": 1.0000009536743164, "bytes": 98566144, "bits_per_second": 788528400.000717, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 46.001504, "end": 47.00152, "seconds": 1.0000159740448, "bytes": 99090432, "bits_per_second": 792710793.202276, "omitted": false, "sender": false}], "sum": {"start": 46.001504, "end": 47.00152, "seconds": 1.0000159740448, "bytes": 99090432, "bits_per_second": 792710793.202276, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 47.00152, "end": 48.001547, "seconds": 1.0000269412994385, "bytes": 98828288, "bits_per_second": 790605004.0738477, "omitted": false, "sender": false}], "sum": {"start": 47.00152, "end": 48.001547, "seconds": 1.0000269412994385, "bytes": 98828288, "bits_per_second": 790605004.0738477, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 48.001547, "end": 49.001587, "seconds": 1.000040054321289, "bytes": 98304000, "bits_per_second": 786400501.2616606, "omitted": false, "sender": false}], "sum": {"start": 48.001547, "end": 49.001587, "seconds": 1.000040054321289, "bytes": 98304000, "bits_per_second": 786400501.2616606, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 49.001587, "end": 50.001574, "seconds": 0.999987006187439, "bytes": 95289344, "bits_per_second": 762324657.5037103, "omitted": false, "sender": false}], "sum": {"start": 49.001587, "end": 50.001574, "seconds": 0.999987006187439, "bytes": 95289344, "bits_per_second": 762324657.5037103, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 50.001574, "end": 50.008001, "seconds": 0.006426999811083078, "bytes": 524288, "bits_per_second": 652606834.1821183, "omitted": false, "sender": false}], "sum": {"start": 50.001574, "end": 50.008001, "seconds": 0.006426999811083078, "bytes": 524288, "bits_per_second": 652606834.1821183, "omitted": false, "sender": false}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 50.008001, "seconds": 50.008001, "bytes": 0, "bits_per_second": 0, "sender": false}, "receiver": {"socket": 5, "start": 0, "end": 50.008001, "seconds": 50.008001, "bytes": 5126356992, "bits_per_second": 820085888.57611, "sender": false}}], "sum_sent": {"start": 0, "end": 50.008001, "seconds": 50.008001, "bytes": 0, "bits_per_second": 0, "sender": false}, "sum_received": {"start": 0, "end": 50.008001, "seconds": 50.008001, "bytes": 5126356992, "bits_per_second": 820085888.57611, "sender": false}, "cpu_utilization_percent": {"host_total": 94.11365887005424, "host_user": 5.627762285354663, "host_system": 88.48892210315806, "remote_total": 0, "remote_user": 0, "remote_system": 0}, "receiver_tcp_congestion": "cubic"}}}} 2026-07-04 15:03:48.381361 2026-07-04 11:58:54.193208 +158 7 loader /usr/bin/iperf3 --time 50 --port 5201 --client 10.5.0.10 --udp --version4 --json {"tool": "iperf3", "test_type": {"protocol": "UDP"}, "time": {"duration_sec": 50.0}, "metrics": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 33167, "remote_host": "10.5.0.10", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux f88e0f09de05 6.17.0-35-generic #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 19:30:42 UTC 2 x86_64", "timestamp": {"time": "Sat, 04 Jul 2026 15:04:44 GMT", "timesecs": 1783177484}, "connecting_to": {"host": "10.5.0.10", "port": 5201}, "cookie": "l54rgco7hbpkrikxbhleg5hrnkxqwaspx3vj", "target_bitrate": 1048576, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 212992, "rcvbuf_actual": 212992, "test_start": {"protocol": "UDP", "num_streams": 1, "blksize": 1448, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 1048576, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001043, "seconds": 1.00104296207428, "bytes": 131768, "bits_per_second": 1053045.7132585885, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.001043, "seconds": 1.00104296207428, "bytes": 131768, "bits_per_second": 1053045.7132585885, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.001043, "end": 2.000605, "seconds": 0.9995620250701904, "bytes": 131768, "bits_per_second": 1054605.8909410618, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 1.001043, "end": 2.000605, "seconds": 0.9995620250701904, "bytes": 131768, "bits_per_second": 1054605.8909410618, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.000605, "end": 3.001044, "seconds": 1.0004390478134155, "bytes": 130320, "bits_per_second": 1042102.4671904251, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 2.000605, "end": 3.001044, "seconds": 1.0004390478134155, "bytes": 130320, "bits_per_second": 1042102.4671904251, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.001044, "end": 4.001039, "seconds": 0.999994993209839, "bytes": 131768, "bits_per_second": 1054149.277904233, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 3.001044, "end": 4.001039, "seconds": 0.999994993209839, "bytes": 131768, "bits_per_second": 1054149.277904233, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.001039, "end": 5.001046, "seconds": 1.0000070333480835, "bytes": 130320, "bits_per_second": 1042552.6673641951, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 4.001039, "end": 5.001046, "seconds": 1.0000070333480835, "bytes": 130320, "bits_per_second": 1042552.6673641951, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.001046, "end": 6.000595, "seconds": 0.9995489716529846, "bytes": 131768, "bits_per_second": 1054619.6633634968, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 5.001046, "end": 6.000595, "seconds": 0.9995489716529846, "bytes": 131768, "bits_per_second": 1054619.6633634968, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.000595, "end": 7.001047, "seconds": 1.0004520416259766, "bytes": 130320, "bits_per_second": 1042088.9324245746, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 6.000595, "end": 7.001047, "seconds": 1.0004520416259766, "bytes": 130320, "bits_per_second": 1042088.9324245746, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.001047, "end": 8.001045, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 7.001047, "end": 8.001045, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.001045, "end": 9.001285, "seconds": 1.0002399682998657, "bytes": 130320, "bits_per_second": 1042309.8786704822, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 8.001045, "end": 9.001285, "seconds": 1.0002399682998657, "bytes": 130320, "bits_per_second": 1042309.8786704822, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.001285, "end": 10.000594, "seconds": 0.999309003353119, "bytes": 131768, "bits_per_second": 1054872.9136462153, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 9.001285, "end": 10.000594, "seconds": 0.999309003353119, "bytes": 131768, "bits_per_second": 1054872.9136462153, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.000594, "end": 11.001044, "seconds": 1.0004500150680542, "bytes": 130320, "bits_per_second": 1042091.0433282179, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 10.000594, "end": 11.001044, "seconds": 1.0004500150680542, "bytes": 130320, "bits_per_second": 1042091.0433282179, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.001044, "end": 12.001046, "seconds": 1.0000020265579224, "bytes": 131768, "bits_per_second": 1054141.8637204547, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 11.001044, "end": 12.001046, "seconds": 1.0000020265579224, "bytes": 131768, "bits_per_second": 1054141.8637204547, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.001046, "end": 13.001082, "seconds": 1.0000360012054443, "bytes": 130320, "bits_per_second": 1042522.4679344515, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 12.001046, "end": 13.001082, "seconds": 1.0000360012054443, "bytes": 130320, "bits_per_second": 1042522.4679344515, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.001082, "end": 14.001048, "seconds": 0.999966025352478, "bytes": 131768, "bits_per_second": 1054179.8153876525, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 13.001082, "end": 14.001048, "seconds": 0.999966025352478, "bytes": 131768, "bits_per_second": 1054179.8153876525, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.001048, "end": 15.000576, "seconds": 0.9995279908180237, "bytes": 130320, "bits_per_second": 1043052.3302771726, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 14.001048, "end": 15.000576, "seconds": 0.9995279908180237, "bytes": 130320, "bits_per_second": 1043052.3302771726, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.000576, "end": 16.001025, "seconds": 1.0004489421844482, "bytes": 131768, "bits_per_second": 1053670.9626563354, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 15.000576, "end": 16.001025, "seconds": 1.0004489421844482, "bytes": 131768, "bits_per_second": 1053670.9626563354, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.001025, "end": 17.000574, "seconds": 0.9995489716529846, "bytes": 130320, "bits_per_second": 1043030.4362935682, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 16.001025, "end": 17.000574, "seconds": 0.9995489716529846, "bytes": 130320, "bits_per_second": 1043030.4362935682, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.000574, "end": 18.001044, "seconds": 1.0004700422286987, "bytes": 131768, "bits_per_second": 1053648.740597704, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 17.000574, "end": 18.001044, "seconds": 1.0004700422286987, "bytes": 131768, "bits_per_second": 1053648.740597704, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.001044, "end": 19.000604, "seconds": 0.999559998512268, "bytes": 130320, "bits_per_second": 1043018.92988088, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 18.001044, "end": 19.000604, "seconds": 0.999559998512268, "bytes": 130320, "bits_per_second": 1043018.92988088, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.000604, "end": 20.000582, "seconds": 0.999978005886078, "bytes": 131768, "bits_per_second": 1054167.1854731704, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 19.000604, "end": 20.000582, "seconds": 0.999978005886078, "bytes": 131768, "bits_per_second": 1054167.1854731704, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.000582, "end": 21.001046, "seconds": 1.0004639625549316, "bytes": 130320, "bits_per_second": 1042076.5155174263, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 20.000582, "end": 21.001046, "seconds": 1.0004639625549316, "bytes": 130320, "bits_per_second": 1042076.5155174263, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.001046, "end": 22.001047, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 21.001046, "end": 22.001047, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.001047, "end": 23.001047, "seconds": 1, "bytes": 131768, "bits_per_second": 1054144, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 22.001047, "end": 23.001047, "seconds": 1, "bytes": 131768, "bits_per_second": 1054144, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.001047, "end": 24.001045, "seconds": 0.9999979734420776, "bytes": 130320, "bits_per_second": 1042562.1128125093, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 23.001047, "end": 24.001045, "seconds": 0.9999979734420776, "bytes": 130320, "bits_per_second": 1042562.1128125093, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.001045, "end": 25.000589, "seconds": 0.9995440244674683, "bytes": 131768, "bits_per_second": 1054624.8831427123, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 24.001045, "end": 25.000589, "seconds": 0.9995440244674683, "bytes": 131768, "bits_per_second": 1054624.8831427123, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.000589, "end": 26.001043, "seconds": 1.0004539489746094, "bytes": 130320, "bits_per_second": 1042086.9456995459, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 25.000589, "end": 26.001043, "seconds": 1.0004539489746094, "bytes": 130320, "bits_per_second": 1042086.9456995459, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.001043, "end": 27.001043, "seconds": 1, "bytes": 131768, "bits_per_second": 1054144, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 26.001043, "end": 27.001043, "seconds": 1, "bytes": 131768, "bits_per_second": 1054144, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.001043, "end": 28.001046, "seconds": 1.0000029802322388, "bytes": 130320, "bits_per_second": 1042556.8929383369, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 27.001043, "end": 28.001046, "seconds": 1.0000029802322388, "bytes": 130320, "bits_per_second": 1042556.8929383369, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.001046, "end": 29.000586, "seconds": 0.9995399713516235, "bytes": 131768, "bits_per_second": 1054629.1596268415, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 28.001046, "end": 29.000586, "seconds": 0.9995399713516235, "bytes": 131768, "bits_per_second": 1054629.1596268415, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.000586, "end": 30.000574, "seconds": 0.9999880194664, "bytes": 130320, "bits_per_second": 1042572.4905747536, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 29.000586, "end": 30.000574, "seconds": 0.9999880194664, "bytes": 130320, "bits_per_second": 1042572.4905747536, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.000574, "end": 31.000595, "seconds": 1.000020980834961, "bytes": 131768, "bits_per_second": 1054121.8836427305, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 30.000574, "end": 31.000595, "seconds": 1.000020980834961, "bytes": 131768, "bits_per_second": 1054121.8836427305, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.000595, "end": 32.001044, "seconds": 1.0004489421844482, "bytes": 130320, "bits_per_second": 1042092.1608689032, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 31.000595, "end": 32.001044, "seconds": 1.0004489421844482, "bytes": 130320, "bits_per_second": 1042092.1608689032, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.001044, "end": 33.001037, "seconds": 0.9999930262565613, "bytes": 131768, "bits_per_second": 1054151.35138107, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 32.001044, "end": 33.001037, "seconds": 0.9999930262565613, "bytes": 131768, "bits_per_second": 1054151.35138107, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.001037, "end": 34.001046, "seconds": 1.0000089406967163, "bytes": 130320, "bits_per_second": 1042550.6788705689, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 33.001037, "end": 34.001046, "seconds": 1.0000089406967163, "bytes": 130320, "bits_per_second": 1042550.6788705689, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.001046, "end": 35.001039, "seconds": 0.9999930262565613, "bytes": 131768, "bits_per_second": 1054151.35138107, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 34.001046, "end": 35.001039, "seconds": 0.9999930262565613, "bytes": 131768, "bits_per_second": 1054151.35138107, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.001039, "end": 36.001022, "seconds": 0.999983012676239, "bytes": 130320, "bits_per_second": 1042577.710605116, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 35.001039, "end": 36.001022, "seconds": 0.999983012676239, "bytes": 130320, "bits_per_second": 1042577.710605116, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.001022, "end": 37.000853, "seconds": 0.9998310208320618, "bytes": 131768, "bits_per_second": 1054322.158481079, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 36.001022, "end": 37.000853, "seconds": 0.9998310208320618, "bytes": 131768, "bits_per_second": 1054322.158481079, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.000853, "end": 38.001025, "seconds": 1.0001720190048218, "bytes": 130320, "bits_per_second": 1042380.6907109384, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 37.000853, "end": 38.001025, "seconds": 1.0001720190048218, "bytes": 130320, "bits_per_second": 1042380.6907109384, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.001025, "end": 39.000578, "seconds": 0.9995530247688293, "bytes": 131768, "bits_per_second": 1054615.386956381, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 38.001025, "end": 39.000578, "seconds": 0.9995530247688293, "bytes": 131768, "bits_per_second": 1054615.386956381, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.000578, "end": 40.001044, "seconds": 1.000465989112854, "bytes": 130320, "bits_per_second": 1042074.4046726387, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 39.000578, "end": 40.001044, "seconds": 1.000465989112854, "bytes": 130320, "bits_per_second": 1042074.4046726387, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.001044, "end": 41.00105, "seconds": 1.0000059604644775, "bytes": 131768, "bits_per_second": 1054137.7168495844, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 40.001044, "end": 41.00105, "seconds": 1.0000059604644775, "bytes": 131768, "bits_per_second": 1054137.7168495844, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.00105, "end": 42.001047, "seconds": 0.9999970197677612, "bytes": 130320, "bits_per_second": 1042563.1070801826, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 41.00105, "end": 42.001047, "seconds": 0.9999970197677612, "bytes": 130320, "bits_per_second": 1042563.1070801826, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.001047, "end": 43.001045, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 42.001047, "end": 43.001045, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.001045, "end": 44.000325, "seconds": 0.9992799758911133, "bytes": 130320, "bits_per_second": 1043311.2092237128, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 43.001045, "end": 44.000325, "seconds": 0.9992799758911133, "bytes": 130320, "bits_per_second": 1043311.2092237128, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.000325, "end": 45.000589, "seconds": 1.000264048576355, "bytes": 131768, "bits_per_second": 1053865.728254785, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 44.000325, "end": 45.000589, "seconds": 1.000264048576355, "bytes": 131768, "bits_per_second": 1053865.728254785, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 45.000589, "end": 46.001047, "seconds": 1.000458002090454, "bytes": 130320, "bits_per_second": 1042082.7239340121, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 45.000589, "end": 46.001047, "seconds": 1.000458002090454, "bytes": 130320, "bits_per_second": 1042082.7239340121, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 46.001047, "end": 47.001045, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 46.001047, "end": 47.001045, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 47.001045, "end": 48.001242, "seconds": 1.0001970529556274, "bytes": 131768, "bits_per_second": 1053936.3187333504, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 47.001045, "end": 48.001242, "seconds": 1.0001970529556274, "bytes": 131768, "bits_per_second": 1053936.3187333504, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 48.001242, "end": 49.000575, "seconds": 0.9993330240249634, "bytes": 130320, "bits_per_second": 1043255.8265721406, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 48.001242, "end": 49.000575, "seconds": 0.9993330240249634, "bytes": 130320, "bits_per_second": 1043255.8265721406, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 49.000575, "end": 50.003457, "seconds": 1.00288200378418, "bytes": 131768, "bits_per_second": 1051114.683504533, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 49.000575, "end": 50.003457, "seconds": 1.00288200378418, "bytes": 131768, "bits_per_second": 1051114.683504533, "packets": 91, "omitted": false, "sender": true}}], "end": {"streams": [{"udp": {"socket": 5, "start": 0, "end": 50.003457, "seconds": 50.003457, "bytes": 6555096, "bits_per_second": 1048742.8499193566, "jitter_ms": 0.11107597780055296, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "out_of_order": 0, "sender": true}}], "sum": {"start": 0, "end": 50.002772, "seconds": 50.002772, "bytes": 6555096, "bits_per_second": 1048742.8499193566, "jitter_ms": 0.11107597780055296, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": true}, "sum_sent": {"start": 0, "end": 50.003457, "seconds": 50.003457, "bytes": 6555096, "bits_per_second": 1048742.8499193566, "jitter_ms": 0, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": true}, "sum_received": {"start": 0, "end": 50.002772, "seconds": 50.002772, "bytes": 6555096, "bits_per_second": 1048757.216899895, "jitter_ms": 0.11107597780055296, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "cpu_utilization_percent": {"host_total": 0.42648342866260236, "host_user": 0.041424094715178855, "host_system": 0.38506133337278864, "remote_total": 2.434905640491892, "remote_user": 0.465994927458237, "remote_system": 1.9687727222348814}}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 33167}], "version": "iperf 3.18", "system_info": "Linux qemux86-64 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64", "target_bitrate": 1048576, "timestamp": {"time": "Sat, 04 Jul 2026 15:04:44 GMT", "timesecs": 1783177484}, "accepted_connection": {"host": "10.5.0.11", "port": 42484}, "cookie": "l54rgco7hbpkrikxbhleg5hrnkxqwaspx3vj", "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 212992, "rcvbuf_actual": 212992, "test_start": {"protocol": "UDP", "num_streams": 1, "blksize": 1448, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 1048576, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001578, "seconds": 1.0015779733657837, "bytes": 131768, "bits_per_second": 1052483.2095274313, "jitter_ms": 0.10064893276657616, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.001578, "seconds": 1.0015779733657837, "bytes": 131768, "bits_per_second": 1052483.2095274313, "jitter_ms": 0.10064893276657616, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.001578, "end": 2.00165, "seconds": 1.0000720024108887, "bytes": 131768, "bits_per_second": 1054068.1045552313, "jitter_ms": 0.1074376143760655, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 1.001578, "end": 2.00165, "seconds": 1.0000720024108887, "bytes": 131768, "bits_per_second": 1054068.1045552313, "jitter_ms": 0.1074376143760655, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.00165, "end": 3.001555, "seconds": 0.999904990196228, "bytes": 130320, "bits_per_second": 1042659.0628329609, "jitter_ms": 0.09598317047849, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 2.00165, "end": 3.001555, "seconds": 0.999904990196228, "bytes": 130320, "bits_per_second": 1042659.0628329609, "jitter_ms": 0.09598317047849, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.001555, "end": 4.001583, "seconds": 1.0000280141830444, "bytes": 131768, "bits_per_second": 1054114.469844292, "jitter_ms": 0.11098415226014623, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 3.001555, "end": 4.001583, "seconds": 1.0000280141830444, "bytes": 131768, "bits_per_second": 1054114.469844292, "jitter_ms": 0.11098415226014623, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.001583, "end": 5.001609, "seconds": 1.000025987625122, "bytes": 130320, "bits_per_second": 1042532.9070456342, "jitter_ms": 0.11626365352404455, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 4.001583, "end": 5.001609, "seconds": 1.000025987625122, "bytes": 130320, "bits_per_second": 1042532.9070456342, "jitter_ms": 0.11626365352404455, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.001609, "end": 6.001575, "seconds": 0.999966025352478, "bytes": 131768, "bits_per_second": 1054179.8153876525, "jitter_ms": 0.2126170026293575, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 5.001609, "end": 6.001575, "seconds": 0.999966025352478, "bytes": 131768, "bits_per_second": 1054179.8153876525, "jitter_ms": 0.2126170026293575, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.001575, "end": 7.001604, "seconds": 1.0000289678573608, "bytes": 130320, "bits_per_second": 1042529.8001454549, "jitter_ms": 0.085726595271249, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 6.001575, "end": 7.001604, "seconds": 1.0000289678573608, "bytes": 130320, "bits_per_second": 1042529.8001454549, "jitter_ms": 0.085726595271249, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.001604, "end": 8.001678, "seconds": 1.000074028968811, "bytes": 131768, "bits_per_second": 1054065.968583287, "jitter_ms": 0.0873251308303208, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 7.001604, "end": 8.001678, "seconds": 1.000074028968811, "bytes": 131768, "bits_per_second": 1054065.968583287, "jitter_ms": 0.0873251308303208, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.001678, "end": 9.001586, "seconds": 0.9999079704284668, "bytes": 130320, "bits_per_second": 1042655.9551808118, "jitter_ms": 0.13206577124938274, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 8.001678, "end": 9.001586, "seconds": 0.9999079704284668, "bytes": 130320, "bits_per_second": 1042655.9551808118, "jitter_ms": 0.13206577124938274, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.001586, "end": 10.001706, "seconds": 1.0001200437545776, "bytes": 131768, "bits_per_second": 1054017.4717852965, "jitter_ms": 0.15519974919946483, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 9.001586, "end": 10.001706, "seconds": 1.0001200437545776, "bytes": 131768, "bits_per_second": 1054017.4717852965, "jitter_ms": 0.15519974919946483, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.001706, "end": 11.00173, "seconds": 1.0000239610672, "bytes": 130320, "bits_per_second": 1042535.0197483337, "jitter_ms": 0.10828500405936829, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 10.001706, "end": 11.00173, "seconds": 1.0000239610672, "bytes": 130320, "bits_per_second": 1042535.0197483337, "jitter_ms": 0.10828500405936829, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.00173, "end": 12.001574, "seconds": 0.9998440146446228, "bytes": 131768, "bits_per_second": 1054308.4566792923, "jitter_ms": 0.09418528566615417, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 11.00173, "end": 12.001574, "seconds": 0.9998440146446228, "bytes": 131768, "bits_per_second": 1054308.4566792923, "jitter_ms": 0.09418528566615417, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.001574, "end": 13.001635, "seconds": 1.00006103515625, "bytes": 130320, "bits_per_second": 1042496.3710711016, "jitter_ms": 0.1596605330992891, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 12.001574, "end": 13.001635, "seconds": 1.00006103515625, "bytes": 130320, "bits_per_second": 1042496.3710711016, "jitter_ms": 0.1596605330992891, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.001635, "end": 14.001609, "seconds": 0.999974012374878, "bytes": 131768, "bits_per_second": 1054171.3954110383, "jitter_ms": 0.1446937620411551, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 13.001635, "end": 14.001609, "seconds": 0.999974012374878, "bytes": 131768, "bits_per_second": 1054171.3954110383, "jitter_ms": 0.1446937620411551, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.001609, "end": 15.00159, "seconds": 0.9999809861183167, "bytes": 130320, "bits_per_second": 1042579.8234894093, "jitter_ms": 0.10829893030221721, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 14.001609, "end": 15.00159, "seconds": 0.9999809861183167, "bytes": 130320, "bits_per_second": 1042579.8234894093, "jitter_ms": 0.10829893030221721, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.00159, "end": 16.00137, "seconds": 0.999779999256134, "bytes": 131768, "bits_per_second": 1054375.9634962836, "jitter_ms": 0.0691590251532968, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 15.00159, "end": 16.00137, "seconds": 0.999779999256134, "bytes": 131768, "bits_per_second": 1054375.9634962836, "jitter_ms": 0.0691590251532968, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.00137, "end": 17.001565, "seconds": 1.000195026397705, "bytes": 131768, "bits_per_second": 1053938.4541798783, "jitter_ms": 0.14123380321567852, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 16.00137, "end": 17.001565, "seconds": 1.000195026397705, "bytes": 131768, "bits_per_second": 1053938.4541798783, "jitter_ms": 0.14123380321567852, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.001565, "end": 18.001549, "seconds": 0.9999840259552002, "bytes": 130320, "bits_per_second": 1042576.6541661809, "jitter_ms": 0.10813603783599128, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 17.001565, "end": 18.001549, "seconds": 0.9999840259552002, "bytes": 130320, "bits_per_second": 1042576.6541661809, "jitter_ms": 0.10813603783599128, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.001549, "end": 19.001661, "seconds": 1.0001120567321777, "bytes": 131768, "bits_per_second": 1054025.889303214, "jitter_ms": 0.19091027103358854, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 18.001549, "end": 19.001661, "seconds": 1.0001120567321777, "bytes": 131768, "bits_per_second": 1054025.889303214, "jitter_ms": 0.19091027103358854, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.001661, "end": 20.001502, "seconds": 0.9998409748077393, "bytes": 130320, "bits_per_second": 1042725.8196739489, "jitter_ms": 0.079015345503635, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 19.001661, "end": 20.001502, "seconds": 0.9998409748077393, "bytes": 130320, "bits_per_second": 1042725.8196739489, "jitter_ms": 0.079015345503635, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.001502, "end": 21.000956, "seconds": 0.9994540214538574, "bytes": 131768, "bits_per_second": 1054719.8544127, "jitter_ms": 0.10203373521895798, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 20.001502, "end": 21.000956, "seconds": 0.9994540214538574, "bytes": 131768, "bits_per_second": 1054719.8544127, "jitter_ms": 0.10203373521895798, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.000956, "end": 22.001572, "seconds": 1.0006159543991089, "bytes": 130320, "bits_per_second": 1041918.2258852542, "jitter_ms": 0.1009694145161175, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 21.000956, "end": 22.001572, "seconds": 1.0006159543991089, "bytes": 130320, "bits_per_second": 1041918.2258852542, "jitter_ms": 0.1009694145161175, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.001572, "end": 23.001631, "seconds": 1.0000590085983276, "bytes": 131768, "bits_per_second": 1054081.8001104528, "jitter_ms": 0.0946932983514653, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 22.001572, "end": 23.001631, "seconds": 1.0000590085983276, "bytes": 131768, "bits_per_second": 1054081.8001104528, "jitter_ms": 0.0946932983514653, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.001631, "end": 24.001584, "seconds": 0.9999529719352722, "bytes": 130320, "bits_per_second": 1042609.0318850373, "jitter_ms": 0.09657349305630557, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 23.001631, "end": 24.001584, "seconds": 0.9999529719352722, "bytes": 130320, "bits_per_second": 1042609.0318850373, "jitter_ms": 0.09657349305630557, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.001584, "end": 25.001909, "seconds": 1.0003249645233154, "bytes": 131768, "bits_per_second": 1053801.551881024, "jitter_ms": 0.0975842076188559, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 24.001584, "end": 25.001909, "seconds": 1.0003249645233154, "bytes": 131768, "bits_per_second": 1053801.551881024, "jitter_ms": 0.0975842076188559, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.001909, "end": 26.001689, "seconds": 0.999779999256134, "bytes": 130320, "bits_per_second": 1042789.4144468738, "jitter_ms": 0.11840335582997732, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 25.001909, "end": 26.001689, "seconds": 0.999779999256134, "bytes": 130320, "bits_per_second": 1042789.4144468738, "jitter_ms": 0.11840335582997732, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.001689, "end": 27.001781, "seconds": 1.0000920295715332, "bytes": 131768, "bits_per_second": 1054046.9965065357, "jitter_ms": 0.36641234497056346, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 26.001689, "end": 27.001781, "seconds": 1.0000920295715332, "bytes": 131768, "bits_per_second": 1054046.9965065357, "jitter_ms": 0.36641234497056346, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.001781, "end": 28.001631, "seconds": 0.9998499751091003, "bytes": 130320, "bits_per_second": 1042716.433419163, "jitter_ms": 0.14541755419057975, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 27.001781, "end": 28.001631, "seconds": 0.9998499751091003, "bytes": 130320, "bits_per_second": 1042716.433419163, "jitter_ms": 0.14541755419057975, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.001631, "end": 29.00157, "seconds": 0.9999390244483948, "bytes": 131768, "bits_per_second": 1054208.2809314367, "jitter_ms": 0.16637012227222295, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 28.001631, "end": 29.00157, "seconds": 0.9999390244483948, "bytes": 131768, "bits_per_second": 1054208.2809314367, "jitter_ms": 0.16637012227222295, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.00157, "end": 30.001807, "seconds": 1.000236988067627, "bytes": 130320, "bits_per_second": 1042312.9842599977, "jitter_ms": 0.0827237661611846, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 29.00157, "end": 30.001807, "seconds": 1.000236988067627, "bytes": 130320, "bits_per_second": 1042312.9842599977, "jitter_ms": 0.0827237661611846, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.001807, "end": 31.001549, "seconds": 0.9997419714927673, "bytes": 131768, "bits_per_second": 1054416.0694043906, "jitter_ms": 0.09242770476387004, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 30.001807, "end": 31.001549, "seconds": 0.9997419714927673, "bytes": 131768, "bits_per_second": 1054416.0694043906, "jitter_ms": 0.09242770476387004, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.001549, "end": 32.001623, "seconds": 1.000074028968811, "bytes": 130320, "bits_per_second": 1042482.8260713827, "jitter_ms": 0.0943739519672669, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 31.001549, "end": 32.001623, "seconds": 1.000074028968811, "bytes": 130320, "bits_per_second": 1042482.8260713827, "jitter_ms": 0.0943739519672669, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.001623, "end": 33.001648, "seconds": 1.0000250339508057, "bytes": 131768, "bits_per_second": 1054117.611271576, "jitter_ms": 0.09678355070700123, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 32.001623, "end": 33.001648, "seconds": 1.0000250339508057, "bytes": 131768, "bits_per_second": 1054117.611271576, "jitter_ms": 0.09678355070700123, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.001648, "end": 34.001596, "seconds": 0.999948024749756, "bytes": 130320, "bits_per_second": 1042614.1901334403, "jitter_ms": 0.1331919140348494, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 33.001648, "end": 34.001596, "seconds": 0.999948024749756, "bytes": 130320, "bits_per_second": 1042614.1901334403, "jitter_ms": 0.1331919140348494, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.001596, "end": 35.00154, "seconds": 0.999943971633911, "bytes": 131768, "bits_per_second": 1054203.0652752733, "jitter_ms": 0.0873345473304442, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 34.001596, "end": 35.00154, "seconds": 0.999943971633911, "bytes": 131768, "bits_per_second": 1054203.0652752733, "jitter_ms": 0.0873345473304442, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.00154, "end": 36.001773, "seconds": 1.0002330541610718, "bytes": 130320, "bits_per_second": 1042317.0836664953, "jitter_ms": 0.16225694550750505, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 35.00154, "end": 36.001773, "seconds": 1.0002330541610718, "bytes": 130320, "bits_per_second": 1042317.0836664953, "jitter_ms": 0.16225694550750505, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.001773, "end": 37.001852, "seconds": 1.0000790357589722, "bytes": 131768, "bits_per_second": 1054060.6915132436, "jitter_ms": 0.07587211073049772, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 36.001773, "end": 37.001852, "seconds": 1.0000790357589722, "bytes": 131768, "bits_per_second": 1054060.6915132436, "jitter_ms": 0.07587211073049772, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.001852, "end": 38.001886, "seconds": 1.000033974647522, "bytes": 130320, "bits_per_second": 1042524.5805948413, "jitter_ms": 0.11707997943804689, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 37.001852, "end": 38.001886, "seconds": 1.000033974647522, "bytes": 130320, "bits_per_second": 1042524.5805948413, "jitter_ms": 0.11707997943804689, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.001886, "end": 39.00157, "seconds": 0.999683976173401, "bytes": 131768, "bits_per_second": 1054477.239932425, "jitter_ms": 0.0795088627371561, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 38.001886, "end": 39.00157, "seconds": 0.999683976173401, "bytes": 131768, "bits_per_second": 1054477.239932425, "jitter_ms": 0.0795088627371561, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.00157, "end": 40.001597, "seconds": 1.0000269412994385, "bytes": 130320, "bits_per_second": 1042531.9128355621, "jitter_ms": 0.1189575061201301, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 39.00157, "end": 40.001597, "seconds": 1.0000269412994385, "bytes": 130320, "bits_per_second": 1042531.9128355621, "jitter_ms": 0.1189575061201301, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.001597, "end": 41.001773, "seconds": 1.000175952911377, "bytes": 131768, "bits_per_second": 1053958.5529241425, "jitter_ms": 0.11199579487120924, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 40.001597, "end": 41.001773, "seconds": 1.000175952911377, "bytes": 131768, "bits_per_second": 1053958.5529241425, "jitter_ms": 0.11199579487120924, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.001773, "end": 42.001644, "seconds": 0.999871015548706, "bytes": 131768, "bits_per_second": 1054279.985725469, "jitter_ms": 0.0812665914483845, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 41.001773, "end": 42.001644, "seconds": 0.999871015548706, "bytes": 131768, "bits_per_second": 1054279.985725469, "jitter_ms": 0.0812665914483845, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.001644, "end": 43.001608, "seconds": 0.9999639987945557, "bytes": 130320, "bits_per_second": 1042597.534768045, "jitter_ms": 0.09227853864327565, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 42.001644, "end": 43.001608, "seconds": 0.9999639987945557, "bytes": 130320, "bits_per_second": 1042597.534768045, "jitter_ms": 0.09227853864327565, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.001608, "end": 44.001539, "seconds": 0.99993097782135, "bytes": 131768, "bits_per_second": 1054216.7643378437, "jitter_ms": 0.12671434986485328, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 43.001608, "end": 44.001539, "seconds": 0.99993097782135, "bytes": 131768, "bits_per_second": 1054216.7643378437, "jitter_ms": 0.12671434986485328, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.001539, "end": 45.001628, "seconds": 1.0000890493392944, "bytes": 130320, "bits_per_second": 1042467.1689873656, "jitter_ms": 0.06910516222018254, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 44.001539, "end": 45.001628, "seconds": 1.0000890493392944, "bytes": 130320, "bits_per_second": 1042467.1689873656, "jitter_ms": 0.06910516222018254, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.001628, "end": 46.001577, "seconds": 0.9999489784240723, "bytes": 131768, "bits_per_second": 1054197.7868324236, "jitter_ms": 0.0931916642550066, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 45.001628, "end": 46.001577, "seconds": 0.9999489784240723, "bytes": 131768, "bits_per_second": 1054197.7868324236, "jitter_ms": 0.0931916642550066, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 46.001577, "end": 47.001636, "seconds": 1.0000590085983276, "bytes": 130320, "bits_per_second": 1042498.4836257226, "jitter_ms": 0.05348419164619297, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 46.001577, "end": 47.001636, "seconds": 1.0000590085983276, "bytes": 130320, "bits_per_second": 1042498.4836257226, "jitter_ms": 0.05348419164619297, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 47.001636, "end": 48.001619, "seconds": 0.999983012676239, "bytes": 131768, "bits_per_second": 1054161.9073896173, "jitter_ms": 0.11708103988513936, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 47.001636, "end": 48.001619, "seconds": 0.999983012676239, "bytes": 131768, "bits_per_second": 1054161.9073896173, "jitter_ms": 0.11708103988513936, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 48.001619, "end": 49.001596, "seconds": 0.9999769926071167, "bytes": 130320, "bits_per_second": 1042583.9871394059, "jitter_ms": 0.15298117151911725, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 48.001619, "end": 49.001596, "seconds": 0.9999769926071167, "bytes": 130320, "bits_per_second": 1042583.9871394059, "jitter_ms": 0.15298117151911725, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 49.001596, "end": 50.001529, "seconds": 0.9999330043792725, "bytes": 131768, "bits_per_second": 1054214.627763367, "jitter_ms": 0.11107597780055296, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 49.001596, "end": 50.001529, "seconds": 0.9999330043792725, "bytes": 131768, "bits_per_second": 1054214.627763367, "jitter_ms": 0.11107597780055296, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}], "end": {"streams": [{"udp": {"socket": 5, "start": 0, "end": 50.002772, "seconds": 50.002772, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0.11107597780055296, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "out_of_order": 0, "sender": false}}], "sum": {"start": 0, "end": 50.002772, "seconds": 50.002772, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0.11107597780055296, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "sum_sent": {"start": 0, "end": 50.002772, "seconds": 50.002772, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0, "lost_packets": 0, "packets": 0, "lost_percent": 0, "sender": true}, "sum_received": {"start": 0, "end": 50.002772, "seconds": 50.002772, "bytes": 6555096, "bits_per_second": 1048757.216899895, "jitter_ms": 0.11107597780055296, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "cpu_utilization_percent": {"host_total": 2.434905640491892, "host_user": 0.465994927458237, "host_system": 1.9687727222348814, "remote_total": 0, "remote_user": 0, "remote_system": 0}}}}} 2026-07-04 15:04:41.64837 2026-07-04 11:58:54.193208 +159 7 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 15:05:35.147805 2026-07-04 15:05:35.14781 +163 7 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 15:05:38.068059 2026-07-04 15:05:38.068063 +164 7 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:05:37' --until '2026-07-04 15:05:37' 0 OOM records 2026-07-04 15:05:37.527443 2026-07-04 15:05:37.531448 +165 7 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:05:37' --until '2026-07-04 15:05:37' 0 systemd errors records 2026-07-04 15:05:37.527443 2026-07-04 15:05:37.531448 +166 7 loader /usr/bin/stress-ng --timeout 45 --cpu-method all --vm-method all --sock 0 --netdev 0 --udp-flood 0 --syscall-method all --verify --metrics --maximize --seed 1592594996 & /usr/bin/iperf3 --time 45 --port 5201 --client 10.5.0.10 --interval 1 --version4 --json {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 298.49}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 1424, "real_time_secs": 45.06, "usr_time_secs": 10.36, "sys_time_secs": 63.02, "bogo_ops_s_real_time": 31.6, "bogo_ops_s_usr_sys_time": 19.41, "cpu_used_per_instance": 40.71, "rss_max_kb": 2268, "top10_slowest": null}, "1": {"stressor": "netdev", "bogo_ops": 45905, "real_time_secs": 45.01, "usr_time_secs": 12.62, "sys_time_secs": 30.17, "bogo_ops_s_real_time": 1019.97, "bogo_ops_s_usr_sys_time": 1072.65, "cpu_used_per_instance": 23.77, "rss_max_kb": 1948, "top10_slowest": null}, "2": {"stressor": "udp-flood", "bogo_ops": 232079, "real_time_secs": 45.0, "usr_time_secs": 4.82, "sys_time_secs": 42.43, "bogo_ops_s_real_time": 5157.08, "bogo_ops_s_usr_sys_time": 4911.81, "cpu_used_per_instance": 26.25, "rss_max_kb": 2084, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 12, "failed": -1, "metrics_untrustworthy": -1}}, "iperf3": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 42686, "remote_host": "10.5.0.10", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux f88e0f09de05 6.17.0-35-generic #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 19:30:42 UTC 2 x86_64", "timestamp": {"time": "Sat, 04 Jul 2026 15:05:43 GMT", "timesecs": 1783177543}, "connecting_to": {"host": "10.5.0.10", "port": 5201}, "cookie": "lglbebyw73klo3jup5yvy5iyofdnqjj6jkrf", "tcp_mss_default": 1448, "target_bitrate": 0, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 45, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.00047, "seconds": 1.0004700422286987, "bytes": 117178368, "bits_per_second": 936986520.7675178, "retransmits": 0, "snd_cwnd": 243264, "snd_wnd": 0, "rtt": 634, "rttvar": 493, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.00047, "seconds": 1.0004700422286987, "bytes": 117178368, "bits_per_second": 936986520.7675178, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.00047, "end": 2.000474, "seconds": 1.0000040531158447, "bytes": 90177536, "bits_per_second": 721417364.0118513, "retransmits": 0, "snd_cwnd": 243264, "snd_wnd": 0, "rtt": 717, "rttvar": 610, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 1.00047, "end": 2.000474, "seconds": 1.0000040531158447, "bytes": 90177536, "bits_per_second": 721417364.0118513, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.000474, "end": 3.001023, "seconds": 1.0005489587783813, "bytes": 21495808, "bits_per_second": 171872113.294648, "retransmits": 20, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 5217, "rttvar": 6000, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 2.000474, "end": 3.001023, "seconds": 1.0005489587783813, "bytes": 21495808, "bits_per_second": 171872113.294648, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.001023, "end": 4.001027, "seconds": 1.0000040531158447, "bytes": 18481152, "bits_per_second": 147848616.75242883, "retransmits": 24, "snd_cwnd": 243264, "snd_wnd": 0, "rtt": 2513, "rttvar": 2483, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 3.001023, "end": 4.001027, "seconds": 1.0000040531158447, "bytes": 18481152, "bits_per_second": 147848616.75242883, "retransmits": 24, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.001027, "end": 5.000471, "seconds": 0.999444007873535, "bytes": 19267584, "bits_per_second": 154226420.6755885, "retransmits": 29, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 2599, "rttvar": 3261, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 4.001027, "end": 5.000471, "seconds": 0.999444007873535, "bytes": 19267584, "bits_per_second": 154226420.6755885, "retransmits": 29, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.000471, "end": 6.001024, "seconds": 1.000553011894226, "bytes": 20578304, "bits_per_second": 164535441.94358346, "retransmits": 26, "snd_cwnd": 243264, "snd_wnd": 0, "rtt": 3152, "rttvar": 3304, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 5.000471, "end": 6.001024, "seconds": 1.000553011894226, "bytes": 20578304, "bits_per_second": 164535441.94358346, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.001024, "end": 7.001028, "seconds": 1.0000040531158447, "bytes": 20709376, "bits_per_second": 165674336.50272167, "retransmits": 25, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 2494, "rttvar": 3482, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 6.001024, "end": 7.001028, "seconds": 1.0000040531158447, "bytes": 20709376, "bits_per_second": 165674336.50272167, "retransmits": 25, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.001028, "end": 8.001024, "seconds": 0.9999960064888, "bytes": 17301504, "bits_per_second": 138412584.75220743, "retransmits": 19, "snd_cwnd": 243264, "snd_wnd": 0, "rtt": 2567, "rttvar": 2814, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 7.001028, "end": 8.001024, "seconds": 0.9999960064888, "bytes": 17301504, "bits_per_second": 138412584.75220743, "retransmits": 19, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.001024, "end": 9.001028, "seconds": 1.0000040531158447, "bytes": 18481152, "bits_per_second": 147848616.75242883, "retransmits": 28, "snd_cwnd": 243264, "snd_wnd": 0, "rtt": 3576, "rttvar": 3954, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 8.001024, "end": 9.001028, "seconds": 1.0000040531158447, "bytes": 18481152, "bits_per_second": 147848616.75242883, "retransmits": 28, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.001028, "end": 10.001028, "seconds": 1, "bytes": 20316160, "bits_per_second": 162529280, "retransmits": 32, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 2103, "rttvar": 2740, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 9.001028, "end": 10.001028, "seconds": 1, "bytes": 20316160, "bits_per_second": 162529280, "retransmits": 32, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.001028, "end": 11.000474, "seconds": 0.9994459748268127, "bytes": 24248320, "bits_per_second": 194094093.01349643, "retransmits": 24, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 2167, "rttvar": 2920, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 10.001028, "end": 11.000474, "seconds": 0.9994459748268127, "bytes": 24248320, "bits_per_second": 194094093.01349643, "retransmits": 24, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.000474, "end": 12.001033, "seconds": 1.0005589723587036, "bytes": 21495808, "bits_per_second": 171870393.20092118, "retransmits": 30, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 2412, "rttvar": 3069, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 11.000474, "end": 12.001033, "seconds": 1.0005589723587036, "bytes": 21495808, "bits_per_second": 171870393.20092118, "retransmits": 30, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.001033, "end": 13.00102, "seconds": 0.999987006187439, "bytes": 19398656, "bits_per_second": 155191264.52620235, "retransmits": 26, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 1895, "rttvar": 1658, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 12.001033, "end": 13.00102, "seconds": 0.999987006187439, "bytes": 19398656, "bits_per_second": 155191264.52620235, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.00102, "end": 14.000468, "seconds": 0.999448001384735, "bytes": 23986176, "bits_per_second": 191995389.18896955, "retransmits": 21, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 2784, "rttvar": 3206, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 13.00102, "end": 14.000468, "seconds": 0.999448001384735, "bytes": 23986176, "bits_per_second": 191995389.18896955, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.000468, "end": 15.001033, "seconds": 1.0005650520324707, "bytes": 20578304, "bits_per_second": 164533462.0328689, "retransmits": 26, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 3124, "rttvar": 4090, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 14.000468, "end": 15.001033, "seconds": 1.0005650520324707, "bytes": 20578304, "bits_per_second": 164533462.0328689, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.001033, "end": 16.001035, "seconds": 1.0000020265579224, "bytes": 20054016, "bits_per_second": 160431802.87565887, "retransmits": 26, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 2587, "rttvar": 3618, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 15.001033, "end": 16.001035, "seconds": 1.0000020265579224, "bytes": 20054016, "bits_per_second": 160431802.87565887, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.001035, "end": 17.001034, "seconds": 0.9999989867210388, "bytes": 18612224, "bits_per_second": 148897942.8751529, "retransmits": 25, "snd_cwnd": 243264, "snd_wnd": 0, "rtt": 3041, "rttvar": 3324, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 16.001035, "end": 17.001034, "seconds": 0.9999989867210388, "bytes": 18612224, "bits_per_second": 148897942.8751529, "retransmits": 25, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.001034, "end": 18.001017, "seconds": 0.999983012676239, "bytes": 15859712, "bits_per_second": 126879851.34911361, "retransmits": 18, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 4069, "rttvar": 4714, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 17.001034, "end": 18.001017, "seconds": 0.999983012676239, "bytes": 15859712, "bits_per_second": 126879851.34911361, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.001017, "end": 19.000482, "seconds": 0.999464988708496, "bytes": 19267584, "bits_per_second": 154223183.14439392, "retransmits": 23, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 2435, "rttvar": 2755, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 18.001017, "end": 19.000482, "seconds": 0.999464988708496, "bytes": 19267584, "bits_per_second": 154223183.14439392, "retransmits": 23, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.000482, "end": 20.000502, "seconds": 1.0000200271606445, "bytes": 21495808, "bits_per_second": 171963020.06897217, "retransmits": 32, "snd_cwnd": 243264, "snd_wnd": 0, "rtt": 3559, "rttvar": 4475, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 19.000482, "end": 20.000502, "seconds": 1.0000200271606445, "bytes": 21495808, "bits_per_second": 171963020.06897217, "retransmits": 32, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.000502, "end": 21.001034, "seconds": 1.0005320310592651, "bytes": 19267584, "bits_per_second": 154058707.9824031, "retransmits": 24, "snd_cwnd": 243264, "snd_wnd": 0, "rtt": 1664, "rttvar": 1700, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 20.000502, "end": 21.001034, "seconds": 1.0005320310592651, "bytes": 19267584, "bits_per_second": 154058707.9824031, "retransmits": 24, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.001034, "end": 22.001033, "seconds": 0.9999989867210388, "bytes": 18743296, "bits_per_second": 149946519.937654, "retransmits": 30, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 3331, "rttvar": 4647, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 21.001034, "end": 22.001033, "seconds": 0.9999989867210388, "bytes": 18743296, "bits_per_second": 149946519.937654, "retransmits": 30, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.001033, "end": 23.001018, "seconds": 0.9999849796295166, "bytes": 15204352, "bits_per_second": 121636643.02744263, "retransmits": 25, "snd_cwnd": 243264, "snd_wnd": 114688, "rtt": 3881, "rttvar": 5133, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 22.001033, "end": 23.001018, "seconds": 0.9999849796295166, "bytes": 15204352, "bits_per_second": 121636643.02744263, "retransmits": 25, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.001018, "end": 24.001032, "seconds": 1.0000139474868774, "bytes": 17694720, "bits_per_second": 141555785.6525372, "retransmits": 29, "snd_cwnd": 243264, "snd_wnd": 0, "rtt": 3001, "rttvar": 3750, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 23.001018, "end": 24.001032, "seconds": 1.0000139474868774, "bytes": 17694720, "bits_per_second": 141555785.6525372, "retransmits": 29, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.001032, "end": 25.001032, "seconds": 1, "bytes": 22544384, "bits_per_second": 180355072, "retransmits": 23, "snd_cwnd": 169416, "snd_wnd": 114688, "rtt": 2145, "rttvar": 2485, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 24.001032, "end": 25.001032, "seconds": 1, "bytes": 22544384, "bits_per_second": 180355072, "retransmits": 23, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.001032, "end": 26.001033, "seconds": 1.0000009536743164, "bytes": 21495808, "bits_per_second": 171966300.0001564, "retransmits": 19, "snd_cwnd": 169416, "snd_wnd": 114688, "rtt": 2912, "rttvar": 4077, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 25.001032, "end": 26.001033, "seconds": 1.0000009536743164, "bytes": 21495808, "bits_per_second": 171966300.0001564, "retransmits": 19, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.001033, "end": 27.001032, "seconds": 0.9999989867210388, "bytes": 18350080, "bits_per_second": 146800788.75015074, "retransmits": 29, "snd_cwnd": 169416, "snd_wnd": 0, "rtt": 2032, "rttvar": 2069, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 26.001033, "end": 27.001032, "seconds": 0.9999989867210388, "bytes": 18350080, "bits_per_second": 146800788.75015074, "retransmits": 29, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.001032, "end": 28.000469, "seconds": 0.9994369745254517, "bytes": 17694720, "bits_per_second": 141637505.52376136, "retransmits": 21, "snd_cwnd": 169416, "snd_wnd": 114688, "rtt": 2582, "rttvar": 3050, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 27.001032, "end": 28.000469, "seconds": 0.9994369745254517, "bytes": 17694720, "bits_per_second": 141637505.52376136, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.000469, "end": 29.001035, "seconds": 1.000566005706787, "bytes": 26607616, "bits_per_second": 212740515.654075, "retransmits": 22, "snd_cwnd": 169416, "snd_wnd": 0, "rtt": 2536, "rttvar": 2646, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 28.000469, "end": 29.001035, "seconds": 1.000566005706787, "bytes": 26607616, "bits_per_second": 212740515.654075, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.001035, "end": 30.001036, "seconds": 1.0000009536743164, "bytes": 24379392, "bits_per_second": 195034950.00017738, "retransmits": 20, "snd_cwnd": 169416, "snd_wnd": 0, "rtt": 1873, "rttvar": 2121, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 29.001035, "end": 30.001036, "seconds": 1.0000009536743164, "bytes": 24379392, "bits_per_second": 195034950.00017738, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.001036, "end": 31.000475, "seconds": 0.999439001083374, "bytes": 20840448, "bits_per_second": 166817168.25066322, "retransmits": 24, "snd_cwnd": 169416, "snd_wnd": 0, "rtt": 3367, "rttvar": 3779, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 30.001036, "end": 31.000475, "seconds": 0.999439001083374, "bytes": 20840448, "bits_per_second": 166817168.25066322, "retransmits": 24, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.000475, "end": 32.000485, "seconds": 1.0000100135803223, "bytes": 19005440, "bits_per_second": 152041997.51524553, "retransmits": 21, "snd_cwnd": 169416, "snd_wnd": 114688, "rtt": 3194, "rttvar": 4476, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 31.000475, "end": 32.000485, "seconds": 1.0000100135803223, "bytes": 19005440, "bits_per_second": 152041997.51524553, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.000485, "end": 33.001019, "seconds": 1.0005340576171875, "bytes": 18219008, "bits_per_second": 145674265.54885545, "retransmits": 22, "snd_cwnd": 169416, "snd_wnd": 0, "rtt": 1176, "rttvar": 1004, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 32.000485, "end": 33.001019, "seconds": 1.0005340576171875, "bytes": 18219008, "bits_per_second": 145674265.54885545, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.001019, "end": 34.001032, "seconds": 1.000012993812561, "bytes": 25821184, "bits_per_second": 206566787.90987656, "retransmits": 27, "snd_cwnd": 169416, "snd_wnd": 0, "rtt": 2531, "rttvar": 2524, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 33.001019, "end": 34.001032, "seconds": 1.000012993812561, "bytes": 25821184, "bits_per_second": 206566787.90987656, "retransmits": 27, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.001032, "end": 35.001034, "seconds": 1.0000020265579224, "bytes": 19136512, "bits_per_second": 153091785.75062874, "retransmits": 31, "snd_cwnd": 169416, "snd_wnd": 114688, "rtt": 2271, "rttvar": 2913, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 34.001032, "end": 35.001034, "seconds": 1.0000020265579224, "bytes": 19136512, "bits_per_second": 153091785.75062874, "retransmits": 31, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.001034, "end": 36.001034, "seconds": 1, "bytes": 20578304, "bits_per_second": 164626432, "retransmits": 21, "snd_cwnd": 169416, "snd_wnd": 0, "rtt": 3198, "rttvar": 2848, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 35.001034, "end": 36.001034, "seconds": 1, "bytes": 20578304, "bits_per_second": 164626432, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.001034, "end": 37.000474, "seconds": 0.9994400143623352, "bytes": 19136512, "bits_per_second": 153177873.40911713, "retransmits": 26, "snd_cwnd": 169416, "snd_wnd": 114688, "rtt": 3350, "rttvar": 4456, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 36.001034, "end": 37.000474, "seconds": 0.9994400143623352, "bytes": 19136512, "bits_per_second": 153177873.40911713, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.000474, "end": 38.001033, "seconds": 1.0005589723587036, "bytes": 21889024, "bits_per_second": 175014363.80825508, "retransmits": 18, "snd_cwnd": 169416, "snd_wnd": 114688, "rtt": 669, "rttvar": 608, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 37.000474, "end": 38.001033, "seconds": 1.0005589723587036, "bytes": 21889024, "bits_per_second": 175014363.80825508, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.001033, "end": 39.00049, "seconds": 0.9994570016860962, "bytes": 27787264, "bits_per_second": 222418885.07957858, "retransmits": 16, "snd_cwnd": 169416, "snd_wnd": 0, "rtt": 2158, "rttvar": 1637, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 38.001033, "end": 39.00049, "seconds": 0.9994570016860962, "bytes": 27787264, "bits_per_second": 222418885.07957858, "retransmits": 16, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.00049, "end": 40.001038, "seconds": 1.000548005104065, "bytes": 22282240, "bits_per_second": 178160287.25324354, "retransmits": 22, "snd_cwnd": 169416, "snd_wnd": 114688, "rtt": 3682, "rttvar": 4226, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 39.00049, "end": 40.001038, "seconds": 1.000548005104065, "bytes": 22282240, "bits_per_second": 178160287.25324354, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.001038, "end": 41.001037, "seconds": 0.9999989867210388, "bytes": 22151168, "bits_per_second": 177209523.56268194, "retransmits": 23, "snd_cwnd": 169416, "snd_wnd": 0, "rtt": 3003, "rttvar": 3371, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 40.001038, "end": 41.001037, "seconds": 0.9999989867210388, "bytes": 22151168, "bits_per_second": 177209523.56268194, "retransmits": 23, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.001037, "end": 42.001035, "seconds": 0.9999979734420776, "bytes": 19398656, "bits_per_second": 155189562.50063735, "retransmits": 24, "snd_cwnd": 169416, "snd_wnd": 114688, "rtt": 2912, "rttvar": 3340, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 41.001037, "end": 42.001035, "seconds": 0.9999979734420776, "bytes": 19398656, "bits_per_second": 155189562.50063735, "retransmits": 24, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.001035, "end": 43.000485, "seconds": 0.9994500279426575, "bytes": 19529728, "bits_per_second": 156323797.720644, "retransmits": 26, "snd_cwnd": 169416, "snd_wnd": 0, "rtt": 3736, "rttvar": 4669, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 42.001035, "end": 43.000485, "seconds": 0.9994500279426575, "bytes": 19529728, "bits_per_second": 156323797.720644, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.000485, "end": 44.000921, "seconds": 1.0004359483718872, "bytes": 23592960, "bits_per_second": 188661433.35529086, "retransmits": 29, "snd_cwnd": 169416, "snd_wnd": 114688, "rtt": 2921, "rttvar": 2724, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 43.000485, "end": 44.000921, "seconds": 1.0004359483718872, "bytes": 23592960, "bits_per_second": 188661433.35529086, "retransmits": 29, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.000921, "end": 45.001585, "seconds": 1.0006639957427979, "bytes": 20709376, "bits_per_second": 165565073.4960426, "retransmits": 32, "snd_cwnd": 169416, "snd_wnd": 114688, "rtt": 3330, "rttvar": 2994, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 44.000921, "end": 45.001585, "seconds": 1.0006639957427979, "bytes": 20709376, "bits_per_second": 165565073.4960426, "retransmits": 32, "omitted": false, "sender": true}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 45.001585, "seconds": 45.001585, "bytes": 1091043328, "bits_per_second": 193956426.73474723, "retransmits": 1058, "max_snd_cwnd": 243264, "max_snd_wnd": 114688, "max_rtt": 5217, "min_rtt": 634, "mean_rtt": 2691, "sender": true}, "receiver": {"socket": 5, "start": 0, "end": 45.010368, "seconds": 45.001585, "bytes": 1089863680, "bits_per_second": 193708912.57765323, "sender": true}}], "sum_sent": {"start": 0, "end": 45.001585, "seconds": 45.001585, "bytes": 1091043328, "bits_per_second": 193956426.73474723, "retransmits": 1058, "sender": true}, "sum_received": {"start": 0, "end": 45.010368, "seconds": 45.010368, "bytes": 1089863680, "bits_per_second": 193708912.57765323, "sender": true}, "cpu_utilization_percent": {"host_total": 0.5386870935411294, "host_user": 0.023630425825603547, "host_system": 0.5150588886202088, "remote_total": 30.081498546282738, "remote_user": 1.838192950706561, "remote_system": 28.243283378354313}, "sender_tcp_congestion": "cubic", "receiver_tcp_congestion": "cubic"}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 42686}], "version": "iperf 3.18", "system_info": "Linux qemux86-64 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64", "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "timestamp": {"time": "Sat, 04 Jul 2026 15:05:43 GMT", "timesecs": 1783177543}, "accepted_connection": {"host": "10.5.0.11", "port": 42676}, "cookie": "lglbebyw73klo3jup5yvy5iyofdnqjj6jkrf", "tcp_mss_default": 0, "target_bitrate": 0, "fq_rate": 0, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 45, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.007955, "seconds": 1.0079549551010132, "bytes": 116260864, "bits_per_second": 922746504.9832414, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.007955, "seconds": 1.0079549551010132, "bytes": 116260864, "bits_per_second": 922746504.9832414, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.007955, "end": 2.001617, "seconds": 0.9936619997024536, "bytes": 88997888, "bits_per_second": 716524436.0891322, "omitted": false, "sender": false}], "sum": {"start": 1.007955, "end": 2.001617, "seconds": 0.9936619997024536, "bytes": 88997888, "bits_per_second": 716524436.0891322, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.001617, "end": 3.006701, "seconds": 1.0050840377807617, "bytes": 21495808, "bits_per_second": 171096602.4091917, "omitted": false, "sender": false}], "sum": {"start": 2.001617, "end": 3.006701, "seconds": 1.0050840377807617, "bytes": 21495808, "bits_per_second": 171096602.4091917, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.006701, "end": 4.008677, "seconds": 1.0019760131835938, "bytes": 18481152, "bits_per_second": 147557640.15770838, "omitted": false, "sender": false}], "sum": {"start": 3.006701, "end": 4.008677, "seconds": 1.0019760131835938, "bytes": 18481152, "bits_per_second": 147557640.15770838, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.008677, "end": 5.000622, "seconds": 0.9919450283050537, "bytes": 19267584, "bits_per_second": 155392353.0050669, "omitted": false, "sender": false}], "sum": {"start": 4.008677, "end": 5.000622, "seconds": 0.9919450283050537, "bytes": 19267584, "bits_per_second": 155392353.0050669, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.000622, "end": 6.000586, "seconds": 0.9999639987945557, "bytes": 20054016, "bits_per_second": 160437903.95794144, "omitted": false, "sender": false}], "sum": {"start": 5.000622, "end": 6.000586, "seconds": 0.9999639987945557, "bytes": 20054016, "bits_per_second": 160437903.95794144, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.000586, "end": 7.003612, "seconds": 1.003026008605957, "bytes": 20578304, "bits_per_second": 164129773.8917099, "omitted": false, "sender": false}], "sum": {"start": 6.000586, "end": 7.003612, "seconds": 1.003026008605957, "bytes": 20578304, "bits_per_second": 164129773.8917099, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.003612, "end": 8.004621, "seconds": 1.0010089874267578, "bytes": 17563648, "bits_per_second": 140367554.90197918, "omitted": false, "sender": false}], "sum": {"start": 7.003612, "end": 8.004621, "seconds": 1.0010089874267578, "bytes": 17563648, "bits_per_second": 140367554.90197918, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.004621, "end": 9.004623, "seconds": 1.0000020265579224, "bytes": 18612224, "bits_per_second": 148897490.2506115, "omitted": false, "sender": false}], "sum": {"start": 8.004621, "end": 9.004623, "seconds": 1.0000020265579224, "bytes": 18612224, "bits_per_second": 148897490.2506115, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.004623, "end": 10.000617, "seconds": 0.995993971824646, "bytes": 20316160, "bits_per_second": 163182995.67842644, "omitted": false, "sender": false}], "sum": {"start": 9.004623, "end": 10.000617, "seconds": 0.995993971824646, "bytes": 20316160, "bits_per_second": 163182995.67842644, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.000617, "end": 11.003089, "seconds": 1.0024720430374146, "bytes": 23724032, "bits_per_second": 189324238.3348106, "omitted": false, "sender": false}], "sum": {"start": 10.000617, "end": 11.003089, "seconds": 1.0024720430374146, "bytes": 23724032, "bits_per_second": 189324238.3348106, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.003089, "end": 12.000625, "seconds": 0.99753600358963, "bytes": 21757952, "bits_per_second": 174493567.5240118, "omitted": false, "sender": false}], "sum": {"start": 11.003089, "end": 12.000625, "seconds": 0.99753600358963, "bytes": 21757952, "bits_per_second": 174493567.5240118, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.000625, "end": 13.000987, "seconds": 1.0003620386123657, "bytes": 19136512, "bits_per_second": 153036690.80881852, "omitted": false, "sender": false}], "sum": {"start": 12.000625, "end": 13.000987, "seconds": 1.0003620386123657, "bytes": 19136512, "bits_per_second": 153036690.80881852, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.000987, "end": 14.002946, "seconds": 1.001958966255188, "bytes": 23986176, "bits_per_second": 191514238.07023236, "omitted": false, "sender": false}], "sum": {"start": 13.000987, "end": 14.002946, "seconds": 1.001958966255188, "bytes": 23986176, "bits_per_second": 191514238.07023236, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.002946, "end": 15.00269, "seconds": 0.9997439980506897, "bytes": 20840448, "bits_per_second": 166766276.49186113, "omitted": false, "sender": false}], "sum": {"start": 14.002946, "end": 15.00269, "seconds": 0.9997439980506897, "bytes": 20840448, "bits_per_second": 166766276.49186113, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.00269, "end": 16.007832, "seconds": 1.0051419734954834, "bytes": 20316160, "bits_per_second": 161697834.02317575, "omitted": false, "sender": false}], "sum": {"start": 15.00269, "end": 16.007832, "seconds": 1.0051419734954834, "bytes": 20316160, "bits_per_second": 161697834.02317575, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.007832, "end": 17.004605, "seconds": 0.9967730045318604, "bytes": 18219008, "bits_per_second": 146223927.95283738, "omitted": false, "sender": false}], "sum": {"start": 16.007832, "end": 17.004605, "seconds": 0.9967730045318604, "bytes": 18219008, "bits_per_second": 146223927.95283738, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.004605, "end": 18.000729, "seconds": 0.996124029159546, "bytes": 15597568, "bits_per_second": 125266071.64097866, "omitted": false, "sender": false}], "sum": {"start": 17.004605, "end": 18.000729, "seconds": 0.996124029159546, "bytes": 15597568, "bits_per_second": 125266071.64097866, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.000729, "end": 19.003598, "seconds": 1.0028690099716187, "bytes": 19791872, "bits_per_second": 157882010.9362846, "omitted": false, "sender": false}], "sum": {"start": 18.000729, "end": 19.003598, "seconds": 1.0028690099716187, "bytes": 19791872, "bits_per_second": 157882010.9362846, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.003598, "end": 20.000696, "seconds": 0.9970980286598206, "bytes": 20840448, "bits_per_second": 167208819.201147, "omitted": false, "sender": false}], "sum": {"start": 19.003598, "end": 20.000696, "seconds": 0.9970980286598206, "bytes": 20840448, "bits_per_second": 167208819.201147, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.000696, "end": 21.003655, "seconds": 1.0029590129852295, "bytes": 19529728, "bits_per_second": 155776878.1946236, "omitted": false, "sender": false}], "sum": {"start": 20.000696, "end": 21.003655, "seconds": 1.0029590129852295, "bytes": 19529728, "bits_per_second": 155776878.1946236, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.003655, "end": 22.000602, "seconds": 0.9969469904899597, "bytes": 18219008, "bits_per_second": 146198409.13343716, "omitted": false, "sender": false}], "sum": {"start": 21.003655, "end": 22.000602, "seconds": 0.9969469904899597, "bytes": 18219008, "bits_per_second": 146198409.13343716, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.000602, "end": 23.001778, "seconds": 1.0011759996414185, "bytes": 15728640, "bits_per_second": 125681318.81414157, "omitted": false, "sender": false}], "sum": {"start": 22.000602, "end": 23.001778, "seconds": 1.0011759996414185, "bytes": 15728640, "bits_per_second": 125681318.81414157, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.001778, "end": 24.006969, "seconds": 1.0051909685134888, "bytes": 17694720, "bits_per_second": 140826732.86384627, "omitted": false, "sender": false}], "sum": {"start": 23.001778, "end": 24.006969, "seconds": 1.0051909685134888, "bytes": 17694720, "bits_per_second": 140826732.86384627, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.006969, "end": 25.000599, "seconds": 0.9936299920082092, "bytes": 22151168, "bits_per_second": 178345405.65934923, "omitted": false, "sender": false}], "sum": {"start": 24.006969, "end": 25.000599, "seconds": 0.9936299920082092, "bytes": 22151168, "bits_per_second": 178345405.65934923, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.000599, "end": 26.00559, "seconds": 1.004991054534912, "bytes": 21889024, "bits_per_second": 174242537.99058747, "omitted": false, "sender": false}], "sum": {"start": 25.000599, "end": 26.00559, "seconds": 1.004991054534912, "bytes": 21889024, "bits_per_second": 174242537.99058747, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.00559, "end": 27.000605, "seconds": 0.995015025138855, "bytes": 18087936, "bits_per_second": 145428445.14313394, "omitted": false, "sender": false}], "sum": {"start": 26.00559, "end": 27.000605, "seconds": 0.995015025138855, "bytes": 18087936, "bits_per_second": 145428445.14313394, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.000605, "end": 28.002597, "seconds": 1.0019919872283936, "bytes": 17694720, "bits_per_second": 141276339.33636776, "omitted": false, "sender": false}], "sum": {"start": 27.000605, "end": 28.002597, "seconds": 1.0019919872283936, "bytes": 17694720, "bits_per_second": 141276339.33636776, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.002597, "end": 29.003688, "seconds": 1.0010910034179688, "bytes": 27000832, "bits_per_second": 215771248.830027, "omitted": false, "sender": false}], "sum": {"start": 28.002597, "end": 29.003688, "seconds": 1.0010910034179688, "bytes": 27000832, "bits_per_second": 215771248.830027, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.003688, "end": 30.000637, "seconds": 0.996949017047882, "bytes": 23986176, "bits_per_second": 192476650.98082325, "omitted": false, "sender": false}], "sum": {"start": 29.003688, "end": 30.000637, "seconds": 0.996949017047882, "bytes": 23986176, "bits_per_second": 192476650.98082325, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.000637, "end": 31.004828, "seconds": 1.0041910409927368, "bytes": 21102592, "bits_per_second": 168116154.30576327, "omitted": false, "sender": false}], "sum": {"start": 30.000637, "end": 31.004828, "seconds": 1.0041910409927368, "bytes": 21102592, "bits_per_second": 168116154.30576327, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.004828, "end": 32.001579, "seconds": 0.9967510104179382, "bytes": 18743296, "bits_per_second": 150435130.1707007, "omitted": false, "sender": false}], "sum": {"start": 31.004828, "end": 32.001579, "seconds": 0.9967510104179382, "bytes": 18743296, "bits_per_second": 150435130.1707007, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.001579, "end": 33.000791, "seconds": 0.9992120265960693, "bytes": 17956864, "bits_per_second": 143768197.51597363, "omitted": false, "sender": false}], "sum": {"start": 32.001579, "end": 33.000791, "seconds": 0.9992120265960693, "bytes": 17956864, "bits_per_second": 143768197.51597363, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.000791, "end": 34.001928, "seconds": 1.0011370182037354, "bytes": 25952256, "bits_per_second": 207382250.60592946, "omitted": false, "sender": false}], "sum": {"start": 33.000791, "end": 34.001928, "seconds": 1.0011370182037354, "bytes": 25952256, "bits_per_second": 207382250.60592946, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.001928, "end": 35.000841, "seconds": 0.9989129900932312, "bytes": 18874368, "bits_per_second": 151159255.60834607, "omitted": false, "sender": false}], "sum": {"start": 34.001928, "end": 35.000841, "seconds": 0.9989129900932312, "bytes": 18874368, "bits_per_second": 151159255.60834607, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.000841, "end": 36.004252, "seconds": 1.003411054611206, "bytes": 20971520, "bits_per_second": 167201825.44232288, "omitted": false, "sender": false}], "sum": {"start": 35.000841, "end": 36.004252, "seconds": 1.003411054611206, "bytes": 20971520, "bits_per_second": 167201825.44232288, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.004252, "end": 37.003588, "seconds": 0.999336004257202, "bytes": 19005440, "bits_per_second": 152144543.3290604, "omitted": false, "sender": false}], "sum": {"start": 36.004252, "end": 37.003588, "seconds": 0.999336004257202, "bytes": 19005440, "bits_per_second": 152144543.3290604, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.003588, "end": 38.000588, "seconds": 0.996999979019165, "bytes": 21233664, "bits_per_second": 170380456.94556093, "omitted": false, "sender": false}], "sum": {"start": 37.003588, "end": 38.000588, "seconds": 0.996999979019165, "bytes": 21233664, "bits_per_second": 170380456.94556093, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.000588, "end": 39.000613, "seconds": 1.0000250339508057, "bytes": 27918336, "bits_per_second": 223341096.88996756, "omitted": false, "sender": false}], "sum": {"start": 38.000588, "end": 39.000613, "seconds": 1.0000250339508057, "bytes": 27918336, "bits_per_second": 223341096.88996756, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.000613, "end": 40.001034, "seconds": 1.0004210472106934, "bytes": 22282240, "bits_per_second": 178182896.5883982, "omitted": false, "sender": false}], "sum": {"start": 39.000613, "end": 40.001034, "seconds": 1.0004210472106934, "bytes": 22282240, "bits_per_second": 178182896.5883982, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.001034, "end": 41.004385, "seconds": 1.0033509731292725, "bytes": 22282240, "bits_per_second": 177662577.476798, "omitted": false, "sender": false}], "sum": {"start": 40.001034, "end": 41.004385, "seconds": 1.0033509731292725, "bytes": 22282240, "bits_per_second": 177662577.476798, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.004385, "end": 42.000647, "seconds": 0.996262013912201, "bytes": 18874368, "bits_per_second": 151561478.69882247, "omitted": false, "sender": false}], "sum": {"start": 41.004385, "end": 42.000647, "seconds": 0.996262013912201, "bytes": 18874368, "bits_per_second": 151561478.69882247, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.000647, "end": 43.001941, "seconds": 1.0012940168380737, "bytes": 19660800, "bits_per_second": 157083131.7824961, "omitted": false, "sender": false}], "sum": {"start": 42.000647, "end": 43.001941, "seconds": 1.0012940168380737, "bytes": 19660800, "bits_per_second": 157083131.7824961, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.001941, "end": 44.006692, "seconds": 1.0047509670257568, "bytes": 23592960, "bits_per_second": 187851205.1187322, "omitted": false, "sender": false}], "sum": {"start": 43.001941, "end": 44.006692, "seconds": 1.0047509670257568, "bytes": 23592960, "bits_per_second": 187851205.1187322, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.006692, "end": 45.000599, "seconds": 0.9939069747924805, "bytes": 20578304, "bits_per_second": 165635654.21640453, "omitted": false, "sender": false}], "sum": {"start": 44.006692, "end": 45.000599, "seconds": 0.9939069747924805, "bytes": 20578304, "bits_per_second": 165635654.21640453, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.000599, "end": 45.010368, "seconds": 0.009769000113010406, "bytes": 262144, "bits_per_second": 214674170.92226273, "omitted": false, "sender": false}], "sum": {"start": 45.000599, "end": 45.010368, "seconds": 0.009769000113010406, "bytes": 262144, "bits_per_second": 214674170.92226273, "omitted": false, "sender": false}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 45.010368, "seconds": 45.010368, "bytes": 0, "bits_per_second": 0, "sender": false}, "receiver": {"socket": 5, "start": 0, "end": 45.010368, "seconds": 45.010368, "bytes": 1089863680, "bits_per_second": 193708912.57765323, "sender": false}}], "sum_sent": {"start": 0, "end": 45.010368, "seconds": 45.010368, "bytes": 0, "bits_per_second": 0, "sender": false}, "sum_received": {"start": 0, "end": 45.010368, "seconds": 45.010368, "bytes": 1089863680, "bits_per_second": 193708912.57765323, "sender": false}, "cpu_utilization_percent": {"host_total": 30.081498546282738, "host_user": 1.838192950706561, "host_system": 28.243283378354313, "remote_total": 0, "remote_user": 0, "remote_system": 0}, "receiver_tcp_congestion": "cubic"}}}} 2026-07-04 15:05:40.249736 2026-07-04 11:58:54.193208 +167 7 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 15:06:30.954417 2026-07-04 15:06:30.95442 +168 7 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:05:39' --until '2026-07-04 15:06:30' 0 OOM records 2026-07-04 15:05:39.921951 2026-07-04 15:06:30.529358 +169 7 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:05:39' --until '2026-07-04 15:06:30' 0 systemd errors records 2026-07-04 15:05:39.921951 2026-07-04 15:06:30.529358 +170 7 loader /usr/bin/stress-ng --timeout 50 --cpu-method all --vm-method all --sock 0 --sock-ops 1000 --netdev 0 --syscall-method all --verify --metrics --udp 0 {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 328.38}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 1000, "real_time_secs": 34.1, "usr_time_secs": 7.25, "sys_time_secs": 44.31, "bogo_ops_s_real_time": 29.32, "bogo_ops_s_usr_sys_time": 19.39, "cpu_used_per_instance": 37.8, "rss_max_kb": 2336, "top10_slowest": null}, "1": {"stressor": "netdev", "bogo_ops": 55283, "real_time_secs": 50.0, "usr_time_secs": 15.13, "sys_time_secs": 36.48, "bogo_ops_s_real_time": 1105.6, "bogo_ops_s_usr_sys_time": 1071.19, "cpu_used_per_instance": 25.8, "rss_max_kb": 2144, "top10_slowest": null}, "2": {"stressor": "udp", "bogo_ops": 519175, "real_time_secs": 50.0, "usr_time_secs": 13.81, "sys_time_secs": 77.3, "bogo_ops_s_real_time": 10382.77, "bogo_ops_s_usr_sys_time": 5698.65, "cpu_used_per_instance": 45.55, "rss_max_kb": 2284, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 12, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 15:06:32.888034 2026-07-04 11:58:54.193208 +171 7 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 15:07:24.092634 2026-07-04 15:07:24.092639 +172 7 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:06:32' --until '2026-07-04 15:07:23' 0 OOM records 2026-07-04 15:06:32.667306 2026-07-04 15:07:23.667328 +173 7 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:06:32' --until '2026-07-04 15:07:23' 0 systemd errors records 2026-07-04 15:06:32.667306 2026-07-04 15:07:23.667328 +174 8 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 52.424, "kernel_time": 3.74, "userspace_time": 74.71000000000001, "total_time": 130.875} 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +175 8 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 15:38:54.462516 2026-07-04 15:38:54.462521 +176 8 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:38:50' --until '2026-07-04 15:38:52' 0 OOM records 2026-07-04 15:38:50.690651 2026-07-04 15:38:52.321223 +177 8 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:38:50' --until '2026-07-04 15:38:52' 0 systemd errors records 2026-07-04 15:38:50.690651 2026-07-04 15:38:52.321223 +178 8 loader systemd-analyze critical-chain [{"service_name": "cloud-config.service", "slow_time_s": 7.318}, {"service_name": "cloud-init.service", "slow_time_s": 13.249}, {"service_name": "wicked.service", "slow_time_s": 14.412}, {"service_name": "cloud-init-local.service", "slow_time_s": 15.218}] 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +179 8 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 15:39:05.660771 2026-07-04 15:39:05.660776 +180 8 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:38:56' --until '2026-07-04 15:39:03' 0 OOM records 2026-07-04 15:38:56.803947 2026-07-04 15:39:03.176323 +181 8 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:38:56' --until '2026-07-04 15:39:03' 0 systemd errors records 2026-07-04 15:38:56.803947 2026-07-04 15:39:03.176323 +182 8 loader /usr/bin/iperf3 --time 50 --port 5201 --client 10.5.0.13 --version4 --json {"tool": "iperf3", "test_type": {"protocol": "TCP"}, "time": {"duration_sec": 50.0}, "metrics": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 41794, "remote_host": "10.5.0.13", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux f88e0f09de05 6.17.0-35-generic #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 19:30:42 UTC 2 x86_64", "timestamp": {"time": "Sat, 04 Jul 2026 15:39:12 GMT", "timesecs": 1783179552}, "connecting_to": {"host": "10.5.0.13", "port": 5201}, "cookie": "x35kzofhtnvo3zxjlq4wkvwupds25jgye3nz", "tcp_mss_default": 1448, "target_bitrate": 0, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.000203, "seconds": 1.000203013420105, "bytes": 221249536, "bits_per_second": 1769637027.9346147, "retransmits": 1, "snd_cwnd": 422816, "snd_wnd": 0, "rtt": 284, "rttvar": 211, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.000203, "seconds": 1.000203013420105, "bytes": 221249536, "bits_per_second": 1769637027.9346147, "retransmits": 1, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.000203, "end": 2.001018, "seconds": 1.0008150339126587, "bytes": 206307328, "bits_per_second": 1649114539.7242663, "retransmits": 1, "snd_cwnd": 422816, "snd_wnd": 0, "rtt": 344, "rttvar": 304, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 1.000203, "end": 2.001018, "seconds": 1.0008150339126587, "bytes": 206307328, "bits_per_second": 1649114539.7242663, "retransmits": 1, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.001018, "end": 3.000198, "seconds": 0.999180018901825, "bytes": 228720640, "bits_per_second": 1831266724.0994785, "retransmits": 0, "snd_cwnd": 422816, "snd_wnd": 0, "rtt": 216, "rttvar": 211, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 2.001018, "end": 3.000198, "seconds": 0.999180018901825, "bytes": 228720640, "bits_per_second": 1831266724.0994785, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.000198, "end": 4.000195, "seconds": 0.9999970197677612, "bytes": 215613440, "bits_per_second": 1724912660.64032, "retransmits": 0, "snd_cwnd": 422816, "snd_wnd": 118784, "rtt": 281, "rttvar": 272, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 3.000198, "end": 4.000195, "seconds": 0.9999970197677612, "bytes": 215613440, "bits_per_second": 1724912660.64032, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.000195, "end": 5.000291, "seconds": 1.0000959634780884, "bytes": 215744512, "bits_per_second": 1725790483.1427858, "retransmits": 0, "snd_cwnd": 422816, "snd_wnd": 0, "rtt": 239, "rttvar": 226, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 4.000195, "end": 5.000291, "seconds": 1.0000959634780884, "bytes": 215744512, "bits_per_second": 1725790483.1427858, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.000291, "end": 6.001018, "seconds": 1.00072705745697, "bytes": 224395264, "bits_per_second": 1793857874.2557776, "retransmits": 0, "snd_cwnd": 422816, "snd_wnd": 0, "rtt": 278, "rttvar": 225, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 5.000291, "end": 6.001018, "seconds": 1.00072705745697, "bytes": 224395264, "bits_per_second": 1793857874.2557776, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.001018, "end": 7.000197, "seconds": 0.9991790056228638, "bytes": 225181696, "bits_per_second": 1802933766.484633, "retransmits": 0, "snd_cwnd": 422816, "snd_wnd": 1024, "rtt": 313, "rttvar": 206, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 6.001018, "end": 7.000197, "seconds": 0.9991790056228638, "bytes": 225181696, "bits_per_second": 1802933766.484633, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.000197, "end": 8.000196, "seconds": 0.9999989867210388, "bytes": 214302720, "bits_per_second": 1714423497.18926, "retransmits": 0, "snd_cwnd": 422816, "snd_wnd": 200704, "rtt": 238, "rttvar": 219, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 7.000197, "end": 8.000196, "seconds": 0.9999989867210388, "bytes": 214302720, "bits_per_second": 1714423497.18926, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.000196, "end": 9.000202, "seconds": 1.0000059604644775, "bytes": 221642752, "bits_per_second": 1773131447.3129942, "retransmits": 0, "snd_cwnd": 422816, "snd_wnd": 0, "rtt": 190, "rttvar": 221, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 8.000196, "end": 9.000202, "seconds": 1.0000059604644775, "bytes": 221642752, "bits_per_second": 1773131447.3129942, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.000202, "end": 10.001238, "seconds": 1.0010360479354858, "bytes": 220987392, "bits_per_second": 1766069403.4406407, "retransmits": 0, "snd_cwnd": 422816, "snd_wnd": 70656, "rtt": 298, "rttvar": 282, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 9.000202, "end": 10.001238, "seconds": 1.0010360479354858, "bytes": 220987392, "bits_per_second": 1766069403.4406407, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.001238, "end": 11.001016, "seconds": 0.9997779726982117, "bytes": 225837056, "bits_per_second": 1807097673.0204086, "retransmits": 0, "snd_cwnd": 422816, "snd_wnd": 200704, "rtt": 236, "rttvar": 192, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 10.001238, "end": 11.001016, "seconds": 0.9997779726982117, "bytes": 225837056, "bits_per_second": 1807097673.0204086, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.001016, "end": 12.001017, "seconds": 1.0000009536743164, "bytes": 217055232, "bits_per_second": 1736440200.0015793, "retransmits": 0, "snd_cwnd": 422816, "snd_wnd": 200704, "rtt": 210, "rttvar": 226, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 11.001016, "end": 12.001017, "seconds": 1.0000009536743164, "bytes": 217055232, "bits_per_second": 1736440200.0015793, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.001017, "end": 13.000193, "seconds": 0.999176025390625, "bytes": 224526336, "bits_per_second": 1797691940.514462, "retransmits": 0, "snd_cwnd": 422816, "snd_wnd": 0, "rtt": 274, "rttvar": 295, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 12.001017, "end": 13.000193, "seconds": 0.999176025390625, "bytes": 224526336, "bits_per_second": 1797691940.514462, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.000193, "end": 14.001031, "seconds": 1.000838041305542, "bytes": 225181696, "bits_per_second": 1799945139.6252844, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 1024, "rtt": 269, "rttvar": 207, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 13.000193, "end": 14.001031, "seconds": 1.000838041305542, "bytes": 225181696, "bits_per_second": 1799945139.6252844, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.001031, "end": 15.00103, "seconds": 0.9999989867210388, "bytes": 228589568, "bits_per_second": 1828718397.0018775, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 251904, "rtt": 267, "rttvar": 215, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 14.001031, "end": 15.00103, "seconds": 0.9999989867210388, "bytes": 228589568, "bits_per_second": 1828718397.0018775, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.00103, "end": 16.00103, "seconds": 1, "bytes": 217579520, "bits_per_second": 1740636160, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 1024, "rtt": 315, "rttvar": 254, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 15.00103, "end": 16.00103, "seconds": 1, "bytes": 217579520, "bits_per_second": 1740636160, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.00103, "end": 17.001017, "seconds": 0.999987006187439, "bytes": 222822400, "bits_per_second": 1782602362.8009732, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 268, "rttvar": 213, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 16.00103, "end": 17.001017, "seconds": 0.999987006187439, "bytes": 222822400, "bits_per_second": 1782602362.8009732, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.001017, "end": 18.000193, "seconds": 0.999176025390625, "bytes": 229900288, "bits_per_second": 1840719009.727009, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 129024, "rtt": 211, "rttvar": 162, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 17.001017, "end": 18.000193, "seconds": 0.999176025390625, "bytes": 229900288, "bits_per_second": 1840719009.727009, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.000193, "end": 19.000207, "seconds": 1.0000139474868774, "bytes": 207486976, "bits_per_second": 1659872656.947899, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 234, "rttvar": 134, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 18.000193, "end": 19.000207, "seconds": 1.0000139474868774, "bytes": 207486976, "bits_per_second": 1659872656.947899, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.000207, "end": 20.001031, "seconds": 1.000823974609375, "bytes": 212074496, "bits_per_second": 1695199166.9286172, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 268, "rttvar": 216, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 19.000207, "end": 20.001031, "seconds": 1.000823974609375, "bytes": 212074496, "bits_per_second": 1695199166.9286172, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.001031, "end": 21.00103, "seconds": 0.9999989867210388, "bytes": 230031360, "bits_per_second": 1840252744.6893895, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 320, "rttvar": 219, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 20.001031, "end": 21.00103, "seconds": 0.9999989867210388, "bytes": 230031360, "bits_per_second": 1840252744.6893895, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.00103, "end": 22.001031, "seconds": 1.0000009536743164, "bytes": 224264192, "bits_per_second": 1794111825.0016317, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 72704, "rtt": 228, "rttvar": 168, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 21.00103, "end": 22.001031, "seconds": 1.0000009536743164, "bytes": 224264192, "bits_per_second": 1794111825.0016317, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.001031, "end": 23.001033, "seconds": 1.0000020265579224, "bytes": 229769216, "bits_per_second": 1838150002.882549, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 1024, "rtt": 299, "rttvar": 232, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 22.001031, "end": 23.001033, "seconds": 1.0000020265579224, "bytes": 229769216, "bits_per_second": 1838150002.882549, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.001033, "end": 24.000454, "seconds": 0.999421000480652, "bytes": 220987392, "bits_per_second": 1768923341.7646453, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 269, "rttvar": 222, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 23.001033, "end": 24.000454, "seconds": 0.999421000480652, "bytes": 220987392, "bits_per_second": 1768923341.7646453, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.000454, "end": 25.000195, "seconds": 0.999741017818451, "bytes": 227934208, "bits_per_second": 1823946033.5227895, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 1024, "rtt": 316, "rttvar": 287, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 24.000454, "end": 25.000195, "seconds": 0.999741017818451, "bytes": 227934208, "bits_per_second": 1823946033.5227895, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.000195, "end": 26.000386, "seconds": 1.0001909732818604, "bytes": 216006656, "bits_per_second": 1727723299.0114412, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 251904, "rtt": 266, "rttvar": 236, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 25.000195, "end": 26.000386, "seconds": 1.0001909732818604, "bytes": 216006656, "bits_per_second": 1727723299.0114412, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.000386, "end": 27.001017, "seconds": 1.0006309747695923, "bytes": 223346688, "bits_per_second": 1785646805.9180627, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 72704, "rtt": 241, "rttvar": 175, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 26.000386, "end": 27.001017, "seconds": 1.0006309747695923, "bytes": 223346688, "bits_per_second": 1785646805.9180627, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.001017, "end": 28.000197, "seconds": 0.999180018901825, "bytes": 228720640, "bits_per_second": 1831266724.0994785, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 270, "rttvar": 262, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 27.001017, "end": 28.000197, "seconds": 0.999180018901825, "bytes": 228720640, "bits_per_second": 1831266724.0994785, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.000197, "end": 29.000211, "seconds": 1.0000139474868774, "bytes": 221511680, "bits_per_second": 1772068724.0947247, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 282, "rttvar": 239, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 28.000197, "end": 29.000211, "seconds": 1.0000139474868774, "bytes": 221511680, "bits_per_second": 1772068724.0947247, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.000211, "end": 30.00103, "seconds": 1.0008189678192139, "bytes": 226099200, "bits_per_second": 1807313468.430124, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 65536, "rtt": 241, "rttvar": 218, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 29.000211, "end": 30.00103, "seconds": 1.0008189678192139, "bytes": 226099200, "bits_per_second": 1807313468.430124, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.00103, "end": 31.000202, "seconds": 0.9991719722747803, "bytes": 219021312, "bits_per_second": 1753622544.0860736, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 73728, "rtt": 246, "rttvar": 255, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 30.00103, "end": 31.000202, "seconds": 0.9991719722747803, "bytes": 219021312, "bits_per_second": 1753622544.0860736, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.000202, "end": 32.001019, "seconds": 1.0008169412612915, "bytes": 221642752, "bits_per_second": 1771694645.541648, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 288, "rttvar": 253, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 31.000202, "end": 32.001019, "seconds": 1.0008169412612915, "bytes": 221642752, "bits_per_second": 1771694645.541648, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.001019, "end": 33.001018, "seconds": 0.9999989867210388, "bytes": 231342080, "bits_per_second": 1850738515.3144, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 308, "rttvar": 265, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 32.001019, "end": 33.001018, "seconds": 0.9999989867210388, "bytes": 231342080, "bits_per_second": 1850738515.3144, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.001018, "end": 34.000246, "seconds": 0.999228000640869, "bytes": 222822400, "bits_per_second": 1783956413.2077138, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 256, "rttvar": 224, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 33.001018, "end": 34.000246, "seconds": 0.999228000640869, "bytes": 222822400, "bits_per_second": 1783956413.2077138, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.000246, "end": 35.0002, "seconds": 0.9999539852142334, "bytes": 226230272, "bits_per_second": 1809925459.3322647, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 72704, "rtt": 216, "rttvar": 281, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 34.000246, "end": 35.0002, "seconds": 0.9999539852142334, "bytes": 226230272, "bits_per_second": 1809925459.3322647, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.0002, "end": 36.000212, "seconds": 1.0000120401382446, "bytes": 230555648, "bits_per_second": 1844422976.8923767, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 290, "rttvar": 236, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 35.0002, "end": 36.000212, "seconds": 1.0000120401382446, "bytes": 230555648, "bits_per_second": 1844422976.8923767, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.000212, "end": 37.0004, "seconds": 1.0001879930496216, "bytes": 210894848, "bits_per_second": 1686841669.4903238, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 251904, "rtt": 243, "rttvar": 174, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 36.000212, "end": 37.0004, "seconds": 1.0001879930496216, "bytes": 210894848, "bits_per_second": 1686841669.4903238, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.0004, "end": 38.001025, "seconds": 1.0006250143051147, "bytes": 212729856, "bits_per_second": 1700775838.7709746, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 252, "rttvar": 245, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 37.0004, "end": 38.001025, "seconds": 1.0006250143051147, "bytes": 212729856, "bits_per_second": 1700775838.7709746, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.001025, "end": 39.000197, "seconds": 0.9991719722747803, "bytes": 221511680, "bits_per_second": 1773561998.50716, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 1024, "rtt": 297, "rttvar": 224, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 38.001025, "end": 39.000197, "seconds": 0.9991719722747803, "bytes": 221511680, "bits_per_second": 1773561998.50716, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.000197, "end": 40.000211, "seconds": 1.0000139474868774, "bytes": 229244928, "bits_per_second": 1833933845.2317595, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 251904, "rtt": 273, "rttvar": 273, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 39.000197, "end": 40.000211, "seconds": 1.0000139474868774, "bytes": 229244928, "bits_per_second": 1833933845.2317595, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.000211, "end": 41.000191, "seconds": 0.9999799728393555, "bytes": 230293504, "bits_per_second": 1842384929.738957, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 72704, "rtt": 225, "rttvar": 165, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 40.000211, "end": 41.000191, "seconds": 0.9999799728393555, "bytes": 230293504, "bits_per_second": 1842384929.738957, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.000191, "end": 42.001032, "seconds": 1.0008410215377808, "bytes": 221642752, "bits_per_second": 1771652018.494993, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 299, "rttvar": 171, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 41.000191, "end": 42.001032, "seconds": 1.0008410215377808, "bytes": 221642752, "bits_per_second": 1771652018.494993, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.001032, "end": 43.00103, "seconds": 0.9999979734420776, "bytes": 216662016, "bits_per_second": 1733299640.6321185, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 269, "rttvar": 231, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 42.001032, "end": 43.00103, "seconds": 0.9999979734420776, "bytes": 216662016, "bits_per_second": 1733299640.6321185, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.00103, "end": 44.001031, "seconds": 1.0000009536743164, "bytes": 224788480, "bits_per_second": 1798306125.0016356, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 305, "rttvar": 308, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 43.00103, "end": 44.001031, "seconds": 1.0000009536743164, "bytes": 224788480, "bits_per_second": 1798306125.0016356, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.001031, "end": 45.001035, "seconds": 1.0000040531158447, "bytes": 225574912, "bits_per_second": 1804591981.7796454, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 73728, "rtt": 251, "rttvar": 221, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 44.001031, "end": 45.001035, "seconds": 1.0000040531158447, "bytes": 225574912, "bits_per_second": 1804591981.7796454, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 45.001035, "end": 46.001018, "seconds": 0.999983012676239, "bytes": 227147776, "bits_per_second": 1817213077.5868917, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 266, "rttvar": 173, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 45.001035, "end": 46.001018, "seconds": 0.999983012676239, "bytes": 227147776, "bits_per_second": 1817213077.5868917, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 46.001018, "end": 47.001031, "seconds": 1.000012993812561, "bytes": 227016704, "bits_per_second": 1816110033.8066306, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 261, "rttvar": 190, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 46.001018, "end": 47.001031, "seconds": 1.000012993812561, "bytes": 227016704, "bits_per_second": 1816110033.8066306, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 47.001031, "end": 48.000206, "seconds": 0.9991750121116638, "bytes": 228851712, "bits_per_second": 1832325342.2148187, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 1024, "rtt": 327, "rttvar": 293, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 47.001031, "end": 48.000206, "seconds": 0.9991750121116638, "bytes": 228851712, "bits_per_second": 1832325342.2148187, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 48.000206, "end": 49.000193, "seconds": 0.999987006187439, "bytes": 207749120, "bits_per_second": 1662014555.9056132, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 0, "rtt": 357, "rttvar": 271, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 48.000206, "end": 49.000193, "seconds": 0.999987006187439, "bytes": 207749120, "bits_per_second": 1662014555.9056132, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 49.000193, "end": 50.008226, "seconds": 1.008033037185669, "bytes": 226623488, "bits_per_second": 1798540163.982807, "retransmits": 0, "snd_cwnd": 674768, "snd_wnd": 73728, "rtt": 240, "rttvar": 236, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 49.000193, "end": 50.008226, "seconds": 1.008033037185669, "bytes": 226623488, "bits_per_second": 1798540163.982807, "retransmits": 0, "omitted": false, "sender": true}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 50.008226, "seconds": 50.008226, "bytes": 11118444544, "bits_per_second": 1778658502.1432273, "retransmits": 2, "max_snd_cwnd": 674768, "max_snd_wnd": 251904, "max_rtt": 357, "min_rtt": 190, "mean_rtt": 268, "sender": true}, "receiver": {"socket": 5, "start": 0, "end": 50.008908, "seconds": 50.008226, "bytes": 11116347392, "bits_per_second": 1778298761.012738, "sender": true}}], "sum_sent": {"start": 0, "end": 50.008226, "seconds": 50.008226, "bytes": 11118444544, "bits_per_second": 1778658502.1432273, "retransmits": 2, "sender": true}, "sum_received": {"start": 0, "end": 50.008908, "seconds": 50.008908, "bytes": 11116347392, "bits_per_second": 1778298761.012738, "sender": true}, "cpu_utilization_percent": {"host_total": 3.556835243381404, "host_user": 0.0521931527196552, "host_system": 3.5046520839896034, "remote_total": 80.42777548620694, "remote_user": 1.8366320355523817, "remote_system": 78.5908795000872}, "sender_tcp_congestion": "cubic", "receiver_tcp_congestion": "cubic"}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 41794}], "version": "iperf 3.19.1", "system_info": "Linux localhost 6.4.0-150600.23.118-default #1 SMP PREEMPT_DYNAMIC Wed Jun 17 15:20:04 UTC 2026 (353f7fd) x86_64", "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "timestamp": {"time": "Sat, 04 Jul 2026 13:34:37 GMT", "timesecs": 1783172077}, "accepted_connection": {"host": "10.5.0.11", "port": 41778}, "cookie": "x35kzofhtnvo3zxjlq4wkvwupds25jgye3nz", "tcp_mss_default": 0, "target_bitrate": 0, "fq_rate": 0, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001819, "seconds": 1.0018190145492554, "bytes": 219152384, "bits_per_second": 1750035731.5426073, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.001819, "seconds": 1.0018190145492554, "bytes": 219152384, "bits_per_second": 1750035731.5426073, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.001819, "end": 2.001552, "seconds": 0.9997329711914062, "bytes": 206045184, "bits_per_second": 1648801749.5667942, "omitted": false, "sender": false}], "sum": {"start": 1.001819, "end": 2.001552, "seconds": 0.9997329711914062, "bytes": 206045184, "bits_per_second": 1648801749.5667942, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.001552, "end": 3.001418, "seconds": 0.999866008758545, "bytes": 228851712, "bits_per_second": 1831059041.8741982, "omitted": false, "sender": false}], "sum": {"start": 2.001552, "end": 3.001418, "seconds": 0.999866008758545, "bytes": 228851712, "bits_per_second": 1831059041.8741982, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.001418, "end": 4.001564, "seconds": 1.0001460313797, "bytes": 215089152, "bits_per_second": 1720461974.5641334, "omitted": false, "sender": false}], "sum": {"start": 3.001418, "end": 4.001564, "seconds": 1.0001460313797, "bytes": 215089152, "bits_per_second": 1720461974.5641334, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.001564, "end": 5.001442, "seconds": 0.9998779892921448, "bytes": 216399872, "bits_per_second": 1731410226.5873337, "omitted": false, "sender": false}], "sum": {"start": 4.001564, "end": 5.001442, "seconds": 0.9998779892921448, "bytes": 216399872, "bits_per_second": 1731410226.5873337, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.001442, "end": 6.00144, "seconds": 0.9999979734420776, "bytes": 224133120, "bits_per_second": 1793068593.757364, "omitted": false, "sender": false}], "sum": {"start": 5.001442, "end": 6.00144, "seconds": 0.9999979734420776, "bytes": 224133120, "bits_per_second": 1793068593.757364, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.00144, "end": 7.001439, "seconds": 0.9999989867210388, "bytes": 224657408, "bits_per_second": 1797261085.1268454, "omitted": false, "sender": false}], "sum": {"start": 6.00144, "end": 7.001439, "seconds": 0.9999989867210388, "bytes": 224657408, "bits_per_second": 1797261085.1268454, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.001439, "end": 8.001431, "seconds": 0.9999920129776, "bytes": 214827008, "bits_per_second": 1718629790.7346358, "omitted": false, "sender": false}], "sum": {"start": 7.001439, "end": 8.001431, "seconds": 0.9999920129776, "bytes": 214827008, "bits_per_second": 1718629790.7346358, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.001431, "end": 9.001376, "seconds": 0.9999449849128723, "bytes": 220856320, "bits_per_second": 1766947768.78545, "omitted": false, "sender": false}], "sum": {"start": 8.001431, "end": 9.001376, "seconds": 0.9999449849128723, "bytes": 220856320, "bits_per_second": 1766947768.78545, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.001376, "end": 10.001429, "seconds": 1.00005304813385, "bytes": 221773824, "bits_per_second": 1774096479.492493, "omitted": false, "sender": false}], "sum": {"start": 9.001376, "end": 10.001429, "seconds": 1.00005304813385, "bytes": 221773824, "bits_per_second": 1774096479.492493, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.001429, "end": 11.001446, "seconds": 1.0000170469284058, "bytes": 225443840, "bits_per_second": 1803519975.5240989, "omitted": false, "sender": false}], "sum": {"start": 10.001429, "end": 11.001446, "seconds": 1.0000170469284058, "bytes": 225443840, "bits_per_second": 1803519975.5240989, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.001446, "end": 12.001482, "seconds": 1.0000360012054443, "bytes": 216924160, "bits_per_second": 1735330805.9991393, "omitted": false, "sender": false}], "sum": {"start": 11.001446, "end": 12.001482, "seconds": 1.0000360012054443, "bytes": 216924160, "bits_per_second": 1735330805.9991393, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.001482, "end": 13.001262, "seconds": 0.999779999256134, "bytes": 224526336, "bits_per_second": 1796605942.6438158, "omitted": false, "sender": false}], "sum": {"start": 12.001482, "end": 13.001262, "seconds": 0.999779999256134, "bytes": 224526336, "bits_per_second": 1796605942.6438158, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.001262, "end": 14.001531, "seconds": 1.0002690553665161, "bytes": 222429184, "bits_per_second": 1778954834.6549463, "omitted": false, "sender": false}], "sum": {"start": 13.001262, "end": 14.001531, "seconds": 1.0002690553665161, "bytes": 222429184, "bits_per_second": 1778954834.6549463, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.001531, "end": 15.001437, "seconds": 0.9999060034751892, "bytes": 229507072, "bits_per_second": 1836229175.1612213, "omitted": false, "sender": false}], "sum": {"start": 14.001531, "end": 15.001437, "seconds": 0.9999060034751892, "bytes": 229507072, "bits_per_second": 1836229175.1612213, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.001437, "end": 16.001449, "seconds": 1.0000120401382446, "bytes": 217972736, "bits_per_second": 1743760892.8777843, "omitted": false, "sender": false}], "sum": {"start": 15.001437, "end": 16.001449, "seconds": 1.0000120401382446, "bytes": 217972736, "bits_per_second": 1743760892.8777843, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.001449, "end": 17.0015, "seconds": 1.0000510215759277, "bytes": 221773824, "bits_per_second": 1774100074.6183395, "omitted": false, "sender": false}], "sum": {"start": 16.001449, "end": 17.0015, "seconds": 1.0000510215759277, "bytes": 221773824, "bits_per_second": 1774100074.6183395, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.0015, "end": 18.001462, "seconds": 0.9999619722366333, "bytes": 228589568, "bits_per_second": 1828786088.6446273, "omitted": false, "sender": false}], "sum": {"start": 17.0015, "end": 18.001462, "seconds": 0.9999619722366333, "bytes": 228589568, "bits_per_second": 1828786088.6446273, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.001462, "end": 19.001236, "seconds": 0.9997739791870117, "bytes": 207486976, "bits_per_second": 1660271063.8156245, "omitted": false, "sender": false}], "sum": {"start": 18.001462, "end": 19.001236, "seconds": 0.9997739791870117, "bytes": 207486976, "bits_per_second": 1660271063.8156245, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.001236, "end": 20.001449, "seconds": 1.0002130270004272, "bytes": 211812352, "bits_per_second": 1694137918.8808308, "omitted": false, "sender": false}], "sum": {"start": 19.001236, "end": 20.001449, "seconds": 1.0002130270004272, "bytes": 211812352, "bits_per_second": 1694137918.8808308, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.001449, "end": 21.001414, "seconds": 0.999965012073517, "bytes": 230948864, "bits_per_second": 1847655557.6368167, "omitted": false, "sender": false}], "sum": {"start": 20.001449, "end": 21.001414, "seconds": 0.999965012073517, "bytes": 230948864, "bits_per_second": 1847655557.6368167, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.001414, "end": 22.001444, "seconds": 1.0000300407409668, "bytes": 223477760, "bits_per_second": 1787768374.1133647, "omitted": false, "sender": false}], "sum": {"start": 21.001414, "end": 22.001444, "seconds": 1.0000300407409668, "bytes": 223477760, "bits_per_second": 1787768374.1133647, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.001444, "end": 23.001407, "seconds": 0.9999629855155945, "bytes": 230817792, "bits_per_second": 1846610687.34249, "omitted": false, "sender": false}], "sum": {"start": 22.001444, "end": 23.001407, "seconds": 0.9999629855155945, "bytes": 230817792, "bits_per_second": 1846610687.34249, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.001407, "end": 24.001458, "seconds": 1.0000510215759277, "bytes": 221511680, "bits_per_second": 1772003029.6128805, "omitted": false, "sender": false}], "sum": {"start": 23.001407, "end": 24.001458, "seconds": 1.0000510215759277, "bytes": 221511680, "bits_per_second": 1772003029.6128805, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.001458, "end": 25.001226, "seconds": 0.9997680187225342, "bytes": 227540992, "bits_per_second": 1820750315.9842484, "omitted": false, "sender": false}], "sum": {"start": 24.001458, "end": 25.001226, "seconds": 0.9997680187225342, "bytes": 227540992, "bits_per_second": 1820750315.9842484, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.001226, "end": 26.001431, "seconds": 1.0002050399780273, "bytes": 215089152, "bits_per_second": 1720360473.32635, "omitted": false, "sender": false}], "sum": {"start": 25.001226, "end": 26.001431, "seconds": 1.0002050399780273, "bytes": 215089152, "bits_per_second": 1720360473.32635, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.001431, "end": 27.001453, "seconds": 1.000022053718567, "bytes": 223215616, "bits_per_second": 1785685546.9934976, "omitted": false, "sender": false}], "sum": {"start": 26.001431, "end": 27.001453, "seconds": 1.000022053718567, "bytes": 223215616, "bits_per_second": 1785685546.9934976, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.001453, "end": 28.001428, "seconds": 0.999975025653839, "bytes": 228065280, "bits_per_second": 1824567807.3880157, "omitted": false, "sender": false}], "sum": {"start": 27.001453, "end": 28.001428, "seconds": 0.999975025653839, "bytes": 228065280, "bits_per_second": 1824567807.3880157, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.001428, "end": 29.001428, "seconds": 1, "bytes": 221904896, "bits_per_second": 1775239168, "omitted": false, "sender": false}], "sum": {"start": 28.001428, "end": 29.001428, "seconds": 1, "bytes": 221904896, "bits_per_second": 1775239168, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.001428, "end": 30.001398, "seconds": 0.999970018863678, "bytes": 224919552, "bits_per_second": 1799410364.3674333, "omitted": false, "sender": false}], "sum": {"start": 29.001428, "end": 30.001398, "seconds": 0.999970018863678, "bytes": 224919552, "bits_per_second": 1799410364.3674333, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.001398, "end": 31.001291, "seconds": 0.9998930096626282, "bytes": 220332032, "bits_per_second": 1762844863.3666658, "omitted": false, "sender": false}], "sum": {"start": 30.001398, "end": 31.001291, "seconds": 0.9998930096626282, "bytes": 220332032, "bits_per_second": 1762844863.3666658, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.001291, "end": 32.001291, "seconds": 1, "bytes": 220069888, "bits_per_second": 1760559104, "omitted": false, "sender": false}], "sum": {"start": 31.001291, "end": 32.001291, "seconds": 1, "bytes": 220069888, "bits_per_second": 1760559104, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.001291, "end": 33.001218, "seconds": 0.99992698431015, "bytes": 228065280, "bits_per_second": 1824655468.4777691, "omitted": false, "sender": false}], "sum": {"start": 32.001291, "end": 33.001218, "seconds": 0.99992698431015, "bytes": 228065280, "bits_per_second": 1824655468.4777691, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.001218, "end": 34.001529, "seconds": 1.000311017036438, "bytes": 223739904, "bits_per_second": 1789362709.7129126, "omitted": false, "sender": false}], "sum": {"start": 33.001218, "end": 34.001529, "seconds": 1.000311017036438, "bytes": 223739904, "bits_per_second": 1789362709.7129126, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.001529, "end": 35.001502, "seconds": 0.9999729990959167, "bytes": 225312768, "bits_per_second": 1802550814.5016475, "omitted": false, "sender": false}], "sum": {"start": 34.001529, "end": 35.001502, "seconds": 0.9999729990959167, "bytes": 225312768, "bits_per_second": 1802550814.5016475, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.001502, "end": 36.00124, "seconds": 0.9997379779815674, "bytes": 229638144, "bits_per_second": 1837586640.1604996, "omitted": false, "sender": false}], "sum": {"start": 35.001502, "end": 36.00124, "seconds": 0.9997379779815674, "bytes": 229638144, "bits_per_second": 1837586640.1604996, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.00124, "end": 37.001201, "seconds": 0.999961018562317, "bytes": 210763776, "bits_per_second": 1686175937.5622327, "omitted": false, "sender": false}], "sum": {"start": 36.00124, "end": 37.001201, "seconds": 0.999961018562317, "bytes": 210763776, "bits_per_second": 1686175937.5622327, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.001201, "end": 38.001451, "seconds": 1.000249981880188, "bytes": 211550208, "bits_per_second": 1691978699.98334, "omitted": false, "sender": false}], "sum": {"start": 37.001201, "end": 38.001451, "seconds": 1.000249981880188, "bytes": 211550208, "bits_per_second": 1691978699.98334, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.001451, "end": 39.001461, "seconds": 1.0000100135803223, "bytes": 221511680, "bits_per_second": 1772075695.1776893, "omitted": false, "sender": false}], "sum": {"start": 38.001451, "end": 39.001461, "seconds": 1.0000100135803223, "bytes": 221511680, "bits_per_second": 1772075695.1776893, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.001461, "end": 40.001376, "seconds": 0.9999150037765503, "bytes": 230162432, "bits_per_second": 1841455972.803337, "omitted": false, "sender": false}], "sum": {"start": 39.001461, "end": 40.001376, "seconds": 0.9999150037765503, "bytes": 230162432, "bits_per_second": 1841455972.803337, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.001376, "end": 41.001393, "seconds": 1.0000170469284058, "bytes": 229769216, "bits_per_second": 1838122393.6591542, "omitted": false, "sender": false}], "sum": {"start": 40.001376, "end": 41.001393, "seconds": 1.0000170469284058, "bytes": 229769216, "bits_per_second": 1838122393.6591542, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.001393, "end": 42.001511, "seconds": 1.0001180171966553, "bytes": 220856320, "bits_per_second": 1766642065.8558943, "omitted": false, "sender": false}], "sum": {"start": 41.001393, "end": 42.001511, "seconds": 1.0001180171966553, "bytes": 220856320, "bits_per_second": 1766642065.8558943, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.001511, "end": 43.001507, "seconds": 0.9999960064888, "bytes": 216399872, "bits_per_second": 1731205889.5901096, "omitted": false, "sender": false}], "sum": {"start": 42.001511, "end": 43.001507, "seconds": 0.9999960064888, "bytes": 216399872, "bits_per_second": 1731205889.5901096, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.001507, "end": 44.001392, "seconds": 0.9998850226402283, "bytes": 225050624, "bits_per_second": 1800612021.6162186, "omitted": false, "sender": false}], "sum": {"start": 43.001507, "end": 44.001392, "seconds": 0.9998850226402283, "bytes": 225050624, "bits_per_second": 1800612021.6162186, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.001392, "end": 45.001382, "seconds": 0.9999899864196777, "bytes": 225968128, "bits_per_second": 1807763126.1812677, "omitted": false, "sender": false}], "sum": {"start": 44.001392, "end": 45.001382, "seconds": 0.9999899864196777, "bytes": 225968128, "bits_per_second": 1807763126.1812677, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.001382, "end": 46.001389, "seconds": 1.0000070333480835, "bytes": 226885632, "bits_per_second": 1815072289.964788, "omitted": false, "sender": false}], "sum": {"start": 45.001382, "end": 46.001389, "seconds": 1.0000070333480835, "bytes": 226885632, "bits_per_second": 1815072289.964788, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 46.001389, "end": 47.001517, "seconds": 1.0001280307769775, "bytes": 225968128, "bits_per_second": 1807513606.6285458, "omitted": false, "sender": false}], "sum": {"start": 46.001389, "end": 47.001517, "seconds": 1.0001280307769775, "bytes": 225968128, "bits_per_second": 1807513606.6285458, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 47.001517, "end": 48.001284, "seconds": 0.999767005443573, "bytes": 228720640, "bits_per_second": 1830191544.6671262, "omitted": false, "sender": false}], "sum": {"start": 47.001517, "end": 48.001284, "seconds": 0.999767005443573, "bytes": 228720640, "bits_per_second": 1830191544.6671262, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 48.001284, "end": 49.001225, "seconds": 0.9999409914016724, "bytes": 208535552, "bits_per_second": 1668382864.9343336, "omitted": false, "sender": false}], "sum": {"start": 48.001284, "end": 49.001225, "seconds": 0.9999409914016724, "bytes": 208535552, "bits_per_second": 1668382864.9343336, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 49.001225, "end": 50.001412, "seconds": 1.0001870393753052, "bytes": 225705984, "bits_per_second": 1805310207.906481, "omitted": false, "sender": false}], "sum": {"start": 49.001225, "end": 50.001412, "seconds": 1.0001870393753052, "bytes": 225705984, "bits_per_second": 1805310207.906481, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 50.001412, "end": 50.008908, "seconds": 0.007495999801903963, "bytes": 1572864, "bits_per_second": 1678616906.6872141, "omitted": false, "sender": false}], "sum": {"start": 50.001412, "end": 50.008908, "seconds": 0.007495999801903963, "bytes": 1572864, "bits_per_second": 1678616906.6872141, "omitted": false, "sender": false}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 50.008908, "seconds": 50.008908, "bytes": 0, "bits_per_second": 0, "sender": false}, "receiver": {"socket": 5, "start": 0, "end": 50.008908, "seconds": 50.008908, "bytes": 11116347392, "bits_per_second": 1778298761.012738, "sender": false}}], "sum_sent": {"start": 0, "end": 50.008908, "seconds": 50.008908, "bytes": 0, "bits_per_second": 0, "sender": false}, "sum_received": {"start": 0, "end": 50.008908, "seconds": 50.008908, "bytes": 11116347392, "bits_per_second": 1778298761.012738, "sender": false}, "cpu_utilization_percent": {"host_total": 80.42777548620694, "host_user": 1.8366320355523817, "host_system": 78.5908795000872, "remote_total": 0, "remote_user": 0, "remote_system": 0}, "receiver_tcp_congestion": "cubic"}}}} 2026-07-04 15:39:09.255103 2026-07-04 11:58:54.193208 +183 8 loader /usr/bin/iperf3 --time 50 --port 5201 --client 10.5.0.13 --udp --version4 --json {"tool": "iperf3", "test_type": {"protocol": "UDP"}, "time": {"duration_sec": 50.0}, "metrics": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 55248, "remote_host": "10.5.0.13", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux f88e0f09de05 6.17.0-35-generic #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 19:30:42 UTC 2 x86_64", "timestamp": {"time": "Sat, 04 Jul 2026 15:40:05 GMT", "timesecs": 1783179605}, "connecting_to": {"host": "10.5.0.13", "port": 5201}, "cookie": "thmpprjsxf46lebdqk6fpghovt4ama5kjcwr", "target_bitrate": 1048576, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 212992, "rcvbuf_actual": 212992, "test_start": {"protocol": "UDP", "num_streams": 1, "blksize": 1448, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 1048576, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.000791, "seconds": 1.0007909536361694, "bytes": 131768, "bits_per_second": 1053310.879929503, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.000791, "seconds": 1.0007909536361694, "bytes": 131768, "bits_per_second": 1053310.879929503, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.000791, "end": 2.000816, "seconds": 1.0000250339508057, "bytes": 131768, "bits_per_second": 1054117.611271576, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 1.000791, "end": 2.000816, "seconds": 1.0000250339508057, "bytes": 131768, "bits_per_second": 1054117.611271576, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.000816, "end": 3.000793, "seconds": 0.9999769926071167, "bytes": 130320, "bits_per_second": 1042583.9871394059, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 2.000816, "end": 3.000793, "seconds": 0.9999769926071167, "bytes": 130320, "bits_per_second": 1042583.9871394059, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.000793, "end": 4.000799, "seconds": 1.0000059604644775, "bytes": 131768, "bits_per_second": 1054137.7168495844, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 3.000793, "end": 4.000799, "seconds": 1.0000059604644775, "bytes": 131768, "bits_per_second": 1054137.7168495844, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.000799, "end": 5.00149, "seconds": 1.0006910562515259, "bytes": 130320, "bits_per_second": 1041840.0299342241, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 4.000799, "end": 5.00149, "seconds": 1.0006910562515259, "bytes": 130320, "bits_per_second": 1041840.0299342241, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.00149, "end": 6.001044, "seconds": 0.9995539784431458, "bytes": 131768, "bits_per_second": 1054614.380747982, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 5.00149, "end": 6.001044, "seconds": 0.9995539784431458, "bytes": 131768, "bits_per_second": 1054614.380747982, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.001044, "end": 7.001018, "seconds": 0.999974012374878, "bytes": 130320, "bits_per_second": 1042587.0943625654, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 6.001044, "end": 7.001018, "seconds": 0.999974012374878, "bytes": 130320, "bits_per_second": 1042587.0943625654, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.001018, "end": 8.001029, "seconds": 1.0000109672546387, "bytes": 131768, "bits_per_second": 1054132.4390611178, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 7.001018, "end": 8.001029, "seconds": 1.0000109672546387, "bytes": 131768, "bits_per_second": 1054132.4390611178, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.001029, "end": 9.000783, "seconds": 0.999754011631012, "bytes": 130320, "bits_per_second": 1042816.5207350894, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 8.001029, "end": 9.000783, "seconds": 0.999754011631012, "bytes": 130320, "bits_per_second": 1042816.5207350894, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.000783, "end": 10.000777, "seconds": 0.9999939799308777, "bytes": 131768, "bits_per_second": 1054150.3460579487, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 9.000783, "end": 10.000777, "seconds": 0.9999939799308777, "bytes": 131768, "bits_per_second": 1054150.3460579487, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.000777, "end": 11.001045, "seconds": 1.00026798248291, "bytes": 130320, "bits_per_second": 1042280.6870335995, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 10.000777, "end": 11.001045, "seconds": 1.00026798248291, "bytes": 130320, "bits_per_second": 1042280.6870335995, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.001045, "end": 12.001046, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 11.001045, "end": 12.001046, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.001046, "end": 13.000782, "seconds": 0.9997360110282898, "bytes": 130320, "bits_per_second": 1042835.2970177229, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 12.001046, "end": 13.000782, "seconds": 0.9997360110282898, "bytes": 130320, "bits_per_second": 1042835.2970177229, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.000782, "end": 14.00104, "seconds": 1.000257968902588, "bytes": 131768, "bits_per_second": 1053872.1337621855, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 13.000782, "end": 14.00104, "seconds": 1.000257968902588, "bytes": 131768, "bits_per_second": 1053872.1337621855, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.00104, "end": 15.00084, "seconds": 0.9998000264167786, "bytes": 130320, "bits_per_second": 1042768.5261586464, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 14.00104, "end": 15.00084, "seconds": 0.9998000264167786, "bytes": 130320, "bits_per_second": 1042768.5261586464, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.00084, "end": 16.001047, "seconds": 1.00020694732666, "bytes": 131768, "bits_per_second": 1053925.892853976, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 15.00084, "end": 16.001047, "seconds": 1.00020694732666, "bytes": 131768, "bits_per_second": 1053925.892853976, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.001047, "end": 17.000783, "seconds": 0.9997360110282898, "bytes": 130320, "bits_per_second": 1042835.2970177229, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 16.001047, "end": 17.000783, "seconds": 0.9997360110282898, "bytes": 130320, "bits_per_second": 1042835.2970177229, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.000783, "end": 18.000789, "seconds": 1.0000059604644775, "bytes": 131768, "bits_per_second": 1054137.7168495844, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 17.000783, "end": 18.000789, "seconds": 1.0000059604644775, "bytes": 131768, "bits_per_second": 1054137.7168495844, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.000789, "end": 19.001048, "seconds": 1.0002590417861938, "bytes": 130320, "bits_per_second": 1042290.0033358039, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 18.000789, "end": 19.001048, "seconds": 1.0002590417861938, "bytes": 130320, "bits_per_second": 1042290.0033358039, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.001048, "end": 20.001045, "seconds": 0.9999970197677612, "bytes": 131768, "bits_per_second": 1054147.141603296, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 19.001048, "end": 20.001045, "seconds": 0.9999970197677612, "bytes": 131768, "bits_per_second": 1054147.141603296, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.001045, "end": 21.001048, "seconds": 1.0000029802322388, "bytes": 130320, "bits_per_second": 1042556.8929383369, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 20.001045, "end": 21.001048, "seconds": 1.0000029802322388, "bytes": 130320, "bits_per_second": 1042556.8929383369, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.001048, "end": 22.000811, "seconds": 0.999763011932373, "bytes": 131768, "bits_per_second": 1054393.8787678469, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 21.001048, "end": 22.000811, "seconds": 0.999763011932373, "bytes": 131768, "bits_per_second": 1054393.8787678469, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.000811, "end": 23.000772, "seconds": 0.999961018562317, "bytes": 131768, "bits_per_second": 1054185.0936505345, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 22.000811, "end": 23.000772, "seconds": 0.999961018562317, "bytes": 131768, "bits_per_second": 1054185.0936505345, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.000772, "end": 24.001053, "seconds": 1.0002809762954712, "bytes": 130320, "bits_per_second": 1042267.1476379654, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 23.000772, "end": 24.001053, "seconds": 1.0002809762954712, "bytes": 130320, "bits_per_second": 1042267.1476379654, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.001053, "end": 25.000809, "seconds": 0.9997559785842896, "bytes": 131768, "bits_per_second": 1054401.2964970982, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 24.001053, "end": 25.000809, "seconds": 0.9997559785842896, "bytes": 131768, "bits_per_second": 1054401.2964970982, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.000809, "end": 26.001034, "seconds": 1.0002249479293823, "bytes": 130320, "bits_per_second": 1042325.5310300525, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 25.000809, "end": 26.001034, "seconds": 1.0002249479293823, "bytes": 130320, "bits_per_second": 1042325.5310300525, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.001034, "end": 27.001045, "seconds": 1.0000109672546387, "bytes": 131768, "bits_per_second": 1054132.4390611178, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 26.001034, "end": 27.001045, "seconds": 1.0000109672546387, "bytes": 131768, "bits_per_second": 1054132.4390611178, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.001045, "end": 28.000792, "seconds": 0.9997469782829285, "bytes": 130320, "bits_per_second": 1042823.8570829222, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 27.001045, "end": 28.000792, "seconds": 0.9997469782829285, "bytes": 130320, "bits_per_second": 1042823.8570829222, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.000792, "end": 29.001039, "seconds": 1.0002470016479492, "bytes": 131768, "bits_per_second": 1053883.6889920721, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 28.000792, "end": 29.001039, "seconds": 1.0002470016479492, "bytes": 131768, "bits_per_second": 1053883.6889920721, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.001039, "end": 30.000791, "seconds": 0.9997519850730896, "bytes": 130320, "bits_per_second": 1042818.634587438, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 29.001039, "end": 30.000791, "seconds": 0.9997519850730896, "bytes": 130320, "bits_per_second": 1042818.634587438, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.000791, "end": 31.000779, "seconds": 0.9999880194664, "bytes": 131768, "bits_per_second": 1054156.6293589175, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 30.000791, "end": 31.000779, "seconds": 0.9999880194664, "bytes": 131768, "bits_per_second": 1054156.6293589175, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.000779, "end": 32.001049, "seconds": 1.0002700090408325, "bytes": 130320, "bits_per_second": 1042278.5753615863, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 31.000779, "end": 32.001049, "seconds": 1.0002700090408325, "bytes": 130320, "bits_per_second": 1042278.5753615863, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.001049, "end": 33.000776, "seconds": 0.9997270107269287, "bytes": 131768, "bits_per_second": 1054431.8485838482, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 32.001049, "end": 33.000776, "seconds": 0.9997270107269287, "bytes": 131768, "bits_per_second": 1054431.8485838482, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.000776, "end": 34.001049, "seconds": 1.0002729892730713, "bytes": 130320, "bits_per_second": 1042275.4699771109, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 33.000776, "end": 34.001049, "seconds": 1.0002729892730713, "bytes": 130320, "bits_per_second": 1042275.4699771109, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.001049, "end": 35.000777, "seconds": 0.99972802400589, "bytes": 131768, "bits_per_second": 1054430.7798595726, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 34.001049, "end": 35.000777, "seconds": 0.99972802400589, "bytes": 131768, "bits_per_second": 1054430.7798595726, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.000777, "end": 36.001047, "seconds": 1.0002700090408325, "bytes": 130320, "bits_per_second": 1042278.5753615863, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 35.000777, "end": 36.001047, "seconds": 1.0002700090408325, "bytes": 130320, "bits_per_second": 1042278.5753615863, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.001047, "end": 37.001045, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 36.001047, "end": 37.001045, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.001045, "end": 38.001031, "seconds": 0.9999859929084778, "bytes": 130320, "bits_per_second": 1042574.6034378891, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 37.001045, "end": 38.001031, "seconds": 0.9999859929084778, "bytes": 130320, "bits_per_second": 1042574.6034378891, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.001031, "end": 39.001045, "seconds": 1.0000139474868774, "bytes": 131768, "bits_per_second": 1054129.2975454554, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 38.001031, "end": 39.001045, "seconds": 1.0000139474868774, "bytes": 131768, "bits_per_second": 1054129.2975454554, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.001045, "end": 40.001049, "seconds": 1.0000040531158447, "bytes": 130320, "bits_per_second": 1042555.7744006717, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 39.001045, "end": 40.001049, "seconds": 1.0000040531158447, "bytes": 130320, "bits_per_second": 1042555.7744006717, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.001049, "end": 41.001018, "seconds": 0.9999690055847168, "bytes": 131768, "bits_per_second": 1054176.673589603, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 40.001049, "end": 41.001018, "seconds": 0.9999690055847168, "bytes": 131768, "bits_per_second": 1054176.673589603, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.001018, "end": 42.000776, "seconds": 0.999758005142212, "bytes": 130320, "bits_per_second": 1042812.355227603, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 41.001018, "end": 42.000776, "seconds": 0.999758005142212, "bytes": 130320, "bits_per_second": 1042812.355227603, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.000776, "end": 43.000793, "seconds": 1.0000170469284058, "bytes": 131768, "bits_per_second": 1054126.0303890293, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 42.000776, "end": 43.000793, "seconds": 1.0000170469284058, "bytes": 131768, "bits_per_second": 1054126.0303890293, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.000793, "end": 44.001048, "seconds": 1.0002549886703491, "bytes": 130320, "bits_per_second": 1042294.2267810005, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 43.000793, "end": 44.001048, "seconds": 1.0002549886703491, "bytes": 130320, "bits_per_second": 1042294.2267810005, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.001048, "end": 45.001055, "seconds": 1.0000070333480835, "bytes": 131768, "bits_per_second": 1054136.5858904638, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 44.001048, "end": 45.001055, "seconds": 1.0000070333480835, "bytes": 131768, "bits_per_second": 1054136.5858904638, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 45.001055, "end": 46.001049, "seconds": 0.9999939799308777, "bytes": 130320, "bits_per_second": 1042566.276321048, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 45.001055, "end": 46.001049, "seconds": 0.9999939799308777, "bytes": 130320, "bits_per_second": 1042566.276321048, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 46.001049, "end": 47.000775, "seconds": 0.9997259974479675, "bytes": 131768, "bits_per_second": 1054432.91731029, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 46.001049, "end": 47.000775, "seconds": 0.9997259974479675, "bytes": 131768, "bits_per_second": 1054432.91731029, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 47.000775, "end": 48.000251, "seconds": 0.9994760155677795, "bytes": 130320, "bits_per_second": 1043106.5716046677, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 47.000775, "end": 48.000251, "seconds": 0.9994760155677795, "bytes": 130320, "bits_per_second": 1043106.5716046677, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 48.000251, "end": 49.001045, "seconds": 1.0007940530776978, "bytes": 131768, "bits_per_second": 1053307.6178442882, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 48.000251, "end": 49.001045, "seconds": 1.0007940530776978, "bytes": 131768, "bits_per_second": 1053307.6178442882, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 49.001045, "end": 50.001696, "seconds": 1.0006510019302368, "bytes": 131768, "bits_per_second": 1053458.1966805372, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 49.001045, "end": 50.001696, "seconds": 1.0006510019302368, "bytes": 131768, "bits_per_second": 1053458.1966805372, "packets": 91, "omitted": false, "sender": true}}], "end": {"streams": [{"udp": {"socket": 5, "start": 0, "end": 50.001696, "seconds": 50.001696, "bytes": 6555096, "bits_per_second": 1048779.7853896795, "jitter_ms": 0.058247632654434986, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "out_of_order": 0, "sender": true}}], "sum": {"start": 0, "end": 50.004416, "seconds": 50.004416, "bytes": 6555096, "bits_per_second": 1048779.7853896795, "jitter_ms": 0.058247632654434986, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": true}, "sum_sent": {"start": 0, "end": 50.001696, "seconds": 50.001696, "bytes": 6555096, "bits_per_second": 1048779.7853896795, "jitter_ms": 0, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": true}, "sum_received": {"start": 0, "end": 50.004416, "seconds": 50.004416, "bytes": 6555096, "bits_per_second": 1048722.736807885, "jitter_ms": 0.058247632654434986, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "cpu_utilization_percent": {"host_total": 0.4170622272581191, "host_user": 0.05338606030647553, "host_system": 0.36367616695164356, "remote_total": 1.3240016032311643, "remote_user": 0.41597057260478554, "remote_system": 0.9083910016991035}}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 55248}], "version": "iperf 3.19.1", "system_info": "Linux localhost 6.4.0-150600.23.118-default #1 SMP PREEMPT_DYNAMIC Wed Jun 17 15:20:04 UTC 2026 (353f7fd) x86_64", "target_bitrate": 1048576, "timestamp": {"time": "Sat, 04 Jul 2026 13:35:30 GMT", "timesecs": 1783172130}, "accepted_connection": {"host": "10.5.0.11", "port": 45602}, "cookie": "thmpprjsxf46lebdqk6fpghovt4ama5kjcwr", "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 212992, "rcvbuf_actual": 212992, "test_start": {"protocol": "UDP", "num_streams": 1, "blksize": 1448, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 1048576, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001825, "seconds": 1.001824975013733, "bytes": 131768, "bits_per_second": 1052223.7180057822, "jitter_ms": 0.111967668965924, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.001825, "seconds": 1.001824975013733, "bytes": 131768, "bits_per_second": 1052223.7180057822, "jitter_ms": 0.111967668965924, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.001825, "end": 2.001417, "seconds": 0.9995920062065125, "bytes": 131768, "bits_per_second": 1054574.2597527509, "jitter_ms": 0.062396999474847385, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 1.001825, "end": 2.001417, "seconds": 0.9995920062065125, "bytes": 131768, "bits_per_second": 1054574.2597527509, "jitter_ms": 0.062396999474847385, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.001417, "end": 3.001267, "seconds": 0.9998499751091003, "bytes": 130320, "bits_per_second": 1042716.433419163, "jitter_ms": 0.1430047053582717, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 2.001417, "end": 3.001267, "seconds": 0.9998499751091003, "bytes": 130320, "bits_per_second": 1042716.433419163, "jitter_ms": 0.1430047053582717, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.001267, "end": 4.001359, "seconds": 1.0000920295715332, "bytes": 131768, "bits_per_second": 1054046.9965065357, "jitter_ms": 0.08151172603486855, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 3.001267, "end": 4.001359, "seconds": 1.0000920295715332, "bytes": 131768, "bits_per_second": 1054046.9965065357, "jitter_ms": 0.08151172603486855, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.001359, "end": 5.001705, "seconds": 1.0003459453582764, "bytes": 130320, "bits_per_second": 1042199.4559358208, "jitter_ms": 0.10500335183892044, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 4.001359, "end": 5.001705, "seconds": 1.0003459453582764, "bytes": 130320, "bits_per_second": 1042199.4559358208, "jitter_ms": 0.10500335183892044, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.001705, "end": 6.001376, "seconds": 0.99967098236084, "bytes": 131768, "bits_per_second": 1054490.9461216086, "jitter_ms": 0.1999364762347977, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 5.001705, "end": 6.001376, "seconds": 0.99967098236084, "bytes": 131768, "bits_per_second": 1054490.9461216086, "jitter_ms": 0.1999364762347977, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.001376, "end": 7.001317, "seconds": 0.9999409914016724, "bytes": 130320, "bits_per_second": 1042621.5236346959, "jitter_ms": 0.0747450651008122, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 6.001376, "end": 7.001317, "seconds": 0.9999409914016724, "bytes": 130320, "bits_per_second": 1042621.5236346959, "jitter_ms": 0.0747450651008122, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.001317, "end": 8.001308, "seconds": 0.999990999698639, "bytes": 131768, "bits_per_second": 1054153.48769907, "jitter_ms": 0.0919067303707261, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 7.001317, "end": 8.001308, "seconds": 0.999990999698639, "bytes": 131768, "bits_per_second": 1054153.48769907, "jitter_ms": 0.0919067303707261, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.001308, "end": 9.001389, "seconds": 1.000080943107605, "bytes": 130320, "bits_per_second": 1042475.6187838132, "jitter_ms": 0.08068741093408513, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 8.001308, "end": 9.001389, "seconds": 1.000080943107605, "bytes": 130320, "bits_per_second": 1042475.6187838132, "jitter_ms": 0.08068741093408513, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.001389, "end": 10.001481, "seconds": 1.0000920295715332, "bytes": 131768, "bits_per_second": 1054046.9965065357, "jitter_ms": 0.05163290332515942, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 9.001389, "end": 10.001481, "seconds": 1.0000920295715332, "bytes": 131768, "bits_per_second": 1054046.9965065357, "jitter_ms": 0.05163290332515942, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.001481, "end": 11.001483, "seconds": 1.0000020265579224, "bytes": 130320, "bits_per_second": 1042557.8871960542, "jitter_ms": 0.11286454233690177, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 10.001481, "end": 11.001483, "seconds": 1.0000020265579224, "bytes": 130320, "bits_per_second": 1042557.8871960542, "jitter_ms": 0.11286454233690177, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.001483, "end": 12.001376, "seconds": 0.9998930096626282, "bytes": 131768, "bits_per_second": 1054256.7952902047, "jitter_ms": 0.10007552529064745, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 11.001483, "end": 12.001376, "seconds": 0.9998930096626282, "bytes": 131768, "bits_per_second": 1054256.7952902047, "jitter_ms": 0.10007552529064745, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.001376, "end": 13.001334, "seconds": 0.9999579787254333, "bytes": 130320, "bits_per_second": 1042603.811541029, "jitter_ms": 0.06332074406563368, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 12.001376, "end": 13.001334, "seconds": 0.9999579787254333, "bytes": 130320, "bits_per_second": 1042603.811541029, "jitter_ms": 0.06332074406563368, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.001334, "end": 14.001465, "seconds": 1.0001310110092163, "bytes": 131768, "bits_per_second": 1054005.9136215365, "jitter_ms": 0.04850684415718122, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 13.001334, "end": 14.001465, "seconds": 1.0001310110092163, "bytes": 131768, "bits_per_second": 1054005.9136215365, "jitter_ms": 0.04850684415718122, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.001465, "end": 15.001845, "seconds": 1.000380039215088, "bytes": 130320, "bits_per_second": 1042163.9368354521, "jitter_ms": 0.08667243011382153, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 14.001465, "end": 15.001845, "seconds": 1.000380039215088, "bytes": 130320, "bits_per_second": 1042163.9368354521, "jitter_ms": 0.08667243011382153, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.001845, "end": 16.001533, "seconds": 0.9996880292892456, "bytes": 131768, "bits_per_second": 1054472.9646802626, "jitter_ms": 0.09849896470419334, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 15.001845, "end": 16.001533, "seconds": 0.9996880292892456, "bytes": 131768, "bits_per_second": 1054472.9646802626, "jitter_ms": 0.09849896470419334, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.001533, "end": 17.001469, "seconds": 0.9999359846115112, "bytes": 130320, "bits_per_second": 1042626.7441560759, "jitter_ms": 0.09396972129550726, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 16.001533, "end": 17.001469, "seconds": 0.9999359846115112, "bytes": 130320, "bits_per_second": 1042626.7441560759, "jitter_ms": 0.09396972129550726, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.001469, "end": 18.001428, "seconds": 0.9999589920043945, "bytes": 131768, "bits_per_second": 1054187.2301052995, "jitter_ms": 0.0989608705441664, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 17.001469, "end": 18.001428, "seconds": 0.9999589920043945, "bytes": 131768, "bits_per_second": 1054187.2301052995, "jitter_ms": 0.0989608705441664, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.001428, "end": 19.002072, "seconds": 1.0006439685821533, "bytes": 131768, "bits_per_second": 1053465.6012504154, "jitter_ms": 0.13355640030930352, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 18.001428, "end": 19.002072, "seconds": 1.0006439685821533, "bytes": 131768, "bits_per_second": 1053465.6012504154, "jitter_ms": 0.13355640030930352, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.002072, "end": 20.001346, "seconds": 0.9992740154266357, "bytes": 130320, "bits_per_second": 1043317.432361016, "jitter_ms": 0.10331125299291034, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 19.002072, "end": 20.001346, "seconds": 0.9992740154266357, "bytes": 130320, "bits_per_second": 1043317.432361016, "jitter_ms": 0.10331125299291034, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.001346, "end": 21.001993, "seconds": 1.000646948814392, "bytes": 131768, "bits_per_second": 1053462.4637080976, "jitter_ms": 0.10491988568396854, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 20.001346, "end": 21.001993, "seconds": 1.000646948814392, "bytes": 131768, "bits_per_second": 1053462.4637080976, "jitter_ms": 0.10491988568396854, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.001993, "end": 22.00157, "seconds": 0.999576985836029, "bytes": 130320, "bits_per_second": 1043001.2042824503, "jitter_ms": 0.07882907574356987, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 21.001993, "end": 22.00157, "seconds": 0.999576985836029, "bytes": 130320, "bits_per_second": 1043001.2042824503, "jitter_ms": 0.07882907574356987, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.00157, "end": 23.001353, "seconds": 0.9997829794883728, "bytes": 131768, "bits_per_second": 1054372.820528957, "jitter_ms": 0.1103934866889073, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 22.00157, "end": 23.001353, "seconds": 0.9997829794883728, "bytes": 131768, "bits_per_second": 1054372.820528957, "jitter_ms": 0.1103934866889073, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.001353, "end": 24.001412, "seconds": 1.0000590085983276, "bytes": 130320, "bits_per_second": 1042498.4836257226, "jitter_ms": 0.07175461291499435, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 23.001353, "end": 24.001412, "seconds": 1.0000590085983276, "bytes": 130320, "bits_per_second": 1042498.4836257226, "jitter_ms": 0.07175461291499435, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.001412, "end": 25.001878, "seconds": 1.000465989112854, "bytes": 131768, "bits_per_second": 1053653.0091690014, "jitter_ms": 0.10933723100132225, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 24.001412, "end": 25.001878, "seconds": 1.000465989112854, "bytes": 131768, "bits_per_second": 1053653.0091690014, "jitter_ms": 0.10933723100132225, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.001878, "end": 26.001843, "seconds": 0.999965012073517, "bytes": 130320, "bits_per_second": 1042596.478288934, "jitter_ms": 0.0880510871888974, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 25.001878, "end": 26.001843, "seconds": 0.999965012073517, "bytes": 130320, "bits_per_second": 1042596.478288934, "jitter_ms": 0.0880510871888974, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.001843, "end": 27.001364, "seconds": 0.999521017074585, "bytes": 131768, "bits_per_second": 1054649.1589394354, "jitter_ms": 0.11521816992551422, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 26.001843, "end": 27.001364, "seconds": 0.999521017074585, "bytes": 131768, "bits_per_second": 1054649.1589394354, "jitter_ms": 0.11521816992551422, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.001364, "end": 28.001313, "seconds": 0.9999489784240723, "bytes": 130320, "bits_per_second": 1042613.1957683312, "jitter_ms": 0.10924491234744844, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 27.001364, "end": 28.001313, "seconds": 0.9999489784240723, "bytes": 130320, "bits_per_second": 1042613.1957683312, "jitter_ms": 0.10924491234744844, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.001313, "end": 29.001462, "seconds": 1.0001490116119385, "bytes": 131768, "bits_per_second": 1053986.9437065562, "jitter_ms": 0.10868893815283, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 28.001313, "end": 29.001462, "seconds": 1.0001490116119385, "bytes": 131768, "bits_per_second": 1053986.9437065562, "jitter_ms": 0.10868893815283, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.001462, "end": 30.00151, "seconds": 1.000048041343689, "bytes": 130320, "bits_per_second": 1042509.916422806, "jitter_ms": 0.106084587145751, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 29.001462, "end": 30.00151, "seconds": 1.000048041343689, "bytes": 130320, "bits_per_second": 1042509.916422806, "jitter_ms": 0.106084587145751, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.00151, "end": 31.001512, "seconds": 1.0000020265579224, "bytes": 131768, "bits_per_second": 1054141.8637204547, "jitter_ms": 0.09712538984963304, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 30.00151, "end": 31.001512, "seconds": 1.0000020265579224, "bytes": 131768, "bits_per_second": 1054141.8637204547, "jitter_ms": 0.09712538984963304, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.001512, "end": 32.001371, "seconds": 0.9998589754104614, "bytes": 130320, "bits_per_second": 1042707.0473333591, "jitter_ms": 0.09063851278913712, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 31.001512, "end": 32.001371, "seconds": 0.9998589754104614, "bytes": 130320, "bits_per_second": 1042707.0473333591, "jitter_ms": 0.09063851278913712, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.001371, "end": 33.001284, "seconds": 0.999912977218628, "bytes": 131768, "bits_per_second": 1054235.7425265366, "jitter_ms": 0.09769968868833463, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 32.001371, "end": 33.001284, "seconds": 0.999912977218628, "bytes": 131768, "bits_per_second": 1054235.7425265366, "jitter_ms": 0.09769968868833463, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.001284, "end": 34.001808, "seconds": 1.0005240440368652, "bytes": 130320, "bits_per_second": 1042013.9388090366, "jitter_ms": 0.057528723888623984, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 33.001284, "end": 34.001808, "seconds": 1.0005240440368652, "bytes": 130320, "bits_per_second": 1042013.9388090366, "jitter_ms": 0.057528723888623984, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.001808, "end": 35.039792, "seconds": 1.037984013557434, "bytes": 115840, "bits_per_second": 892807.5846022868, "jitter_ms": 0.08486572533982616, "lost_packets": 0, "packets": 80, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 34.001808, "end": 35.039792, "seconds": 1.037984013557434, "bytes": 115840, "bits_per_second": 892807.5846022868, "jitter_ms": 0.08486572533982616, "lost_packets": 0, "packets": 80, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.039792, "end": 36.003131, "seconds": 0.9633389711380005, "bytes": 146248, "bits_per_second": 1214509.1551916434, "jitter_ms": 0.12923584890212228, "lost_packets": 0, "packets": 101, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 35.039792, "end": 36.003131, "seconds": 0.9633389711380005, "bytes": 146248, "bits_per_second": 1214509.1551916434, "jitter_ms": 0.12923584890212228, "lost_packets": 0, "packets": 101, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.003131, "end": 37.001507, "seconds": 0.9983760118484497, "bytes": 131768, "bits_per_second": 1055858.7020217946, "jitter_ms": 0.09846629220868433, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 36.003131, "end": 37.001507, "seconds": 0.9983760118484497, "bytes": 131768, "bits_per_second": 1055858.7020217946, "jitter_ms": 0.09846629220868433, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.001507, "end": 38.001347, "seconds": 0.999840021133423, "bytes": 130320, "bits_per_second": 1042726.8142538939, "jitter_ms": 0.09148785382185673, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 37.001507, "end": 38.001347, "seconds": 0.999840021133423, "bytes": 130320, "bits_per_second": 1042726.8142538939, "jitter_ms": 0.09148785382185673, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.001347, "end": 39.001448, "seconds": 1.0001009702682495, "bytes": 131768, "bits_per_second": 1054037.5735434543, "jitter_ms": 0.08370190885489277, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 38.001347, "end": 39.001448, "seconds": 1.0001009702682495, "bytes": 131768, "bits_per_second": 1054037.5735434543, "jitter_ms": 0.08370190885489277, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.001448, "end": 40.001512, "seconds": 1.0000640153884888, "bytes": 130320, "bits_per_second": 1042493.2643886833, "jitter_ms": 0.07285334003799217, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 39.001448, "end": 40.001512, "seconds": 1.0000640153884888, "bytes": 130320, "bits_per_second": 1042493.2643886833, "jitter_ms": 0.07285334003799217, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.001512, "end": 41.001339, "seconds": 0.9998270273208618, "bytes": 131768, "bits_per_second": 1054326.3696568457, "jitter_ms": 0.09212019757884635, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 40.001512, "end": 41.001339, "seconds": 0.9998270273208618, "bytes": 131768, "bits_per_second": 1054326.3696568457, "jitter_ms": 0.09212019757884635, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.001339, "end": 42.001359, "seconds": 1.0000200271606445, "bytes": 130320, "bits_per_second": 1042539.1209015475, "jitter_ms": 0.1280752565656395, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 41.001339, "end": 42.001359, "seconds": 1.0000200271606445, "bytes": 130320, "bits_per_second": 1042539.1209015475, "jitter_ms": 0.1280752565656395, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.001359, "end": 43.001294, "seconds": 0.99993497133255, "bytes": 131768, "bits_per_second": 1054212.554037598, "jitter_ms": 0.11725195538593647, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 42.001359, "end": 43.001294, "seconds": 0.99993497133255, "bytes": 131768, "bits_per_second": 1054212.554037598, "jitter_ms": 0.11725195538593647, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.001294, "end": 44.001402, "seconds": 1.000108003616333, "bytes": 130320, "bits_per_second": 1042447.4119096767, "jitter_ms": 0.07438314095415816, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 43.001294, "end": 44.001402, "seconds": 1.000108003616333, "bytes": 130320, "bits_per_second": 1042447.4119096767, "jitter_ms": 0.07438314095415816, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.001402, "end": 45.001907, "seconds": 1.000504970550537, "bytes": 131768, "bits_per_second": 1053611.9569900262, "jitter_ms": 0.0761749433744848, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 44.001402, "end": 45.001907, "seconds": 1.000504970550537, "bytes": 131768, "bits_per_second": 1053611.9569900262, "jitter_ms": 0.0761749433744848, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.001907, "end": 46.001805, "seconds": 0.9998980164527893, "bytes": 130320, "bits_per_second": 1042666.3348113812, "jitter_ms": 0.0648004886932025, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 45.001907, "end": 46.001805, "seconds": 0.9998980164527893, "bytes": 130320, "bits_per_second": 1042666.3348113812, "jitter_ms": 0.0648004886932025, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 46.001805, "end": 47.001742, "seconds": 0.9999369978904724, "bytes": 130320, "bits_per_second": 1042625.6876177676, "jitter_ms": 0.06477559623533426, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 46.001805, "end": 47.001742, "seconds": 0.9999369978904724, "bytes": 130320, "bits_per_second": 1042625.6876177676, "jitter_ms": 0.06477559623533426, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 47.001742, "end": 48.001402, "seconds": 0.9996600151062012, "bytes": 131768, "bits_per_second": 1054502.5149255476, "jitter_ms": 0.09885526338635406, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 47.001742, "end": 48.001402, "seconds": 0.9996600151062012, "bytes": 131768, "bits_per_second": 1054502.5149255476, "jitter_ms": 0.09885526338635406, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 48.001402, "end": 49.001488, "seconds": 1.0000859498977661, "bytes": 130320, "bits_per_second": 1042470.3997757151, "jitter_ms": 0.09369492075864105, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 48.001402, "end": 49.001488, "seconds": 1.0000859498977661, "bytes": 130320, "bits_per_second": 1042470.3997757151, "jitter_ms": 0.09369492075864105, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 49.001488, "end": 50.001506, "seconds": 1.0000180006027222, "bytes": 131768, "bits_per_second": 1054125.0251142033, "jitter_ms": 0.058247632654434986, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 49.001488, "end": 50.001506, "seconds": 1.0000180006027222, "bytes": 131768, "bits_per_second": 1054125.0251142033, "jitter_ms": 0.058247632654434986, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}], "end": {"streams": [{"udp": {"socket": 5, "start": 0, "end": 50.004416, "seconds": 50.004416, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0.058247632654434986, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "out_of_order": 0, "sender": false}}], "sum": {"start": 0, "end": 50.004416, "seconds": 50.004416, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0.058247632654434986, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "sum_sent": {"start": 0, "end": 50.004416, "seconds": 50.004416, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0, "lost_packets": 0, "packets": 0, "lost_percent": 0, "sender": true}, "sum_received": {"start": 0, "end": 50.004416, "seconds": 50.004416, "bytes": 6555096, "bits_per_second": 1048722.736807885, "jitter_ms": 0.058247632654434986, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "cpu_utilization_percent": {"host_total": 1.3240016032311643, "host_user": 0.41597057260478554, "host_system": 0.9083910016991035, "remote_total": 0, "remote_user": 0, "remote_system": 0}}}}} 2026-07-04 15:40:02.454267 2026-07-04 11:58:54.193208 +184 8 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 15:40:57.811945 2026-07-04 15:40:57.811949 +185 8 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:39:08' --until '2026-07-04 15:40:55' 0 OOM records 2026-07-04 15:39:08.428105 2026-07-04 15:40:55.632632 +186 8 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:39:08' --until '2026-07-04 15:40:55' 0 systemd errors records 2026-07-04 15:39:08.428105 2026-07-04 15:40:55.632632 +187 8 loader {"profiles_count": 12, "required_timeout_sec": 60, "provided_timeout_sec": 50} 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +188 8 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 15:41:07.369178 2026-07-04 15:41:07.369181 +189 8 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:41:04' --until '2026-07-04 15:41:04' 0 OOM records 2026-07-04 15:41:04.583826 2026-07-04 15:41:04.58828 +190 8 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:41:04' --until '2026-07-04 15:41:04' 0 systemd errors records 2026-07-04 15:41:04.583826 2026-07-04 15:41:04.58828 +191 8 loader /usr/bin/stress-ng --timeout 45 --cpu-method all --vm-method all --sock 0 --netdev 0 --udp-flood 0 --syscall-method all --verify --metrics --maximize --seed 1592594996 & /usr/bin/iperf3 --time 45 --port 5201 --client 10.5.0.13 --interval 1 --version4 --json {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 298.34}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 2789, "real_time_secs": 45.05, "usr_time_secs": 2.72, "sys_time_secs": 69.77, "bogo_ops_s_real_time": 61.91, "bogo_ops_s_usr_sys_time": 38.48, "cpu_used_per_instance": 40.23, "rss_max_kb": 2100, "top10_slowest": null}, "1": {"stressor": "netdev", "bogo_ops": 1030759, "real_time_secs": 45.0, "usr_time_secs": 8.83, "sys_time_secs": 36.87, "bogo_ops_s_real_time": 22904.12, "bogo_ops_s_usr_sys_time": 22555.26, "cpu_used_per_instance": 25.39, "rss_max_kb": 1844, "top10_slowest": null}, "2": {"stressor": "udp-flood", "bogo_ops": 829974, "real_time_secs": 45.0, "usr_time_secs": 1.83, "sys_time_secs": 43.27, "bogo_ops_s_real_time": 18441.85, "bogo_ops_s_usr_sys_time": 18405.77, "cpu_used_per_instance": 25.05, "rss_max_kb": 1844, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 12, "failed": -1, "metrics_untrustworthy": -1}}, "iperf3": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 59814, "remote_host": "10.5.0.13", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux f88e0f09de05 6.17.0-35-generic #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 19:30:42 UTC 2 x86_64", "timestamp": {"time": "Sat, 04 Jul 2026 15:41:18 GMT", "timesecs": 1783179678}, "connecting_to": {"host": "10.5.0.13", "port": 5201}, "cookie": "wu32ckkvli4flsva45fkziopiuvwuxmmcmo7", "tcp_mss_default": 1448, "target_bitrate": 0, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 45, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001042, "seconds": 1.0010420083999634, "bytes": 196870144, "bits_per_second": 1573321737.533645, "retransmits": 3, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 248, "rttvar": 255, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.001042, "seconds": 1.0010420083999634, "bytes": 196870144, "bits_per_second": 1573321737.533645, "retransmits": 3, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.001042, "end": 2.000547, "seconds": 0.9995049834251404, "bytes": 167903232, "bits_per_second": 1343891104.37147, "retransmits": 5, "snd_cwnd": 395304, "snd_wnd": 89088, "rtt": 607, "rttvar": 714, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 1.001042, "end": 2.000547, "seconds": 0.9995049834251404, "bytes": 167903232, "bits_per_second": 1343891104.37147, "retransmits": 5, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.000547, "end": 3.00051, "seconds": 0.9999629855155945, "bytes": 41025536, "bits_per_second": 328216436.76218015, "retransmits": 25, "snd_cwnd": 395304, "snd_wnd": 75776, "rtt": 1981, "rttvar": 2942, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 2.000547, "end": 3.00051, "seconds": 0.9999629855155945, "bytes": 41025536, "bits_per_second": 328216436.76218015, "retransmits": 25, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.00051, "end": 4.001034, "seconds": 1.0005240440368652, "bytes": 40763392, "bits_per_second": 325936331.0093368, "retransmits": 24, "snd_cwnd": 395304, "snd_wnd": 62464, "rtt": 753, "rttvar": 733, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 3.00051, "end": 4.001034, "seconds": 1.0005240440368652, "bytes": 40763392, "bits_per_second": 325936331.0093368, "retransmits": 24, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.001034, "end": 5.001033, "seconds": 0.9999989867210388, "bytes": 43253760, "bits_per_second": 346030430.6253553, "retransmits": 21, "snd_cwnd": 395304, "snd_wnd": 185344, "rtt": 758, "rttvar": 969, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 4.001034, "end": 5.001033, "seconds": 0.9999989867210388, "bytes": 43253760, "bits_per_second": 346030430.6253553, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.001033, "end": 6.001029, "seconds": 0.9999960064888, "bytes": 38535168, "bits_per_second": 308282575.12991655, "retransmits": 21, "snd_cwnd": 395304, "snd_wnd": 185344, "rtt": 881, "rttvar": 1195, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 5.001033, "end": 6.001029, "seconds": 0.9999960064888, "bytes": 38535168, "bits_per_second": 308282575.12991655, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.001029, "end": 7.000519, "seconds": 0.9994900226593018, "bytes": 38273024, "bits_per_second": 306340418.67206275, "retransmits": 21, "snd_cwnd": 395304, "snd_wnd": 75776, "rtt": 646, "rttvar": 810, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 6.001029, "end": 7.000519, "seconds": 0.9994900226593018, "bytes": 38273024, "bits_per_second": 306340418.67206275, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.000519, "end": 8.00103, "seconds": 1.0005110502243042, "bytes": 32505856, "bits_per_second": 259914018.88235036, "retransmits": 26, "snd_cwnd": 395304, "snd_wnd": 62464, "rtt": 710, "rttvar": 677, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 7.000519, "end": 8.00103, "seconds": 1.0005110502243042, "bytes": 32505856, "bits_per_second": 259914018.88235036, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.00103, "end": 9.00103, "seconds": 1, "bytes": 39845888, "bits_per_second": 318767104, "retransmits": 18, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 565, "rttvar": 608, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 8.00103, "end": 9.00103, "seconds": 1, "bytes": 39845888, "bits_per_second": 318767104, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.00103, "end": 10.001029, "seconds": 0.9999989867210388, "bytes": 35127296, "bits_per_second": 281018652.75028855, "retransmits": 24, "snd_cwnd": 395304, "snd_wnd": 43008, "rtt": 1312, "rttvar": 2116, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 9.00103, "end": 10.001029, "seconds": 0.9999989867210388, "bytes": 35127296, "bits_per_second": 281018652.75028855, "retransmits": 24, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.001029, "end": 11.00103, "seconds": 1.0000009536743164, "bytes": 32374784, "bits_per_second": 258998025.00023556, "retransmits": 22, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 1884, "rttvar": 3060, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 10.001029, "end": 11.00103, "seconds": 1.0000009536743164, "bytes": 32374784, "bits_per_second": 258998025.00023556, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.00103, "end": 12.001031, "seconds": 1.0000009536743164, "bytes": 32505856, "bits_per_second": 260046600.0002365, "retransmits": 14, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 1261, "rttvar": 1508, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 11.00103, "end": 12.001031, "seconds": 1.0000009536743164, "bytes": 32505856, "bits_per_second": 260046600.0002365, "retransmits": 14, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.001031, "end": 13.001028, "seconds": 0.9999970197677612, "bytes": 35127296, "bits_per_second": 281019205.502496, "retransmits": 24, "snd_cwnd": 395304, "snd_wnd": 62464, "rtt": 486, "rttvar": 457, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 12.001031, "end": 13.001028, "seconds": 0.9999970197677612, "bytes": 35127296, "bits_per_second": 281019205.502496, "retransmits": 24, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.001028, "end": 14.00103, "seconds": 1.0000020265579224, "bytes": 34603008, "bits_per_second": 276823503.0011369, "retransmits": 22, "snd_cwnd": 395304, "snd_wnd": 75776, "rtt": 1718, "rttvar": 2715, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 13.001028, "end": 14.00103, "seconds": 1.0000020265579224, "bytes": 34603008, "bits_per_second": 276823503.0011369, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.00103, "end": 15.001032, "seconds": 1.0000020265579224, "bytes": 32374784, "bits_per_second": 258997747.12606367, "retransmits": 22, "snd_cwnd": 395304, "snd_wnd": 185344, "rtt": 988, "rttvar": 1381, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 14.00103, "end": 15.001032, "seconds": 1.0000020265579224, "bytes": 32374784, "bits_per_second": 258997747.12606367, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.001032, "end": 16.001027, "seconds": 0.999994993209839, "bytes": 41025536, "bits_per_second": 328205931.25822747, "retransmits": 13, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 294, "rttvar": 323, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 15.001032, "end": 16.001027, "seconds": 0.999994993209839, "bytes": 41025536, "bits_per_second": 328205931.25822747, "retransmits": 13, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.001027, "end": 17.001028, "seconds": 1.0000009536743164, "bytes": 32112640, "bits_per_second": 256900875.00023365, "retransmits": 23, "snd_cwnd": 395304, "snd_wnd": 68608, "rtt": 1676, "rttvar": 2814, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 16.001027, "end": 17.001028, "seconds": 1.0000009536743164, "bytes": 32112640, "bits_per_second": 256900875.00023365, "retransmits": 23, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.001028, "end": 18.000512, "seconds": 0.9994840025901794, "bytes": 30932992, "bits_per_second": 247591692.6721119, "retransmits": 20, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 706, "rttvar": 894, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 17.001028, "end": 18.000512, "seconds": 0.9994840025901794, "bytes": 30932992, "bits_per_second": 247591692.6721119, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.000512, "end": 19.001033, "seconds": 1.000520944595337, "bytes": 30801920, "bits_per_second": 246287058.08818752, "retransmits": 15, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 385, "rttvar": 383, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 18.000512, "end": 19.001033, "seconds": 1.000520944595337, "bytes": 30801920, "bits_per_second": 246287058.08818752, "retransmits": 15, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.001033, "end": 20.00053, "seconds": 0.9994969964027405, "bytes": 31326208, "bits_per_second": 250735785.0018176, "retransmits": 19, "snd_cwnd": 395304, "snd_wnd": 147456, "rtt": 1661, "rttvar": 2675, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 19.001033, "end": 20.00053, "seconds": 0.9994969964027405, "bytes": 31326208, "bits_per_second": 250735785.0018176, "retransmits": 19, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.00053, "end": 21.00104, "seconds": 1.0005099773406982, "bytes": 34603008, "bits_per_second": 276682961.9588437, "retransmits": 18, "snd_cwnd": 395304, "snd_wnd": 75776, "rtt": 2510, "rttvar": 4476, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 20.00053, "end": 21.00104, "seconds": 1.0005099773406982, "bytes": 34603008, "bits_per_second": 276682961.9588437, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.00104, "end": 22.001024, "seconds": 0.9999840259552002, "bytes": 33554432, "bits_per_second": 268439744.0684978, "retransmits": 19, "snd_cwnd": 395304, "snd_wnd": 146432, "rtt": 1378, "rttvar": 2324, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 21.00104, "end": 22.001024, "seconds": 0.9999840259552002, "bytes": 33554432, "bits_per_second": 268439744.0684978, "retransmits": 19, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.001024, "end": 23.00051, "seconds": 0.9994860291481018, "bytes": 31588352, "bits_per_second": 252836766.72838658, "retransmits": 18, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 2075, "rttvar": 3180, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 22.001024, "end": 23.00051, "seconds": 0.9994860291481018, "bytes": 31588352, "bits_per_second": 252836766.72838658, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.00051, "end": 24.000589, "seconds": 1.0000790357589722, "bytes": 36962304, "bits_per_second": 295675063.096979, "retransmits": 23, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 652, "rttvar": 825, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 23.00051, "end": 24.000589, "seconds": 1.0000790357589722, "bytes": 36962304, "bits_per_second": 295675063.096979, "retransmits": 23, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.000589, "end": 25.001033, "seconds": 1.0004440546035767, "bytes": 35651584, "bits_per_second": 285086078.21455324, "retransmits": 20, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 604, "rttvar": 720, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 24.000589, "end": 25.001033, "seconds": 1.0004440546035767, "bytes": 35651584, "bits_per_second": 285086078.21455324, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.001033, "end": 26.000513, "seconds": 0.9994800090789795, "bytes": 32899072, "bits_per_second": 263329504.95181176, "retransmits": 21, "snd_cwnd": 395304, "snd_wnd": 43008, "rtt": 1049, "rttvar": 1681, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 25.001033, "end": 26.000513, "seconds": 0.9994800090789795, "bytes": 32899072, "bits_per_second": 263329504.95181176, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.000513, "end": 27.000514, "seconds": 1.0000009536743164, "bytes": 36700160, "bits_per_second": 293601000.000267, "retransmits": 26, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 732, "rttvar": 800, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 26.000513, "end": 27.000514, "seconds": 1.0000009536743164, "bytes": 36700160, "bits_per_second": 293601000.000267, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.000514, "end": 28.000521, "seconds": 1.0000070333480835, "bytes": 48103424, "bits_per_second": 384824685.39403653, "retransmits": 23, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 1128, "rttvar": 1761, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 27.000514, "end": 28.000521, "seconds": 1.0000070333480835, "bytes": 48103424, "bits_per_second": 384824685.39403653, "retransmits": 23, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.000521, "end": 29.001032, "seconds": 1.0005110502243042, "bytes": 41025536, "bits_per_second": 328036644.79909545, "retransmits": 20, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 1218, "rttvar": 1422, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 28.000521, "end": 29.001032, "seconds": 1.0005110502243042, "bytes": 41025536, "bits_per_second": 328036644.79909545, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.001032, "end": 30.001031, "seconds": 0.9999989867210388, "bytes": 40894464, "bits_per_second": 327156043.500336, "retransmits": 20, "snd_cwnd": 395304, "snd_wnd": 185344, "rtt": 797, "rttvar": 1052, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 29.001032, "end": 30.001031, "seconds": 0.9999989867210388, "bytes": 40894464, "bits_per_second": 327156043.500336, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.001031, "end": 31.001029, "seconds": 0.9999979734420776, "bytes": 40501248, "bits_per_second": 324010640.6263307, "retransmits": 26, "snd_cwnd": 395304, "snd_wnd": 75776, "rtt": 605, "rttvar": 798, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 30.001031, "end": 31.001029, "seconds": 0.9999979734420776, "bytes": 40501248, "bits_per_second": 324010640.6263307, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.001029, "end": 32.000515, "seconds": 0.9994860291481018, "bytes": 42467328, "bits_per_second": 339913329.543557, "retransmits": 25, "snd_cwnd": 395304, "snd_wnd": 75776, "rtt": 1038, "rttvar": 1285, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 31.001029, "end": 32.000515, "seconds": 0.9994860291481018, "bytes": 42467328, "bits_per_second": 339913329.543557, "retransmits": 25, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.000515, "end": 33.001034, "seconds": 1.000519037246704, "bytes": 40894464, "bits_per_second": 326985994.08991677, "retransmits": 22, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 593, "rttvar": 583, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 32.000515, "end": 33.001034, "seconds": 1.000519037246704, "bytes": 40894464, "bits_per_second": 326985994.08991677, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.001034, "end": 34.001032, "seconds": 0.9999979734420776, "bytes": 42336256, "bits_per_second": 338690734.376391, "retransmits": 27, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 574, "rttvar": 621, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 33.001034, "end": 34.001032, "seconds": 0.9999979734420776, "bytes": 42336256, "bits_per_second": 338690734.376391, "retransmits": 27, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.001032, "end": 35.001026, "seconds": 0.9999939799308777, "bytes": 46006272, "bits_per_second": 368052391.7008387, "retransmits": 26, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 1905, "rttvar": 2848, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 34.001032, "end": 35.001026, "seconds": 0.9999939799308777, "bytes": 46006272, "bits_per_second": 368052391.7008387, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.001026, "end": 36.001031, "seconds": 1.0000050067901611, "bytes": 50724864, "bits_per_second": 405796880.2601725, "retransmits": 28, "snd_cwnd": 395304, "snd_wnd": 185344, "rtt": 626, "rttvar": 819, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 35.001026, "end": 36.001031, "seconds": 1.0000050067901611, "bytes": 50724864, "bits_per_second": 405796880.2601725, "retransmits": 28, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.001031, "end": 37.000529, "seconds": 0.9994980096817017, "bytes": 51249152, "bits_per_second": 410199131.9928348, "retransmits": 22, "snd_cwnd": 395304, "snd_wnd": 185344, "rtt": 860, "rttvar": 1269, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 36.001031, "end": 37.000529, "seconds": 0.9994980096817017, "bytes": 51249152, "bits_per_second": 410199131.9928348, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.000529, "end": 38.001027, "seconds": 1.0004980564117432, "bytes": 48103424, "bits_per_second": 384635821.6628347, "retransmits": 25, "snd_cwnd": 395304, "snd_wnd": 75776, "rtt": 910, "rttvar": 1246, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 37.000529, "end": 38.001027, "seconds": 1.0004980564117432, "bytes": 48103424, "bits_per_second": 384635821.6628347, "retransmits": 25, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.001027, "end": 39.001025, "seconds": 0.9999979734420776, "bytes": 51118080, "bits_per_second": 408945468.75167954, "retransmits": 28, "snd_cwnd": 395304, "snd_wnd": 75776, "rtt": 304, "rttvar": 199, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 38.001027, "end": 39.001025, "seconds": 0.9999979734420776, "bytes": 51118080, "bits_per_second": 408945468.75167954, "retransmits": 28, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.001025, "end": 40.000398, "seconds": 0.9993730187416077, "bytes": 46268416, "bits_per_second": 370379549.0357372, "retransmits": 21, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 283, "rttvar": 349, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 39.001025, "end": 40.000398, "seconds": 0.9993730187416077, "bytes": 46268416, "bits_per_second": 370379549.0357372, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.000398, "end": 41.001028, "seconds": 1.0006300210952759, "bytes": 38404096, "bits_per_second": 307039326.74707, "retransmits": 22, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 1178, "rttvar": 1554, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 40.000398, "end": 41.001028, "seconds": 1.0006300210952759, "bytes": 38404096, "bits_per_second": 307039326.74707, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.001028, "end": 42.000514, "seconds": 0.9994860291481018, "bytes": 47448064, "bits_per_second": 379779707.69990015, "retransmits": 22, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 877, "rttvar": 1150, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 41.001028, "end": 42.000514, "seconds": 0.9994860291481018, "bytes": 47448064, "bits_per_second": 379779707.69990015, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.000514, "end": 43.000515, "seconds": 1.0000009536743164, "bytes": 42729472, "bits_per_second": 341835450.0003109, "retransmits": 22, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 793, "rttvar": 967, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 42.000514, "end": 43.000515, "seconds": 1.0000009536743164, "bytes": 42729472, "bits_per_second": 341835450.0003109, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.000515, "end": 44.001041, "seconds": 1.000525951385498, "bytes": 52822016, "bits_per_second": 422353990.3336134, "retransmits": 21, "snd_cwnd": 395304, "snd_wnd": 185344, "rtt": 779, "rttvar": 932, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 43.000515, "end": 44.001041, "seconds": 1.000525951385498, "bytes": 52822016, "bits_per_second": 422353990.3336134, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.001041, "end": 45.000906, "seconds": 0.9998649954795837, "bytes": 47054848, "bits_per_second": 376489611.7994827, "retransmits": 22, "snd_cwnd": 395304, "snd_wnd": 0, "rtt": 333, "rttvar": 304, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 44.001041, "end": 45.000906, "seconds": 0.9998649954795837, "bytes": 47054848, "bits_per_second": 376489611.7994827, "retransmits": 22, "omitted": false, "sender": true}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 45.000906, "seconds": 45.000906, "bytes": 2067398656, "bits_per_second": 367530139.2376411, "retransmits": 949, "max_snd_cwnd": 395304, "max_snd_wnd": 185344, "max_rtt": 2510, "min_rtt": 248, "mean_rtt": 962, "sender": true}, "receiver": {"socket": 5, "start": 0, "end": 45.001379, "seconds": 45.000906, "bytes": 2065039360, "bits_per_second": 367106858.6587091, "sender": true}}], "sum_sent": {"start": 0, "end": 45.000906, "seconds": 45.000906, "bytes": 2067398656, "bits_per_second": 367530139.2376411, "retransmits": 949, "sender": true}, "sum_received": {"start": 0, "end": 45.001379, "seconds": 45.001379, "bytes": 2065039360, "bits_per_second": 367106858.6587091, "sender": true}, "cpu_utilization_percent": {"host_total": 1.0049797003442076, "host_user": 0.016070209343835525, "host_system": 0.988909491000372, "remote_total": 24.971788440334677, "remote_user": 0.2690994919930457, "remote_system": 24.702348963021443}, "sender_tcp_congestion": "cubic", "receiver_tcp_congestion": "cubic"}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 59814}], "version": "iperf 3.19.1", "system_info": "Linux localhost 6.4.0-150600.23.118-default #1 SMP PREEMPT_DYNAMIC Wed Jun 17 15:20:04 UTC 2026 (353f7fd) x86_64", "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "timestamp": {"time": "Sat, 04 Jul 2026 13:36:42 GMT", "timesecs": 1783172202}, "accepted_connection": {"host": "10.5.0.11", "port": 59800}, "cookie": "wu32ckkvli4flsva45fkziopiuvwuxmmcmo7", "tcp_mss_default": 0, "target_bitrate": 0, "fq_rate": 0, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 45, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001761, "seconds": 1.0017609596252441, "bytes": 194248704, "bits_per_second": 1551257929.4179552, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.001761, "seconds": 1.0017609596252441, "bytes": 194248704, "bits_per_second": 1551257929.4179552, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.001761, "end": 2.000555, "seconds": 0.9987940192222595, "bytes": 167378944, "bits_per_second": 1340648348.1375635, "omitted": false, "sender": false}], "sum": {"start": 1.001761, "end": 2.000555, "seconds": 0.9987940192222595, "bytes": 167378944, "bits_per_second": 1340648348.1375635, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.000555, "end": 3.000722, "seconds": 1.0001670122146606, "bytes": 40632320, "bits_per_second": 325004280.3153703, "omitted": false, "sender": false}], "sum": {"start": 2.000555, "end": 3.000722, "seconds": 1.0001670122146606, "bytes": 40632320, "bits_per_second": 325004280.3153703, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.000722, "end": 4.000555, "seconds": 0.9998329877853394, "bytes": 39190528, "bits_per_second": 313576595.121617, "omitted": false, "sender": false}], "sum": {"start": 3.000722, "end": 4.000555, "seconds": 0.9998329877853394, "bytes": 39190528, "bits_per_second": 313576595.121617, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.000555, "end": 5.000519, "seconds": 0.9999639987945557, "bytes": 43909120, "bits_per_second": 351285606.70529664, "omitted": false, "sender": false}], "sum": {"start": 4.000555, "end": 5.000519, "seconds": 0.9999639987945557, "bytes": 43909120, "bits_per_second": 351285606.70529664, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.000519, "end": 6.000537, "seconds": 1.0000180006027222, "bytes": 38535168, "bits_per_second": 308275794.849888, "omitted": false, "sender": false}], "sum": {"start": 5.000519, "end": 6.000537, "seconds": 1.0000180006027222, "bytes": 38535168, "bits_per_second": 308275794.849888, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.000537, "end": 7.000473, "seconds": 0.9999359846115112, "bytes": 38010880, "bits_per_second": 304106507.49621934, "omitted": false, "sender": false}], "sum": {"start": 6.000537, "end": 7.000473, "seconds": 0.9999359846115112, "bytes": 38010880, "bits_per_second": 304106507.49621934, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.000473, "end": 8.000505, "seconds": 1.0000319480895996, "bytes": 32636928, "bits_per_second": 261087082.76648647, "omitted": false, "sender": false}], "sum": {"start": 7.000473, "end": 8.000505, "seconds": 1.0000319480895996, "bytes": 32636928, "bits_per_second": 261087082.76648647, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.000505, "end": 9.000621, "seconds": 1.000115990638733, "bytes": 39845888, "bits_per_second": 318730134.2881405, "omitted": false, "sender": false}], "sum": {"start": 8.000505, "end": 9.000621, "seconds": 1.000115990638733, "bytes": 39845888, "bits_per_second": 318730134.2881405, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.000621, "end": 10.000649, "seconds": 1.0000280141830444, "bytes": 34603008, "bits_per_second": 276816309.2172439, "omitted": false, "sender": false}], "sum": {"start": 9.000621, "end": 10.000649, "seconds": 1.0000280141830444, "bytes": 34603008, "bits_per_second": 276816309.2172439, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.000649, "end": 11.000562, "seconds": 0.999912977218628, "bytes": 32899072, "bits_per_second": 263215481.74332148, "omitted": false, "sender": false}], "sum": {"start": 10.000649, "end": 11.000562, "seconds": 0.999912977218628, "bytes": 32899072, "bits_per_second": 263215481.74332148, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.000562, "end": 12.000649, "seconds": 1.000087022781372, "bytes": 32636928, "bits_per_second": 261072704.72709432, "omitted": false, "sender": false}], "sum": {"start": 11.000562, "end": 12.000649, "seconds": 1.000087022781372, "bytes": 32636928, "bits_per_second": 261072704.72709432, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.000649, "end": 13.000499, "seconds": 0.9998499751091003, "bytes": 34603008, "bits_per_second": 276865600.7315436, "omitted": false, "sender": false}], "sum": {"start": 12.000649, "end": 13.000499, "seconds": 0.9998499751091003, "bytes": 34603008, "bits_per_second": 276865600.7315436, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.000499, "end": 14.000505, "seconds": 1.0000059604644775, "bytes": 35127296, "bits_per_second": 281016693.0099837, "omitted": false, "sender": false}], "sum": {"start": 13.000499, "end": 14.000505, "seconds": 1.0000059604644775, "bytes": 35127296, "bits_per_second": 281016693.0099837, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.000505, "end": 15.000527, "seconds": 1.000022053718567, "bytes": 32636928, "bits_per_second": 261089666.00198528, "omitted": false, "sender": false}], "sum": {"start": 14.000505, "end": 15.000527, "seconds": 1.000022053718567, "bytes": 32636928, "bits_per_second": 261089666.00198528, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.000527, "end": 16.000552, "seconds": 1.0000250339508057, "bytes": 40108032, "bits_per_second": 320856223.7010802, "omitted": false, "sender": false}], "sum": {"start": 15.000527, "end": 16.000552, "seconds": 1.0000250339508057, "bytes": 40108032, "bits_per_second": 320856223.7010802, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.000552, "end": 17.000617, "seconds": 1.0000649690628052, "bytes": 32112640, "bits_per_second": 256884430.45930383, "omitted": false, "sender": false}], "sum": {"start": 16.000552, "end": 17.000617, "seconds": 1.0000649690628052, "bytes": 32112640, "bits_per_second": 256884430.45930383, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.000617, "end": 18.000643, "seconds": 1.000025987625122, "bytes": 31457280, "bits_per_second": 251651700.16995466, "omitted": false, "sender": false}], "sum": {"start": 17.000617, "end": 18.000643, "seconds": 1.000025987625122, "bytes": 31457280, "bits_per_second": 251651700.16995466, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.000643, "end": 19.000501, "seconds": 0.999858021736145, "bytes": 30146560, "bits_per_second": 241206726.11220357, "omitted": false, "sender": false}], "sum": {"start": 18.000643, "end": 19.000501, "seconds": 0.999858021736145, "bytes": 30146560, "bits_per_second": 241206726.11220357, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.000501, "end": 20.000604, "seconds": 1.0001029968261719, "bytes": 32112640, "bits_per_second": 256874662.72501534, "omitted": false, "sender": false}], "sum": {"start": 19.000501, "end": 20.000604, "seconds": 1.0001029968261719, "bytes": 32112640, "bits_per_second": 256874662.72501534, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.000604, "end": 21.000498, "seconds": 0.9998940229415894, "bytes": 34209792, "bits_per_second": 273707342.69904464, "omitted": false, "sender": false}], "sum": {"start": 20.000604, "end": 21.000498, "seconds": 0.9998940229415894, "bytes": 34209792, "bits_per_second": 273707342.69904464, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.000498, "end": 22.000525, "seconds": 1.0000269412994385, "bytes": 33816576, "bits_per_second": 270525319.69635636, "omitted": false, "sender": false}], "sum": {"start": 21.000498, "end": 22.000525, "seconds": 1.0000269412994385, "bytes": 33816576, "bits_per_second": 270525319.69635636, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.000525, "end": 23.001645, "seconds": 1.0011199712753296, "bytes": 31719424, "bits_per_second": 253471511.18835467, "omitted": false, "sender": false}], "sum": {"start": 22.000525, "end": 23.001645, "seconds": 1.0011199712753296, "bytes": 31719424, "bits_per_second": 253471511.18835467, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.001645, "end": 24.000634, "seconds": 0.9989889860153198, "bytes": 36175872, "bits_per_second": 289699866.61650926, "omitted": false, "sender": false}], "sum": {"start": 23.001645, "end": 24.000634, "seconds": 0.9989889860153198, "bytes": 36175872, "bits_per_second": 289699866.61650926, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.000634, "end": 25.000814, "seconds": 1.0001800060272217, "bytes": 36044800, "bits_per_second": 288306503.0917563, "omitted": false, "sender": false}], "sum": {"start": 24.000634, "end": 25.000814, "seconds": 1.0001800060272217, "bytes": 36044800, "bits_per_second": 288306503.0917563, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.000814, "end": 26.000611, "seconds": 0.999796986579895, "bytes": 32899072, "bits_per_second": 263246018.47453955, "omitted": false, "sender": false}], "sum": {"start": 25.000814, "end": 26.000611, "seconds": 0.999796986579895, "bytes": 32899072, "bits_per_second": 263246018.47453955, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.000611, "end": 27.000547, "seconds": 0.9999359846115112, "bytes": 36700160, "bits_per_second": 293620076.20324624, "omitted": false, "sender": false}], "sum": {"start": 26.000611, "end": 27.000547, "seconds": 0.9999359846115112, "bytes": 36700160, "bits_per_second": 293620076.20324624, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.000547, "end": 28.000587, "seconds": 1.000040054321289, "bytes": 48103424, "bits_per_second": 384811978.6173726, "omitted": false, "sender": false}], "sum": {"start": 27.000547, "end": 28.000587, "seconds": 1.000040054321289, "bytes": 48103424, "bits_per_second": 384811978.6173726, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.000587, "end": 29.000613, "seconds": 1.000025987625122, "bytes": 41156608, "bits_per_second": 329244307.72235733, "omitted": false, "sender": false}], "sum": {"start": 28.000587, "end": 29.000613, "seconds": 1.000025987625122, "bytes": 41156608, "bits_per_second": 329244307.72235733, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.000613, "end": 30.000614, "seconds": 1.0000009536743164, "bytes": 41025536, "bits_per_second": 328203975.0002985, "omitted": false, "sender": false}], "sum": {"start": 29.000613, "end": 30.000614, "seconds": 1.0000009536743164, "bytes": 41025536, "bits_per_second": 328203975.0002985, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.000614, "end": 31.000557, "seconds": 0.9999430179595947, "bytes": 39714816, "bits_per_second": 317736633.2816759, "omitted": false, "sender": false}], "sum": {"start": 30.000614, "end": 31.000557, "seconds": 0.9999430179595947, "bytes": 39714816, "bits_per_second": 317736633.2816759, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.000557, "end": 32.000593, "seconds": 1.0000360012054443, "bytes": 43122688, "bits_per_second": 344969084.6971099, "omitted": false, "sender": false}], "sum": {"start": 31.000557, "end": 32.000593, "seconds": 1.0000360012054443, "bytes": 43122688, "bits_per_second": 344969084.6971099, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.000593, "end": 33.000508, "seconds": 0.9999150037765503, "bytes": 40501248, "bits_per_second": 324037525.965963, "omitted": false, "sender": false}], "sum": {"start": 32.000593, "end": 33.000508, "seconds": 0.9999150037765503, "bytes": 40501248, "bits_per_second": 324037525.965963, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.000508, "end": 34.000483, "seconds": 0.999975025653839, "bytes": 42336256, "bits_per_second": 338698506.77375233, "omitted": false, "sender": false}], "sum": {"start": 33.000508, "end": 34.000483, "seconds": 0.999975025653839, "bytes": 42336256, "bits_per_second": 338698506.77375233, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.000483, "end": 35.000502, "seconds": 1.0000189542770386, "bytes": 46530560, "bits_per_second": 372237424.5087317, "omitted": false, "sender": false}], "sum": {"start": 34.000483, "end": 35.000502, "seconds": 1.0000189542770386, "bytes": 46530560, "bits_per_second": 372237424.5087317, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.000502, "end": 36.00051, "seconds": 1.0000079870224, "bytes": 50462720, "bits_per_second": 403698535.650753, "omitted": false, "sender": false}], "sum": {"start": 35.000502, "end": 36.00051, "seconds": 1.0000079870224, "bytes": 50462720, "bits_per_second": 403698535.650753, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.00051, "end": 37.000497, "seconds": 0.999987006187439, "bytes": 51249152, "bits_per_second": 409998543.4442238, "omitted": false, "sender": false}], "sum": {"start": 36.00051, "end": 37.000497, "seconds": 0.999987006187439, "bytes": 51249152, "bits_per_second": 409998543.4442238, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.000497, "end": 38.000536, "seconds": 1.000038981437683, "bytes": 48103424, "bits_per_second": 384812391.4597426, "omitted": false, "sender": false}], "sum": {"start": 37.000497, "end": 38.000536, "seconds": 1.000038981437683, "bytes": 48103424, "bits_per_second": 384812391.4597426, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.000536, "end": 39.000533, "seconds": 0.9999970197677612, "bytes": 51118080, "bits_per_second": 408945858.7536322, "omitted": false, "sender": false}], "sum": {"start": 38.000536, "end": 39.000533, "seconds": 0.9999970197677612, "bytes": 51118080, "bits_per_second": 408945858.7536322, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.000533, "end": 40.000587, "seconds": 1.0000540018081665, "bytes": 46137344, "bits_per_second": 369078821.076306, "omitted": false, "sender": false}], "sum": {"start": 39.000533, "end": 40.000587, "seconds": 1.0000540018081665, "bytes": 46137344, "bits_per_second": 369078821.076306, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.000587, "end": 41.000485, "seconds": 0.9998980164527893, "bytes": 38010880, "bits_per_second": 304118055.0380236, "omitted": false, "sender": false}], "sum": {"start": 40.000587, "end": 41.000485, "seconds": 0.9998980164527893, "bytes": 38010880, "bits_per_second": 304118055.0380236, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.000485, "end": 42.000583, "seconds": 1.0000979900360107, "bytes": 47579136, "bits_per_second": 380595793.40449876, "omitted": false, "sender": false}], "sum": {"start": 41.000485, "end": 42.000583, "seconds": 1.0000979900360107, "bytes": 47579136, "bits_per_second": 380595793.40449876, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.000583, "end": 43.000504, "seconds": 0.9999210238456726, "bytes": 42860544, "bits_per_second": 342911433.8263185, "omitted": false, "sender": false}], "sum": {"start": 42.000583, "end": 43.000504, "seconds": 0.9999210238456726, "bytes": 42860544, "bits_per_second": 342911433.8263185, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.000504, "end": 44.000459, "seconds": 0.9999549984931946, "bytes": 52822016, "bits_per_second": 422595145.4183125, "omitted": false, "sender": false}], "sum": {"start": 43.000504, "end": 44.000459, "seconds": 0.9999549984931946, "bytes": 52822016, "bits_per_second": 422595145.4183125, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.000459, "end": 45.000534, "seconds": 1.0000749826431274, "bytes": 47185920, "bits_per_second": 377459057.12222457, "omitted": false, "sender": false}], "sum": {"start": 44.000459, "end": 45.000534, "seconds": 1.0000749826431274, "bytes": 47185920, "bits_per_second": 377459057.12222457, "omitted": false, "sender": false}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 45.001379, "seconds": 45.001379, "bytes": 0, "bits_per_second": 0, "sender": false}, "receiver": {"socket": 5, "start": 0, "end": 45.001379, "seconds": 45.001379, "bytes": 2065039360, "bits_per_second": 367106858.6587091, "sender": false}}], "sum_sent": {"start": 0, "end": 45.001379, "seconds": 45.001379, "bytes": 0, "bits_per_second": 0, "sender": false}, "sum_received": {"start": 0, "end": 45.001379, "seconds": 45.001379, "bytes": 2065039360, "bits_per_second": 367106858.6587091, "sender": false}, "cpu_utilization_percent": {"host_total": 24.971788440334677, "host_user": 0.2690994919930457, "host_system": 24.702348963021443, "remote_total": 0, "remote_user": 0, "remote_system": 0}, "receiver_tcp_congestion": "cubic"}}}} 2026-07-04 15:41:15.159553 2026-07-04 11:58:54.193208 +192 8 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 15:42:07.498689 2026-07-04 15:42:07.498694 +193 8 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:41:13' --until '2026-07-04 15:42:05' 0 OOM records 2026-07-04 15:41:13.620591 2026-07-04 15:42:05.139119 +194 8 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:41:13' --until '2026-07-04 15:42:05' 0 systemd errors records 2026-07-04 15:41:13.620591 2026-07-04 15:42:05.139119 +223 11 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +224 11 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 16:09:26.45109 2026-07-04 16:09:26.451094 +195 8 loader /usr/bin/stress-ng --timeout 50 --cpu-method all --vm-method all --sock 0 --sock-ops 1000 --netdev 0 --syscall-method all --verify --metrics --udp 0 {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 306.61}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 1000, "real_time_secs": 13.95, "usr_time_secs": 0.87, "sys_time_secs": 21.49, "bogo_ops_s_real_time": 71.7, "bogo_ops_s_usr_sys_time": 44.72, "cpu_used_per_instance": 40.08, "rss_max_kb": 3552, "top10_slowest": null}, "1": {"stressor": "netdev", "bogo_ops": 1522800, "real_time_secs": 50.0, "usr_time_secs": 10.61, "sys_time_secs": 52.15, "bogo_ops_s_real_time": 30454.82, "bogo_ops_s_usr_sys_time": 24265.02, "cpu_used_per_instance": 31.38, "rss_max_kb": 1972, "top10_slowest": null}, "2": {"stressor": "udp", "bogo_ops": 674520, "real_time_secs": 50.0, "usr_time_secs": 7.8, "sys_time_secs": 99.74, "bogo_ops_s_real_time": 13489.79, "bogo_ops_s_usr_sys_time": 6272.23, "cpu_used_per_instance": 53.77, "rss_max_kb": 2100, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 12, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 15:42:14.710021 2026-07-04 11:58:54.193208 +196 8 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 15:43:08.659655 2026-07-04 15:43:08.659658 +197 8 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:42:13' --until '2026-07-04 15:43:06' 0 OOM records 2026-07-04 15:42:13.782644 2026-07-04 15:43:06.49456 +198 8 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:42:13' --until '2026-07-04 15:43:06' 0 systemd errors records 2026-07-04 15:42:13.782644 2026-07-04 15:43:06.49456 +199 9 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-04 11:58:54.192277 2026-07-04 11:58:54.192283 +200 9 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 15:50:38.024973 2026-07-04 15:50:38.024977 +201 9 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:50:37' --until '2026-07-04 15:50:37' 0 OOM records 2026-07-04 15:50:37.161153 2026-07-04 15:50:37.597178 +202 9 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:50:37' --until '2026-07-04 15:50:37' 0 systemd errors records 2026-07-04 15:50:37.161153 2026-07-04 15:50:37.597178 +203 9 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-04 11:58:54.192277 2026-07-04 11:58:54.192283 +204 9 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 15:50:53.179017 2026-07-04 15:50:53.179021 +205 9 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:50:38' --until '2026-07-04 15:50:52' 1 OOM records 2026-07-04 15:50:38.905588 2026-07-04 15:50:52.752601 +206 9 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:50:38' --until '2026-07-04 15:50:52' 0 systemd errors records 2026-07-04 15:50:38.905588 2026-07-04 15:50:52.752601 +207 9 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 38.51}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 36.29, "usr_time_secs": 0.39, "sys_time_secs": 1.83, "bogo_ops_s_real_time": 62.61, "bogo_ops_s_usr_sys_time": 1022.66, "cpu_used_per_instance": 1.53, "rss_max_kb": 4852, "top10_slowest": [["syslog", 607438352.5, 504786312, 710090393], ["sync", 150441237.5, 15697977, 285184498], ["execve", 19092497.5, 17559839, 20625156], ["execveat", 18958049.5, 17871749, 20044350], ["syncfs", 16821980.0, 7441802, 26202158], ["fdatasync", 12766977.5, 9159576, 16374379], ["pwritev2", 8469938.5, 8419730, 8520147], ["copy_file_range", 7904183.5, 199821, 15608546], ["fsync", 5295569.0, 3567913, 7023225], ["sendfile", 3802429.0, 445259, 7159599]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 15:50:54.220295 2026-07-04 11:58:54.192283 +208 9 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 15:51:33.134524 2026-07-04 15:51:33.134528 +209 9 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 15:50:54' --until '2026-07-04 15:51:32' 0 OOM records 2026-07-04 15:50:54.004156 2026-07-04 15:51:32.709131 +210 9 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 15:50:54' --until '2026-07-04 15:51:32' 0 systemd errors records 2026-07-04 15:50:54.004156 2026-07-04 15:51:32.709131 +211 10 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 52.424, "kernel_time": 3.74, "userspace_time": 74.71000000000001, "total_time": 130.875} 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +212 10 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 16:04:04.303531 2026-07-04 16:04:04.303535 +213 10 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:04:00' --until '2026-07-04 16:04:02' 0 OOM records 2026-07-04 16:04:00.543623 2026-07-04 16:04:02.166972 +214 10 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:04:00' --until '2026-07-04 16:04:02' 0 systemd errors records 2026-07-04 16:04:00.543623 2026-07-04 16:04:02.166972 +215 10 loader systemd-analyze critical-chain [{"service_name": "cloud-config.service", "slow_time_s": 7.318}, {"service_name": "cloud-init.service", "slow_time_s": 13.249}, {"service_name": "wicked.service", "slow_time_s": 14.412}, {"service_name": "cloud-init-local.service", "slow_time_s": 15.218}] 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +216 10 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 16:04:15.997917 2026-07-04 16:04:15.997921 +217 10 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:04:06' --until '2026-07-04 16:04:13' 0 OOM records 2026-07-04 16:04:06.631484 2026-07-04 16:04:13.326 +218 10 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:04:06' --until '2026-07-04 16:04:13' 0 systemd errors records 2026-07-04 16:04:06.631484 2026-07-04 16:04:13.326 +219 10 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 38.51}, "metrics": {"0": {"bogo_ops": 2352, "real_time_secs": 36.83, "usr_time_secs": 0.59, "sys_time_secs": 1.09, "bogo_ops_s_real_time": 63.86, "bogo_ops_s_usr_sys_time": 1400.94, "cpu_used_per_instance": 1.14, "rss_max_kb": 3584, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 16:04:19.576114 2026-07-04 11:58:54.193208 +220 10 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 16:05:02.415429 2026-07-04 16:05:02.415434 +221 10 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:04:18' --until '2026-07-04 16:05:00' 0 OOM records 2026-07-04 16:04:18.777629 2026-07-04 16:05:00.07474 +222 10 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:04:18' --until '2026-07-04 16:05:00' 0 systemd errors records 2026-07-04 16:04:18.777629 2026-07-04 16:05:00.07474 +225 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:09:00' --until '2026-07-04 16:09:26' 0 OOM records 2026-07-04 16:09:00.613414 2026-07-04 16:09:26.026502 +226 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:09:00' --until '2026-07-04 16:09:26' 1 systemd errors records 2026-07-04 16:09:00.613414 2026-07-04 16:09:26.026502 +227 11 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-04 11:58:54.193203 2026-07-04 11:58:54.193208 +228 11 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 16:10:06.243264 2026-07-04 16:10:06.243268 +229 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:09:27' --until '2026-07-04 16:10:05' 0 OOM records 2026-07-04 16:09:27.294275 2026-07-04 16:10:05.822473 +230 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:09:27' --until '2026-07-04 16:10:05' 2 systemd errors records 2026-07-04 16:09:27.294275 2026-07-04 16:10:05.822473 +231 11 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 50% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 15.81}, "metrics": {"0": {"bogo_ops": 1708, "real_time_secs": 11.04, "usr_time_secs": 1.81, "sys_time_secs": 2.96, "bogo_ops_s_real_time": 154.66, "bogo_ops_s_usr_sys_time": 358.28, "cpu_used_per_instance": 10.79, "rss_max_kb": 2088, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 16:10:21.21138 2026-07-04 11:58:54.193208 +232 11 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 60% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 15.45}, "metrics": {"0": {"bogo_ops": 1718, "real_time_secs": 11.04, "usr_time_secs": 1.62, "sys_time_secs": 2.79, "bogo_ops_s_real_time": 155.67, "bogo_ops_s_usr_sys_time": 389.81, "cpu_used_per_instance": 9.98, "rss_max_kb": 2080, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 16:10:32.742635 2026-07-04 11:58:54.193208 +233 11 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 70% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 16.6}, "metrics": {"0": {"bogo_ops": 2284, "real_time_secs": 11.05, "usr_time_secs": 1.98, "sys_time_secs": 3.57, "bogo_ops_s_real_time": 206.75, "bogo_ops_s_usr_sys_time": 411.68, "cpu_used_per_instance": 12.56, "rss_max_kb": 2208, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 16:10:44.211972 2026-07-04 11:58:54.193208 +234 11 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 80% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 16.69}, "metrics": {"0": {"bogo_ops": 2394, "real_time_secs": 11.04, "usr_time_secs": 2.07, "sys_time_secs": 3.58, "bogo_ops_s_real_time": 216.81, "bogo_ops_s_usr_sys_time": 423.24, "cpu_used_per_instance": 12.81, "rss_max_kb": 2160, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 16:10:55.6429 2026-07-04 11:58:54.193208 +235 11 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 90% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 18.71}, "metrics": {"0": {"bogo_ops": 3391, "real_time_secs": 11.06, "usr_time_secs": 2.81, "sys_time_secs": 4.84, "bogo_ops_s_real_time": 306.53, "bogo_ops_s_usr_sys_time": 443.5, "cpu_used_per_instance": 17.28, "rss_max_kb": 2136, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 16:11:07.076254 2026-07-04 11:58:54.193208 +236 11 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 16:11:18.930452 2026-07-04 16:11:18.930457 +237 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:10:07' --until '2026-07-04 16:11:18' 0 OOM records 2026-07-04 16:10:07.071178 2026-07-04 16:11:18.506627 +238 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:10:07' --until '2026-07-04 16:11:18' 0 systemd errors records 2026-07-04 16:10:07.071178 2026-07-04 16:11:18.506627 +239 11 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7945216, "io_kbytes": 7759, "bw_bytes": 1587772, "bw": 1550, "iops": 3101.119105, "runtime": 5004, "total_ios": 15518, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84396, "max": 14799638, "mean": 145526.752288, "stddev": 153765.189526, "N": 15518}, "clat_ns": {"min": 27872, "max": 171371357, "mean": 158575.46314, "stddev": 1377418.455494, "N": 15518, "percentile": {"1.000000": 28544, "5.000000": 29056, "10.000000": 30080, "20.000000": 132096, "30.000000": 136192, "40.000000": 140288, "50.000000": 142336, "60.000000": 148480, "70.000000": 164864, "80.000000": 185344, "90.000000": 209920, "95.000000": 236544, "99.000000": 305152, "99.500000": 346112, "99.900000": 749568, "99.950000": 1466368, "99.990000": 5013504}}, "lat_ns": {"min": 211493, "max": 171460963, "mean": 304102.215427, "stddev": 1386032.349898, "N": 15518}, "bw_min": 1308, "bw_max": 1659, "bw_agg": 100.0, "bw_mean": 1552.4, "bw_dev": 141.636154, "bw_samples": 5, "iops_min": 2616, "iops_max": 3319, "iops_mean": 3105.2, "iops_stddev": 283.529011, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 17.802198, "sys_cpu": 58.001998, "ctx": 15546, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 13.713107, "100": 0.251321, "250": 82.484856, "500": 3.376724, "750": 0.070885, "1000": 0.032221}, "latency_ms": {"2": 0.038665, "4": 0.012888, "10": 0.012888, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:11:22.313164 2026-07-04 11:58:54.193208 +351 12 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 80% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 15.95}, "metrics": {"0": {"bogo_ops": 2961, "real_time_secs": 11.05, "usr_time_secs": 2.31, "sys_time_secs": 2.59, "bogo_ops_s_real_time": 267.88, "bogo_ops_s_usr_sys_time": 604.01, "cpu_used_per_instance": 11.09, "rss_max_kb": 2144, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 17:09:35.595591 2026-07-04 11:58:54.192283 +352 12 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 90% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 16.32}, "metrics": {"0": {"bogo_ops": 3204, "real_time_secs": 11.04, "usr_time_secs": 2.56, "sys_time_secs": 2.72, "bogo_ops_s_real_time": 290.09, "bogo_ops_s_usr_sys_time": 607.02, "cpu_used_per_instance": 11.95, "rss_max_kb": 2016, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 17:09:48.067901 2026-07-04 11:58:54.192283 +353 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 17:10:02.969978 2026-07-04 17:10:02.969981 +240 11 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 13061632, "io_kbytes": 12755, "bw_bytes": 2611804, "bw": 2550, "iops": 5101.179764, "runtime": 5001, "total_ios": 25511, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 74662, "max": 3977695, "mean": 91525.549606, "stddev": 39932.228529, "N": 25511}, "clat_ns": {"min": 27192, "max": 3455696, "mean": 89582.901846, "stddev": 47348.609387, "N": 25511, "percentile": {"1.000000": 28800, "5.000000": 71168, "10.000000": 72192, "20.000000": 72192, "30.000000": 73216, "40.000000": 74240, "50.000000": 76288, "60.000000": 77312, "70.000000": 79360, "80.000000": 92672, "90.000000": 150528, "95.000000": 160768, "99.000000": 216064, "99.500000": 232448, "99.900000": 284672, "99.950000": 370688, "99.990000": 1236992}}, "lat_ns": {"min": 143642, "max": 4113713, "mean": 181108.451452, "stddev": 59381.991474, "N": 25511}, "bw_min": 2405, "bw_max": 2657, "bw_agg": 100.0, "bw_mean": 2552.4, "bw_dev": 92.264836, "bw_samples": 5, "iops_min": 4812, "iops_max": 5314, "iops_mean": 5105.2, "iops_stddev": 183.731326, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 29.64, "sys_cpu": 66.3, "ctx": 2388, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.736075, "100": 79.557838, "250": 17.431696, "500": 0.239113, "750": 0.01568, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:11:28.54965 2026-07-04 11:58:54.193208 +241 11 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 6628352, "io_kbytes": 6473, "bw_bytes": 1325405, "bw": 1294, "iops": 2588.682264, "runtime": 5001, "total_ios": 12946, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77197, "max": 672208, "mean": 102932.378341, "stddev": 36856.35898, "N": 12946}, "clat_ns": {"min": 27623, "max": 6706459, "mean": 263583.116638, "stddev": 210684.682268, "N": 12946, "percentile": {"1.000000": 33536, "5.000000": 75264, "10.000000": 78336, "20.000000": 81408, "30.000000": 84480, "40.000000": 99840, "50.000000": 168960, "60.000000": 423936, "70.000000": 432128, "80.000000": 440320, "90.000000": 452608, "95.000000": 473088, "99.000000": 569344, "99.500000": 708608, "99.900000": 1613824, "99.950000": 2801664, "99.990000": 6586368}}, "lat_ns": {"min": 149173, "max": 6868067, "mean": 366515.494979, "stddev": 212274.656025, "N": 12946}, "bw_min": 1264, "bw_max": 1347, "bw_agg": 99.973668, "bw_mean": 1294.8, "bw_dev": 32.081147, "bw_samples": 5, "iops_min": 2529, "iops_max": 2695, "iops_mean": 2590.4, "iops_stddev": 64.31796, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 16.72, "sys_cpu": 41.08, "ctx": 6713, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.367218, "100": 38.575622, "250": 12.976981, "500": 44.70879, "750": 1.938823, "1000": 0.247181}, "latency_ms": {"2": 0.108142, "4": 0.054071, "10": 0.023173, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:13:55.477568 2026-07-04 11:58:54.193208 +242 11 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.72}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5265408, "io_kbytes": 5142, "bw_bytes": 920686, "bw": 899, "iops": 1798.216471, "runtime": 5719, "total_ios": 10284, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93939, "max": 990488972, "mean": 497043.123687, "stddev": 9782382.385393, "N": 10284}, "clat_ns": {"min": 27372, "max": 839406, "mean": 36388.412583, "stddev": 28609.817625, "N": 10284, "percentile": {"1.000000": 28288, "5.000000": 28544, "10.000000": 28800, "20.000000": 29056, "30.000000": 29312, "40.000000": 29312, "50.000000": 29568, "60.000000": 29824, "70.000000": 30336, "80.000000": 31104, "90.000000": 37632, "95.000000": 57088, "99.000000": 185344, "99.500000": 216064, "99.900000": 272384, "99.950000": 292864, "99.990000": 403456}}, "lat_ns": {"min": 245697, "max": 990580777, "mean": 533431.53627, "stddev": 9782927.02326, "N": 10284}, "bw_min": 0, "bw_max": 1186, "bw_agg": 95.205532, "bw_mean": 856.666667, "bw_dev": 443.213117, "bw_samples": 6, "iops_min": 1, "iops_max": 2374, "iops_mean": 1714.166667, "iops_stddev": 886.415121, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 11.822315, "sys_cpu": 54.494579, "ctx": 10256, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 94.02956, "100": 1.565539, "250": 4.190976, "500": 0.204201, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:16:11.17524 2026-07-04 11:58:54.193208 +243 11 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 46678016, "io_kbytes": 45584, "bw_bytes": 9333736, "bw": 9114, "iops": 2278.744251, "runtime": 5001, "total_ios": 11396, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 133474, "max": 1369233, "mean": 172289.54993, "stddev": 57833.379576, "N": 11396}, "clat_ns": {"min": 29717, "max": 3288391, "mean": 246075.807827, "stddev": 90672.122339, "N": 11396, "percentile": {"1.000000": 32384, "5.000000": 189440, "10.000000": 193536, "20.000000": 199680, "30.000000": 207872, "40.000000": 224256, "50.000000": 236544, "60.000000": 246784, "70.000000": 257024, "80.000000": 284672, "90.000000": 313344, "95.000000": 342016, "99.000000": 456704, "99.500000": 618496, "99.900000": 1351680, "99.950000": 1499136, "99.990000": 2310144}}, "lat_ns": {"min": 298537, "max": 3440681, "mean": 418365.357757, "stddev": 100250.819117, "N": 11396}, "bw_min": 8956, "bw_max": 9420, "bw_agg": 100.0, "bw_mean": 9119.4, "bw_dev": 195.324858, "bw_samples": 5, "iops_min": 2240, "iops_max": 2355, "iops_mean": 2280.0, "iops_stddev": 48.595267, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 14.12, "sys_cpu": 48.5, "ctx": 11504, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.939277, "100": 0.078975, "250": 61.714637, "500": 35.538786, "750": 0.359775, "1000": 0.12285}, "latency_ms": {"2": 0.219375, "4": 0.026325, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:16:18.410123 2026-07-04 11:58:54.193208 +354 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 17:08:57' --until '2026-07-04 17:10:00' 0 OOM records 2026-07-04 17:08:57.312686 2026-07-04 17:10:00.821266 +355 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 17:08:57' --until '2026-07-04 17:10:00' 0 systemd errors records 2026-07-04 17:08:57.312686 2026-07-04 17:10:00.821266 +531 14 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:49:01' --until '2026-07-04 18:50:03' 0 OOM records 2026-07-04 18:49:01.854254 2026-07-04 18:50:03.435753 +783 35 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 18:21:28.503537 2026-07-13 18:21:28.503539 +244 11 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 71389184, "io_kbytes": 69716, "bw_bytes": 14274981, "bw": 13940, "iops": 3485.102979, "runtime": 5001, "total_ios": 17429, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76125, "max": 2728618, "mean": 98378.633886, "stddev": 43967.351699, "N": 17429}, "clat_ns": {"min": 26951, "max": 8500653, "mean": 172658.973607, "stddev": 510616.788565, "N": 17429, "percentile": {"1.000000": 28800, "5.000000": 71168, "10.000000": 72192, "20.000000": 73216, "30.000000": 74240, "40.000000": 76288, "50.000000": 78336, "60.000000": 82432, "70.000000": 98816, "80.000000": 146432, "90.000000": 179200, "95.000000": 382976, "99.000000": 2146304, "99.500000": 3686400, "99.900000": 7766016, "99.950000": 8028160, "99.990000": 8224768}}, "lat_ns": {"min": 142110, "max": 8580044, "mean": 271037.607493, "stddev": 512477.466888, "N": 17429}, "bw_min": 10480, "bw_max": 17233, "bw_agg": 100.0, "bw_mean": 13949.8, "bw_dev": 3036.495052, "bw_samples": 5, "iops_min": 2620, "iops_max": 4308, "iops_mean": 3487.4, "iops_stddev": 759.05619, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 21.54, "sys_cpu": 49.36, "ctx": 2830, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.558953, "100": 68.208159, "250": 22.89288, "500": 2.702393, "750": 1.049974, "1000": 0.642607}, "latency_ms": {"2": 0.545069, "4": 0.998336, "10": 0.401629, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:16:24.342309 2026-07-04 11:58:54.193208 +245 11 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 44158976, "io_kbytes": 43124, "bw_bytes": 8830029, "bw": 8623, "iops": 2155.768846, "runtime": 5001, "total_ios": 10781, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77508, "max": 785674, "mean": 103609.534923, "stddev": 37400.176245, "N": 10781}, "clat_ns": {"min": 28124, "max": 25244685, "mean": 339277.000649, "stddev": 302615.554215, "N": 10781, "percentile": {"1.000000": 73216, "5.000000": 78336, "10.000000": 80384, "20.000000": 89600, "30.000000": 197632, "40.000000": 415744, "50.000000": 423936, "60.000000": 428032, "70.000000": 436224, "80.000000": 440320, "90.000000": 460800, "95.000000": 481280, "99.000000": 618496, "99.500000": 790528, "99.900000": 1613824, "99.950000": 2932736, "99.990000": 5079040}}, "lat_ns": {"min": 144675, "max": 25469472, "mean": 442886.535572, "stddev": 304897.123849, "N": 10781}, "bw_min": 8356, "bw_max": 8884, "bw_agg": 100.0, "bw_mean": 8626.4, "bw_dev": 207.414561, "bw_samples": 5, "iops_min": 2089, "iops_max": 2221, "iops_mean": 2156.6, "iops_stddev": 51.85364, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 15.96, "sys_cpu": 32.88, "ctx": 7832, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.834802, "100": 21.472962, "250": 8.542807, "500": 65.958631, "750": 2.634264, "1000": 0.287543}, "latency_ms": {"2": 0.194787, "4": 0.055653, "10": 0.01, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:17:27.636958 2026-07-04 11:58:54.193208 +246 11 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 6.01}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 33763328, "io_kbytes": 32972, "bw_bytes": 5613188, "bw": 5481, "iops": 1370.407315, "runtime": 6015, "total_ios": 8243, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 134946, "max": 2459978, "mean": 202223.347568, "stddev": 71323.660375, "N": 8243}, "clat_ns": {"min": 29005, "max": 1971208067, "mean": 504856.910955, "stddev": 21711563.876517, "N": 8243, "percentile": {"1.000000": 34048, "5.000000": 199680, "10.000000": 207872, "20.000000": 222208, "30.000000": 234496, "40.000000": 242688, "50.000000": 250880, "60.000000": 261120, "70.000000": 280576, "80.000000": 301056, "90.000000": 329728, "95.000000": 358400, "99.000000": 452608, "99.500000": 522240, "99.900000": 782336, "99.950000": 1187840, "99.990000": 1971322880}}, "lat_ns": {"min": 321522, "max": 1971435550, "mean": 707080.258522, "stddev": 21711973.990332, "N": 8243}, "bw_min": 312, "bw_max": 8524, "bw_agg": 100.0, "bw_mean": 6593.6, "bw_dev": 3520.013182, "bw_samples": 5, "iops_min": 78, "iops_max": 2131, "iops_mean": 1648.8, "iops_stddev": 880.215144, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 9.178583, "sys_cpu": 32.258065, "ctx": 8362, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.649885, "100": 0.060658, "250": 46.208905, "500": 51.486109, "750": 0.473129, "1000": 0.048526}, "latency_ms": {"2": 0.036395, "4": 0.012132, "10": 0.0, "20": 0.0, "50": 0.012132, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.012132, ">=2000": 0.0}}} 2026-07-04 16:18:32.430309 2026-07-04 11:58:54.193208 +247 11 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.12}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 417333248, "io_kbytes": 407552, "bw_bytes": 81430877, "bw": 79522, "iops": 38.829268, "runtime": 5125, "total_ios": 199, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 611332, "max": 93427789, "mean": 1440909.889447, "stddev": 6561384.538582, "N": 199}, "clat_ns": {"min": 437652, "max": 498039092, "mean": 24261167.673367, "stddev": 70289176.074602, "N": 199, "percentile": {"1.000000": 477184, "5.000000": 561152, "10.000000": 585728, "20.000000": 618496, "30.000000": 651264, "40.000000": 675840, "50.000000": 716800, "60.000000": 782336, "70.000000": 921600, "80.000000": 1761280, "90.000000": 84410368, "95.000000": 181403648, "99.000000": 459276288, "99.500000": 497025024, "99.900000": 497025024, "99.950000": 497025024, "99.990000": 497025024}}, "lat_ns": {"min": 1223357, "max": 499380794, "mean": 25702077.562814, "stddev": 70546661.098884, "N": 199}, "bw_min": 9980, "bw_max": 288479, "bw_agg": 100.0, "bw_mean": 80993.6, "bw_dev": 117252.338805, "bw_samples": 5, "iops_min": 4, "iops_max": 140, "iops_mean": 39.0, "iops_stddev": 57.140179, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.209992, "sys_cpu": 3.142077, "ctx": 218, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 1.005025, "750": 54.773869, "1000": 16.582915}, "latency_ms": {"2": 8.542714, "4": 0.502513, "10": 1.005025, "20": 1.005025, "50": 4.020101, "100": 3.015075, "250": 7.537688, "500": 2.01005, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:18:39.667561 2026-07-04 11:58:54.193208 +407 12 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 271MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260704-174254Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260704-174254Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260704-174254Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260704-174254Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260704-174254Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-04 17:42:57.030432 2026-07-04 11:58:54.192283 +532 14 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:49:01' --until '2026-07-04 18:50:03' 0 systemd errors records 2026-07-04 18:49:01.854254 2026-07-04 18:50:03.435753 +648 23 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-12 15:07:02.289289 2026-07-12 15:07:02.289295 +649 23 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-12 15:11:44.300663 2026-07-12 15:11:44.300665 +248 11 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 287309824, "io_kbytes": 280576, "bw_bytes": 57290094, "bw": 55947, "iops": 27.318046, "runtime": 5015, "total_ios": 137, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 526140, "max": 9075558, "mean": 1076490.649635, "stddev": 718505.760303, "N": 137}, "clat_ns": {"min": 375855, "max": 73030917, "mean": 35446358.671533, "stddev": 19058958.567593, "N": 137, "percentile": {"1.000000": 387072, "5.000000": 448512, "10.000000": 561152, "20.000000": 20054016, "30.000000": 25559040, "40.000000": 30015488, "50.000000": 38535168, "60.000000": 45350912, "70.000000": 50069504, "80.000000": 51642368, "90.000000": 56885248, "95.000000": 61079552, "99.000000": 69730304, "99.500000": 72876032, "99.900000": 72876032, "99.950000": 72876032, "99.990000": 72876032}}, "lat_ns": {"min": 935549, "max": 73979020, "mean": 36522849.321168, "stddev": 19156605.358703, "N": 137}, "bw_min": 43008, "bw_max": 71751, "bw_agg": 99.609709, "bw_mean": 55729.2, "bw_dev": 12999.118843, "bw_samples": 5, "iops_min": 21, "iops_max": 35, "iops_mean": 27.2, "iops_stddev": 6.340347, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.538492, "sys_cpu": 3.570004, "ctx": 137, "majf": 0, "minf": 557, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 6.569343, "750": 5.109489, "1000": 1.459854}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 6.569343, "50": 50.364964, "100": 29.927007, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:18:46.217964 2026-07-04 11:58:54.193208 +249 11 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 201326592, "io_kbytes": 196608, "bw_bytes": 40200996, "bw": 39258, "iops": 19.169329, "runtime": 5008, "total_ios": 96, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 623456, "max": 12104579, "mean": 1250210.572917, "stddev": 1310150.905175, "N": 96}, "clat_ns": {"min": 175193, "max": 239365052, "mean": 50801530.791667, "stddev": 33899705.082319, "N": 96, "percentile": {"1.000000": 175104, "5.000000": 485376, "10.000000": 536576, "20.000000": 823296, "30.000000": 51642368, "40.000000": 61079552, "50.000000": 62652416, "60.000000": 63700992, "70.000000": 64225280, "80.000000": 64225280, "90.000000": 65798144, "95.000000": 79167488, "99.000000": 240123904, "99.500000": 240123904, "99.900000": 240123904, "99.950000": 240123904, "99.990000": 240123904}}, "lat_ns": {"min": 1238425, "max": 240618295, "mean": 52051741.364583, "stddev": 33665459.18091, "N": 96}, "bw_min": 22550, "bw_max": 51251, "bw_agg": 99.172707, "bw_mean": 38934.8, "bw_dev": 10350.381524, "bw_samples": 5, "iops_min": 11, "iops_max": 25, "iops_mean": 19.0, "iops_stddev": 5.049752, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.459357, "sys_cpu": 2.776113, "ctx": 99, "majf": 0, "minf": 559, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 1.041667, "500": 5.208333, "750": 12.5, "1000": 3.125}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 6.25, "100": 69.791667, "250": 2.083333, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:19:49.411229 2026-07-04 11:58:54.193208 +250 11 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 6.42}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 190840832, "io_kbytes": 186368, "bw_bytes": 29716728, "bw": 29020, "iops": 14.17004, "runtime": 6422, "total_ios": 91, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 627113, "max": 2440441, "mean": 979739.186813, "stddev": 281320.240228, "N": 91}, "clat_ns": {"min": 552190, "max": 3339543093, "mean": 69522008.549451, "stddev": 430818878.265394, "N": 91, "percentile": {"1.000000": 552960, "5.000000": 667648, "10.000000": 749568, "20.000000": 798720, "30.000000": 831488, "40.000000": 847872, "50.000000": 872448, "60.000000": 897024, "70.000000": 929792, "80.000000": 1155072, "90.000000": 3620864, "95.000000": 104333312, "99.000000": 3338665984, "99.500000": 3338665984, "99.900000": 3338665984, "99.950000": 3338665984, "99.990000": 3338665984}}, "lat_ns": {"min": 1398810, "max": 3340329759, "mean": 70501747.736264, "stddev": 430896184.374352, "N": 91}, "bw_min": 71680, "bw_max": 112527, "bw_agg": 100.0, "bw_mean": 92103.5, "bw_dev": 28883.190691, "bw_samples": 2, "iops_min": 35, "iops_max": 54, "iops_mean": 44.5, "iops_stddev": 13.435029, "iops_samples": 2}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.358144, "sys_cpu": 1.261289, "ctx": 105, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 8.791209, "1000": 65.934066}, "latency_ms": {"2": 12.087912, "4": 3.296703, "10": 2.197802, "20": 0.0, "50": 1.098901, "100": 0.0, "250": 4.395604, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 2.197802}}} 2026-07-04 16:20:53.832534 2026-07-04 11:58:54.193208 +251 11 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 7.25}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 167772160, "io_kbytes": 163840, "bw_bytes": 23131415, "bw": 22589, "iops": 5.514959, "runtime": 7253, "total_ios": 40, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1357632, "max": 37297095, "mean": 2869852.875, "stddev": 5600707.844689, "N": 40}, "clat_ns": {"min": 1593169, "max": 5627853834, "mean": 178294423.25, "stddev": 886085344.378348, "N": 40, "percentile": {"1.000000": 1597440, "5.000000": 1695744, "10.000000": 1892352, "20.000000": 2039808, "30.000000": 2834432, "40.000000": 5210112, "50.000000": 10551296, "60.000000": 17432576, "70.000000": 44302336, "80.000000": 57933824, "90.000000": 119013376, "95.000000": 223346688, "99.000000": 5603590144, "99.500000": 5603590144, "99.900000": 5603590144, "99.950000": 5603590144, "99.990000": 5603590144}}, "lat_ns": {"min": 3003972, "max": 5630677664, "mean": 181164276.125, "stddev": 886134275.875788, "N": 40}, "bw_min": 16384, "bw_max": 143216, "bw_agg": 100.0, "bw_mean": 79800.0, "bw_dev": 89683.767271, "bw_samples": 2, "iops_min": 4, "iops_max": 34, "iops_mean": 19.0, "iops_stddev": 21.213203, "iops_samples": 2}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.39989, "sys_cpu": 1.323773, "ctx": 51, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 15.0, "4": 22.5, "10": 7.5, "20": 17.5, "50": 10.0, "100": 12.5, "250": 10.0, "500": 2.5, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 2.5}}} 2026-07-04 16:21:01.268054 2026-07-04 11:58:54.193208 +408 12 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 271MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260704-174254Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260704-174254Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-04 17:42:57.0228 2026-07-04 11:58:54.192283 +650 23 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-12 15:11:29' --until '2026-07-12 15:11:43' 0 OOM records 2026-07-12 15:11:29.24236 2026-07-12 15:11:43.876385 +252 11 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.15}, "metrics": {"read": {"io_bytes": 192937984, "io_kbytes": 188416, "bw_bytes": 37441875, "bw": 36564, "iops": 8.926839, "runtime": 5153, "total_ios": 46, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1054545, "max": 21488224, "mean": 2096963.130435, "stddev": 3015811.854386, "N": 46}, "clat_ns": {"min": 921342, "max": 190818707, "mean": 109807482.108696, "stddev": 61537567.566682, "N": 46, "percentile": {"1.000000": 921600, "5.000000": 1253376, "10.000000": 9633792, "20.000000": 17432576, "30.000000": 87556096, "40.000000": 126353408, "50.000000": 133693440, "60.000000": 147849216, "70.000000": 152043520, "80.000000": 158334976, "90.000000": 168820736, "95.000000": 175112192, "99.000000": 189792256, "99.500000": 189792256, "99.900000": 189792256, "99.950000": 189792256, "99.990000": 189792256}}, "lat_ns": {"min": 2330933, "max": 192512608, "mean": 111904445.23913, "stddev": 62023808.044691, "N": 46}, "bw_min": 24551, "bw_max": 77901, "bw_agg": 100.0, "bw_mean": 36880.0, "bw_dev": 23023.893904, "bw_samples": 5, "iops_min": 5, "iops_max": 19, "iops_mean": 8.8, "iops_stddev": 5.761944, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.07764, "sys_cpu": 2.232143, "ctx": 48, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 2.173913}, "latency_ms": {"2": 4.347826, "4": 0.0, "10": 4.347826, "20": 10.869565, "50": 2.173913, "100": 8.695652, "250": 67.391304, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:21:09.500805 2026-07-04 11:58:54.193208 +253 11 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.06}, "metrics": {"read": {"io_bytes": 297795584, "io_kbytes": 290816, "bw_bytes": 58852882, "bw": 57473, "iops": 14.031621, "runtime": 5060, "total_ios": 71, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 946690, "max": 21125453, "mean": 1849851.338028, "stddev": 2336524.360554, "N": 71}, "clat_ns": {"min": 633455, "max": 141396764, "mean": 69279191.211268, "stddev": 46176257.518329, "N": 71, "percentile": {"1.000000": 634880, "5.000000": 815104, "10.000000": 1003520, "20.000000": 1286144, "30.000000": 36962304, "40.000000": 62652416, "50.000000": 89653248, "60.000000": 101187584, "70.000000": 105381888, "80.000000": 109576192, "90.000000": 116916224, "95.000000": 120061952, "99.000000": 141557760, "99.500000": 141557760, "99.900000": 141557760, "99.950000": 141557760, "99.990000": 141557760}}, "lat_ns": {"min": 1644087, "max": 142343454, "mean": 71129042.549296, "stddev": 45766004.155592, "N": 71}, "bw_min": 41001, "bw_max": 77824, "bw_agg": 99.696351, "bw_mean": 57299.2, "bw_dev": 15870.745279, "bw_samples": 5, "iops_min": 10, "iops_max": 19, "iops_mean": 13.8, "iops_stddev": 3.962323, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.316268, "sys_cpu": 2.945246, "ctx": 73, "majf": 0, "minf": 1070, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 4.225352, "1000": 5.633803}, "latency_ms": {"2": 12.676056, "4": 0.0, "10": 0.0, "20": 4.225352, "50": 8.450704, "100": 23.943662, "250": 40.84507, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:22:22.907483 2026-07-04 11:58:54.193208 +254 11 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-161121Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 473956352, "io_kbytes": 462848, "bw_bytes": 94639846, "bw": 92421, "iops": 22.563898, "runtime": 5008, "total_ios": 113, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1313598, "max": 23560514, "mean": 2202285.327434, "stddev": 2083310.182449, "N": 113}, "clat_ns": {"min": 78699, "max": 701164284, "mean": 42020281.40708, "stddev": 100817987.847334, "N": 113, "percentile": {"1.000000": 1155072, "5.000000": 1286144, "10.000000": 1318912, "20.000000": 1351680, "30.000000": 1433600, "40.000000": 1646592, "50.000000": 1810432, "60.000000": 2088960, "70.000000": 2801664, "80.000000": 45350912, "90.000000": 189792256, "95.000000": 242221056, "99.000000": 379584512, "99.500000": 700448768, "99.900000": 700448768, "99.950000": 700448768, "99.990000": 700448768}}, "lat_ns": {"min": 2686449, "max": 703434250, "mean": 44222566.734513, "stddev": 100896027.182422, "N": 113}, "bw_min": 8200, "bw_max": 348160, "bw_agg": 99.28618, "bw_mean": 91762.6, "bw_dev": 144247.797175, "bw_samples": 5, "iops_min": 2, "iops_max": 85, "iops_mean": 22.4, "iops_stddev": 35.217893, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.737567, "sys_cpu": 3.674855, "ctx": 135, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.884956, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 57.522124, "4": 15.929204, "10": 0.884956, "20": 1.769912, "50": 4.424779, "100": 3.539823, "250": 10.619469, "500": 3.539823, "750": 0.884956, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:23:23.398355 2026-07-04 11:58:54.193208 +255 11 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7853056, "io_kbytes": 7669, "bw_bytes": 1570297, "bw": 1533, "iops": 3066.986603, "runtime": 5001, "total_ios": 15338, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 83959, "max": 1217305, "mean": 145830.573804, "stddev": 94212.790756, "N": 15338}, "clat_ns": {"min": 28234, "max": 92527412, "mean": 162176.756096, "stddev": 1000865.979554, "N": 15338, "percentile": {"1.000000": 29056, "5.000000": 29824, "10.000000": 31104, "20.000000": 134144, "30.000000": 138240, "40.000000": 140288, "50.000000": 146432, "60.000000": 156672, "70.000000": 177152, "80.000000": 191488, "90.000000": 216064, "95.000000": 244736, "99.000000": 313344, "99.500000": 362496, "99.900000": 569344, "99.950000": 823296, "99.990000": 82313216}}, "lat_ns": {"min": 211693, "max": 92771186, "mean": 308007.3299, "stddev": 1001862.289049, "N": 15338}, "bw_min": 1451, "bw_max": 1625, "bw_agg": 99.96784, "bw_mean": 1533.8, "bw_dev": 76.88758, "bw_samples": 5, "iops_min": 2903, "iops_max": 3250, "iops_mean": 3068.0, "iops_stddev": 153.367206, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 17.56, "sys_cpu": 53.82, "ctx": 15374, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 13.639327, "100": 0.378146, "250": 81.751206, "500": 4.107446, "750": 0.065198, "1000": 0.01304}, "latency_ms": {"2": 0.026079, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.01304, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:23:40.570593 2026-07-04 11:58:54.193208 +409 12 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 271MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260704-174254Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260704-174254Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260704-174254Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260704-174254Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260704-174254Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-04 17:43:15.669386 2026-07-04 11:58:54.192283 +651 23 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-12 15:11:29' --until '2026-07-12 15:11:43' 0 systemd errors records 2026-07-12 15:11:29.24236 2026-07-12 15:11:43.876385 +256 11 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 12695040, "io_kbytes": 12397, "bw_bytes": 2538500, "bw": 2479, "iops": 4958.008398, "runtime": 5001, "total_ios": 24795, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76165, "max": 737242, "mean": 94047.929704, "stddev": 34759.884372, "N": 24795}, "clat_ns": {"min": 27582, "max": 25614389, "mean": 92572.230208, "stddev": 169960.873238, "N": 24795, "percentile": {"1.000000": 29056, "5.000000": 72192, "10.000000": 72192, "20.000000": 73216, "30.000000": 74240, "40.000000": 74240, "50.000000": 76288, "60.000000": 78336, "70.000000": 81408, "80.000000": 99840, "90.000000": 154624, "95.000000": 162816, "99.000000": 222208, "99.500000": 242688, "99.900000": 342016, "99.950000": 552960, "99.990000": 3325952}}, "lat_ns": {"min": 143022, "max": 25716724, "mean": 186620.159911, "stddev": 172799.530712, "N": 24795}, "bw_min": 2397, "bw_max": 2648, "bw_agg": 100.0, "bw_mean": 2480.2, "bw_dev": 98.029077, "bw_samples": 5, "iops_min": 4794, "iops_max": 5295, "iops_mean": 4960.4, "iops_stddev": 195.564056, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 27.6, "sys_cpu": 68.12, "ctx": 2058, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.694092, "100": 77.249445, "250": 19.653156, "500": 0.350877, "750": 0.016132, "1000": 0.024198}, "latency_ms": {"2": 0.0, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:23:46.508407 2026-07-04 11:58:54.193208 +257 11 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 6014976, "io_kbytes": 5874, "bw_bytes": 1202754, "bw": 1174, "iops": 2349.130174, "runtime": 5001, "total_ios": 11748, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79538, "max": 891001, "mean": 104231.745999, "stddev": 34520.630949, "N": 11748}, "clat_ns": {"min": 27842, "max": 6641968, "mean": 300867.970293, "stddev": 218243.205401, "N": 11748, "percentile": {"1.000000": 33024, "5.000000": 76288, "10.000000": 79360, "20.000000": 82432, "30.000000": 90624, "40.000000": 168960, "50.000000": 419840, "60.000000": 428032, "70.000000": 436224, "80.000000": 444416, "90.000000": 456704, "95.000000": 477184, "99.000000": 536576, "99.500000": 610304, "99.900000": 2342912, "99.950000": 3883008, "99.990000": 5341184}}, "lat_ns": {"min": 153171, "max": 6726757, "mean": 405099.716292, "stddev": 219489.486151, "N": 11748}, "bw_min": 1154, "bw_max": 1195, "bw_agg": 100.0, "bw_mean": 1175.0, "bw_dev": 15.049917, "bw_samples": 5, "iops_min": 2308, "iops_max": 2391, "iops_mean": 2350.2, "iops_stddev": 30.433534, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 16.56, "sys_cpu": 36.8, "ctx": 7132, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.115083, "100": 31.324481, "250": 9.831461, "500": 55.396663, "750": 1.974804, "1000": 0.093633}, "latency_ms": {"2": 0.119169, "4": 0.110657, "10": 0.034048, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:25:50.501978 2026-07-04 11:58:54.193208 +258 11 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5526528, "io_kbytes": 5397, "bw_bytes": 1105084, "bw": 1079, "iops": 2158.368326, "runtime": 5001, "total_ios": 10794, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93618, "max": 45469176, "mean": 403693.358162, "stddev": 466627.100604, "N": 10794}, "clat_ns": {"min": 27782, "max": 800356, "mean": 36345.833426, "stddev": 29381.06102, "N": 10794, "percentile": {"1.000000": 28288, "5.000000": 28544, "10.000000": 28800, "20.000000": 29056, "30.000000": 29056, "40.000000": 29312, "50.000000": 29568, "60.000000": 29824, "70.000000": 30080, "80.000000": 30848, "90.000000": 36608, "95.000000": 57600, "99.000000": 187392, "99.500000": 214016, "99.900000": 305152, "99.950000": 342016, "99.990000": 536576}}, "lat_ns": {"min": 240142, "max": 45519718, "mean": 440039.191588, "stddev": 466358.577896, "N": 10794}, "bw_min": 1002, "bw_max": 1124, "bw_agg": 99.982988, "bw_mean": 1079.6, "bw_dev": 50.147782, "bw_samples": 5, "iops_min": 2004, "iops_max": 2249, "iops_mean": 2159.6, "iops_stddev": 100.420615, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 14.48, "sys_cpu": 65.74, "ctx": 10764, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 94.042987, "100": 1.55642, "250": 4.168983, "500": 0.213081, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:27:55.783504 2026-07-04 11:58:54.193208 +259 11 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 44720128, "io_kbytes": 43672, "bw_bytes": 8942237, "bw": 8732, "iops": 2183.163367, "runtime": 5001, "total_ios": 10918, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 291712, "max": 53275913, "mean": 406248.134915, "stddev": 924510.309049, "N": 10918}, "clat_ns": {"min": 27901, "max": 955278, "mean": 34073.583349, "stddev": 21718.290977, "N": 10918, "percentile": {"1.000000": 28544, "5.000000": 28800, "10.000000": 28800, "20.000000": 29056, "30.000000": 29056, "40.000000": 29312, "50.000000": 29568, "60.000000": 29568, "70.000000": 29824, "80.000000": 30848, "90.000000": 35584, "95.000000": 46848, "99.000000": 140288, "99.500000": 158720, "99.900000": 203776, "99.950000": 234496, "99.990000": 452608}}, "lat_ns": {"min": 320284, "max": 53350056, "mean": 440321.718263, "stddev": 925784.225824, "N": 10918}, "bw_min": 7492, "bw_max": 9381, "bw_agg": 100.0, "bw_mean": 8736.8, "bw_dev": 722.907809, "bw_samples": 5, "iops_min": 1873, "iops_max": 2345, "iops_mean": 2184.2, "iops_stddev": 180.690896, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 13.66, "sys_cpu": 63.26, "ctx": 10904, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 95.38377, "100": 1.602858, "250": 2.967576, "500": 0.036637, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:28:02.318506 2026-07-04 11:58:54.193208 +410 12 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 271MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260704-174254Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260704-174254Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260704-174254Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260704-174254Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260704-174254Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-04 17:42:57.038212 2026-07-04 11:58:54.192283 +652 24 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-12 15:12:44.880883 2026-07-12 15:12:44.880888 +653 24 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-12 15:16:47.417435 2026-07-12 15:16:47.417438 +260 11 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 102940672, "io_kbytes": 100528, "bw_bytes": 20584017, "bw": 20101, "iops": 5025.394921, "runtime": 5001, "total_ios": 25132, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76151, "max": 5378134, "mean": 93586.735715, "stddev": 45450.983161, "N": 25132}, "clat_ns": {"min": 27017, "max": 3251878, "mean": 90736.472943, "stddev": 56787.597168, "N": 25132, "percentile": {"1.000000": 29312, "5.000000": 72192, "10.000000": 72192, "20.000000": 73216, "30.000000": 74240, "40.000000": 75264, "50.000000": 76288, "60.000000": 78336, "70.000000": 81408, "80.000000": 95744, "90.000000": 144384, "95.000000": 162816, "99.000000": 222208, "99.500000": 257024, "99.900000": 518144, "99.950000": 782336, "99.990000": 3194880}}, "lat_ns": {"min": 142580, "max": 5433781, "mean": 184323.208658, "stddev": 72194.676994, "N": 25132}, "bw_min": 18970, "bw_max": 21132, "bw_agg": 100.0, "bw_mean": 20113.2, "bw_dev": 777.690941, "bw_samples": 5, "iops_min": 4742, "iops_max": 5283, "iops_mean": 5028.2, "iops_stddev": 194.606526, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 27.0, "sys_cpu": 69.66, "ctx": 1624, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.172529, "100": 80.307974, "250": 16.958459, "500": 0.449626, "750": 0.051727, "1000": 0.035811}, "latency_ms": {"2": 0.01, "4": 0.019895, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:28:08.256196 2026-07-04 11:58:54.193208 +261 11 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 39145472, "io_kbytes": 38228, "bw_bytes": 7827528, "bw": 7644, "iops": 1911.017796, "runtime": 5001, "total_ios": 9557, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77508, "max": 818935, "mean": 108299.404625, "stddev": 38740.140865, "N": 9557}, "clat_ns": {"min": 28378, "max": 8710407, "mean": 394459.80904, "stddev": 309418.885724, "N": 9557, "percentile": {"1.000000": 73216, "5.000000": 78336, "10.000000": 81408, "20.000000": 87552, "30.000000": 122368, "40.000000": 207872, "50.000000": 544768, "60.000000": 561152, "70.000000": 577536, "80.000000": 593920, "90.000000": 618496, "95.000000": 643072, "99.000000": 741376, "99.500000": 856064, "99.900000": 4227072, "99.950000": 5341184, "99.990000": 8716288}}, "lat_ns": {"min": 152421, "max": 8793917, "mean": 502759.213665, "stddev": 310989.404646, "N": 9557}, "bw_min": 7400, "bw_max": 7967, "bw_agg": 100.0, "bw_mean": 7647.6, "bw_dev": 211.348764, "bw_samples": 5, "iops_min": 1850, "iops_max": 1991, "iops_mean": 1911.8, "iops_stddev": 52.57566, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 15.1, "sys_cpu": 30.2, "ctx": 6234, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.994036, "100": 24.568379, "250": 15.611594, "500": 2.521712, "750": 55.352098, "1000": 0.617349}, "latency_ms": {"2": 0.156953, "4": 0.062781, "10": 0.115099, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:29:08.554253 2026-07-04 11:58:54.193208 +262 11 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 6.74}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 35565568, "io_kbytes": 34732, "bw_bytes": 5276790, "bw": 5153, "iops": 1288.278932, "runtime": 6740, "total_ios": 8683, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 94933, "max": 2757549544, "mean": 721134.409536, "stddev": 29588786.044541, "N": 8683}, "clat_ns": {"min": 28057, "max": 1517281, "mean": 34194.799839, "stddev": 25060.288471, "N": 8683, "percentile": {"1.000000": 28544, "5.000000": 28800, "10.000000": 28800, "20.000000": 29056, "30.000000": 29312, "40.000000": 29568, "50.000000": 29568, "60.000000": 29824, "70.000000": 30080, "80.000000": 30592, "90.000000": 34560, "95.000000": 46336, "99.000000": 142336, "99.500000": 156672, "99.900000": 187392, "99.950000": 203776, "99.990000": 1515520}}, "lat_ns": {"min": 253354, "max": 2757644637, "mean": 755329.209375, "stddev": 29589451.261252, "N": 8683}, "bw_min": 4, "bw_max": 8791, "bw_agg": 100.0, "bw_mean": 6948.6, "bw_dev": 3882.705474, "bw_samples": 5, "iops_min": 1, "iops_max": 2198, "iops_mean": 1737.2, "iops_stddev": 970.706032, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 8.724036, "sys_cpu": 38.531157, "ctx": 8654, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 95.566049, "100": 1.174709, "250": 3.247725, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.011517, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:30:23.864097 2026-07-04 11:58:54.193208 +263 11 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.5}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 251658240, "io_kbytes": 245760, "bw_bytes": 45714485, "bw": 44643, "iops": 21.798365, "runtime": 5505, "total_ios": 120, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1451590, "max": 809957845, "mean": 45744737.791667, "stddev": 140724657.96447, "N": 120}, "clat_ns": {"min": 31263, "max": 2178291, "mean": 77074.166667, "stddev": 198384.881283, "N": 120, "percentile": {"1.000000": 31360, "5.000000": 32128, "10.000000": 34048, "20.000000": 36608, "30.000000": 39680, "40.000000": 44288, "50.000000": 48896, "60.000000": 50944, "70.000000": 56576, "80.000000": 66048, "90.000000": 80384, "95.000000": 162816, "99.000000": 309248, "99.500000": 2179072, "99.900000": 2179072, "99.950000": 2179072, "99.990000": 2179072}}, "lat_ns": {"min": 1483184, "max": 810025432, "mean": 45821811.958333, "stddev": 140789653.857194, "N": 120}, "bw_min": 14336, "bw_max": 141170, "bw_agg": 100.0, "bw_mean": 48723.4, "bw_dev": 53292.291401, "bw_samples": 5, "iops_min": 7, "iops_max": 68, "iops_mean": 23.6, "iops_stddev": 25.618353, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.690407, "sys_cpu": 2.252907, "ctx": 123, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 56.666667, "100": 35.0, "250": 5.833333, "500": 1.666667, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.833333, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:30:31.797057 2026-07-04 11:58:54.193208 +433 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 17:45:21' --until '2026-07-04 17:48:03' 0 OOM records 2026-07-04 17:45:21.32502 2026-07-04 17:48:03.739945 +434 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 17:45:21' --until '2026-07-04 17:48:03' 0 systemd errors records 2026-07-04 17:45:21.32502 2026-07-04 17:48:03.739945 +654 24 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-12 15:16:46' --until '2026-07-12 15:16:46' 0 OOM records 2026-07-12 15:16:46.548288 2026-07-12 15:16:46.996984 +655 24 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-12 15:16:46' --until '2026-07-12 15:16:46' 0 systemd errors records 2026-07-12 15:16:46.548288 2026-07-12 15:16:46.996984 +264 11 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 222298112, "io_kbytes": 217088, "bw_bytes": 44326642, "bw": 43287, "iops": 21.13659, "runtime": 5015, "total_ios": 106, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 508104, "max": 9155052, "mean": 1134147.462264, "stddev": 821144.639972, "N": 106}, "clat_ns": {"min": 332253, "max": 120703726, "mean": 46064809.556604, "stddev": 22889135.231512, "N": 106, "percentile": {"1.000000": 337920, "5.000000": 350208, "10.000000": 675840, "20.000000": 26869760, "30.000000": 37486592, "40.000000": 49020928, "50.000000": 51118080, "60.000000": 52166656, "70.000000": 56885248, "80.000000": 63700992, "90.000000": 67633152, "95.000000": 71827456, "99.000000": 93847552, "99.500000": 121110528, "99.900000": 121110528, "99.950000": 121110528, "99.990000": 121110528}}, "lat_ns": {"min": 884494, "max": 121456346, "mean": 47198957.018868, "stddev": 22852081.171668, "N": 106}, "bw_min": 30720, "bw_max": 55296, "bw_agg": 99.374566, "bw_mean": 43017.8, "bw_dev": 10746.830612, "bw_samples": 5, "iops_min": 15, "iops_max": 27, "iops_mean": 21.0, "iops_stddev": 5.244044, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.358923, "sys_cpu": 3.010967, "ctx": 108, "majf": 0, "minf": 559, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 8.490566, "750": 1.886792, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 1.886792, "20": 2.830189, "50": 26.415094, "100": 57.54717, "250": 0.943396, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:30:38.230334 2026-07-04 11:58:54.193208 +265 11 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.05}, "metrics": {"read": {"io_bytes": 375390208, "io_kbytes": 366592, "bw_bytes": 74290561, "bw": 72549, "iops": 35.4245, "runtime": 5053, "total_ios": 179, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 490748, "max": 15173540, "mean": 1109303.905028, "stddev": 1139701.406859, "N": 179}, "clat_ns": {"min": 264031, "max": 138405644, "mean": 27040383.642458, "stddev": 30350774.631856, "N": 179, "percentile": {"1.000000": 333824, "5.000000": 440320, "10.000000": 493568, "20.000000": 561152, "30.000000": 618496, "40.000000": 684032, "50.000000": 10813440, "60.000000": 33816576, "70.000000": 49020928, "80.000000": 61079552, "90.000000": 67633152, "95.000000": 74973184, "99.000000": 106430464, "99.500000": 137363456, "99.900000": 137363456, "99.950000": 137363456, "99.990000": 137363456}}, "lat_ns": {"min": 976097, "max": 139466016, "mean": 28149687.547486, "stddev": 30228759.009498, "N": 179}, "bw_min": 47104, "bw_max": 98205, "bw_agg": 100.0, "bw_mean": 72919.8, "bw_dev": 19057.711214, "bw_samples": 5, "iops_min": 23, "iops_max": 47, "iops_mean": 35.4, "iops_stddev": 8.988882, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.712589, "sys_cpu": 4.631829, "ctx": 172, "majf": 0, "minf": 559, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 10.055866, "750": 32.402235, "1000": 1.675978}, "latency_ms": {"2": 0.558659, "4": 0.558659, "10": 4.469274, "20": 5.027933, "50": 15.642458, "100": 28.49162, "250": 1.117318, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:31:39.119115 2026-07-04 11:58:54.193208 +266 11 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 10.99}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 327155712, "io_kbytes": 319488, "bw_bytes": 29776618, "bw": 29078, "iops": 14.198598, "runtime": 10987, "total_ios": 156, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1415243, "max": 6691928668, "mean": 70305359.333333, "stddev": 546626128.045169, "N": 156}, "clat_ns": {"min": 32715, "max": 1012017, "mean": 67864.942308, "stddev": 90756.643236, "N": 156, "percentile": {"1.000000": 33536, "5.000000": 34048, "10.000000": 34560, "20.000000": 36096, "30.000000": 39680, "40.000000": 44288, "50.000000": 47360, "60.000000": 55040, "70.000000": 62208, "80.000000": 71168, "90.000000": 93696, "95.000000": 125440, "99.000000": 448512, "99.500000": 1011712, "99.900000": 1011712, "99.950000": 1011712, "99.990000": 1011712}}, "lat_ns": {"min": 1448809, "max": 6692034587, "mean": 70373224.275641, "stddev": 546630965.688117, "N": 156}, "bw_min": 4096, "bw_max": 216871, "bw_agg": 100.0, "bw_mean": 70997.25, "bw_dev": 100336.030947, "bw_samples": 4, "iops_min": 2, "iops_max": 105, "iops_mean": 34.0, "iops_stddev": 48.778411, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.373202, "sys_cpu": 1.474604, "ctx": 156, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 51.282051, "100": 39.74359, "250": 6.410256, "500": 1.923077, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.641026, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:32:43.917021 2026-07-04 11:58:54.193208 +267 11 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 13.62}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 411041792, "io_kbytes": 401408, "bw_bytes": 30181495, "bw": 29474, "iops": 7.195829, "runtime": 13619, "total_ios": 98, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2866137, "max": 8912756623, "mean": 138807355.520408, "stddev": 900215591.619404, "N": 98}, "clat_ns": {"min": 42404, "max": 1086991, "mean": 96068.622449, "stddev": 120520.159981, "N": 98, "percentile": {"1.000000": 42240, "5.000000": 46336, "10.000000": 48896, "20.000000": 56576, "30.000000": 61696, "40.000000": 66048, "50.000000": 69120, "60.000000": 74240, "70.000000": 79360, "80.000000": 83456, "90.000000": 105984, "95.000000": 305152, "99.000000": 1089536, "99.500000": 1089536, "99.900000": 1089536, "99.950000": 1089536, "99.990000": 1089536}}, "lat_ns": {"min": 2913651, "max": 8912838544, "mean": 138903424.142857, "stddev": 900214170.785562, "N": 98}, "bw_min": 32768, "bw_max": 143360, "bw_agg": 100.0, "bw_mean": 79486.0, "bw_dev": 44727.391624, "bw_samples": 5, "iops_min": 8, "iops_max": 35, "iops_mean": 19.4, "iops_stddev": 10.922454, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.374504, "sys_cpu": 1.255691, "ctx": 103, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 13.265306, "100": 75.510204, "250": 6.122449, "500": 4.081633, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 1.020408, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:32:55.99767 2026-07-04 11:58:54.193208 +477 13 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 21658.71}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 21656.77, "usr_time_secs": 0.31, "sys_time_secs": 1.63, "bogo_ops_s_real_time": 0.1, "bogo_ops_s_usr_sys_time": 1168.19, "cpu_used_per_instance": 0.0, "rss_max_kb": 5008, "top10_slowest": [["syslog", 776824828.0, 768734224, 784915432], ["fdatasync", 30154298.5, 9282499, 51026098], ["execveat", 18691289.0, 18043414, 19339164], ["execve", 18596179.5, 18501905, 18690454], ["pwritev2", 8334000.5, 7728364, 8939637], ["sync", 6623781.0, 3962740, 9284822], ["fsync", 4756723.5, 2496742, 7016705], ["clone", 2916201.0, 1512348, 4320054], ["msync", 2335941.0, 24634, 4647248], ["fork", 1943981.5, 1201190, 2686773]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:17:26.288131 2026-07-04 18:12:49.185895 +478 13 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 18:18:04.193668 2026-07-04 18:18:04.193671 +268 11 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.08}, "metrics": {"read": {"io_bytes": 230686720, "io_kbytes": 225280, "bw_bytes": 45392900, "bw": 44329, "iops": 10.822511, "runtime": 5082, "total_ios": 55, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1197778, "max": 18123665, "mean": 2054221.0, "stddev": 2229746.768278, "N": 55}, "clat_ns": {"min": 37201244, "max": 117856802, "mean": 90213880.054545, "stddev": 19885029.3574, "N": 55, "percentile": {"1.000000": 36962304, "5.000000": 51642368, "10.000000": 52166656, "20.000000": 63700992, "30.000000": 94896128, "40.000000": 95944704, "50.000000": 98041856, "60.000000": 98041856, "70.000000": 100139008, "80.000000": 101187584, "90.000000": 103284736, "95.000000": 112721920, "99.000000": 117964800, "99.500000": 117964800, "99.900000": 117964800, "99.950000": 117964800, "99.990000": 117964800}}, "lat_ns": {"min": 39431024, "max": 119354467, "mean": 92268101.054545, "stddev": 20034418.239076, "N": 55}, "bw_min": 36864, "bw_max": 53301, "bw_agg": 99.855616, "bw_mean": 44265.4, "bw_dev": 6098.051189, "bw_samples": 5, "iops_min": 9, "iops_max": 13, "iops_mean": 10.8, "iops_stddev": 1.48324, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.295217, "sys_cpu": 2.499508, "ctx": 57, "majf": 0, "minf": 1070, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 3.636364, "100": 74.545455, "250": 21.818182, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:33:10.539823 2026-07-04 11:58:54.193208 +269 11 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 310378496, "io_kbytes": 303104, "bw_bytes": 61976536, "bw": 60523, "iops": 14.776358, "runtime": 5008, "total_ios": 74, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 977871, "max": 20624774, "mean": 1929051.459459, "stddev": 2229767.535109, "N": 74}, "clat_ns": {"min": 647365, "max": 163657082, "mean": 65621863.121622, "stddev": 52208177.223828, "N": 74, "percentile": {"1.000000": 651264, "5.000000": 831488, "10.000000": 954368, "20.000000": 1138688, "30.000000": 1433600, "40.000000": 53215232, "50.000000": 73924608, "60.000000": 100139008, "70.000000": 105381888, "80.000000": 111673344, "90.000000": 128450560, "95.000000": 141557760, "99.000000": 164626432, "99.500000": 164626432, "99.900000": 164626432, "99.950000": 164626432, "99.990000": 164626432}}, "lat_ns": {"min": 1722867, "max": 165532918, "mean": 67550914.581081, "stddev": 51909968.640606, "N": 74}, "bw_min": 49152, "bw_max": 69632, "bw_agg": 99.297863, "bw_mean": 60099.2, "bw_dev": 8291.263185, "bw_samples": 5, "iops_min": 12, "iops_max": 17, "iops_mean": 14.4, "iops_stddev": 2.073644, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.259637, "sys_cpu": 3.23547, "ctx": 78, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 1.351351, "1000": 9.459459}, "latency_ms": {"2": 20.27027, "4": 0.0, "10": 0.0, "20": 1.351351, "50": 6.756757, "100": 20.27027, "250": 40.540541, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:34:06.227687 2026-07-04 11:58:54.193208 +270 11 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-162340Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 490733568, "io_kbytes": 479232, "bw_bytes": 98127088, "bw": 95827, "iops": 23.395321, "runtime": 5001, "total_ios": 117, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2653414, "max": 625715781, "mean": 42583809.034188, "stddev": 87719314.010591, "N": 117}, "clat_ns": {"min": 36231, "max": 1647669, "mean": 85441.769231, "stddev": 158538.41942, "N": 117, "percentile": {"1.000000": 36608, "5.000000": 38144, "10.000000": 38656, "20.000000": 40704, "30.000000": 43264, "40.000000": 45312, "50.000000": 47360, "60.000000": 51968, "70.000000": 67072, "80.000000": 91648, "90.000000": 128512, "95.000000": 211968, "99.000000": 448512, "99.500000": 1646592, "99.900000": 1646592, "99.950000": 1646592, "99.990000": 1646592}}, "lat_ns": {"min": 2689645, "max": 626162263, "mean": 42669250.803419, "stddev": 87779470.668363, "N": 117}, "bw_min": 16400, "bw_max": 392823, "bw_agg": 99.936099, "bw_mean": 95766.0, "bw_dev": 166094.398856, "bw_samples": 5, "iops_min": 4, "iops_max": 95, "iops_mean": 23.0, "iops_stddev": 40.255434, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.9, "sys_cpu": 3.8, "ctx": 119, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 56.410256, "100": 27.350427, "250": 12.820513, "500": 2.564103, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.854701, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:35:04.725044 2026-07-04 11:58:54.193208 +271 11 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7150592, "io_kbytes": 6983, "bw_bytes": 1429832, "bw": 1396, "iops": 2792.641472, "runtime": 5001, "total_ios": 13966, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84355, "max": 101856030, "mean": 159708.146355, "stddev": 870172.659715, "N": 13966}, "clat_ns": {"min": 28024, "max": 79897745, "mean": 179476.003867, "stddev": 868848.303087, "N": 13966, "percentile": {"1.000000": 29312, "5.000000": 30080, "10.000000": 31360, "20.000000": 134144, "30.000000": 138240, "40.000000": 142336, "50.000000": 146432, "60.000000": 158720, "70.000000": 179200, "80.000000": 195584, "90.000000": 222208, "95.000000": 254976, "99.000000": 354304, "99.500000": 415744, "99.900000": 8716288, "99.950000": 12386304, "99.990000": 34340864}}, "lat_ns": {"min": 205752, "max": 101940726, "mean": 339184.150222, "stddev": 1225969.86712, "N": 13966}, "bw_min": 1045, "bw_max": 1619, "bw_agg": 99.97706, "bw_mean": 1396.8, "bw_dev": 246.043086, "bw_samples": 5, "iops_min": 2091, "iops_max": 3239, "iops_mean": 2794.4, "iops_stddev": 491.978455, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 17.62, "sys_cpu": 52.16, "ctx": 14011, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 13.633109, "100": 0.422455, "250": 80.52413, "500": 5.126736, "750": 0.050122, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.021481, "10": 0.143205, "20": 0.050122, "50": 0.01432, "100": 0.01, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:35:15.772242 2026-07-04 11:58:54.193208 +479 13 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:17:26' --until '2026-07-04 18:18:03' 0 OOM records 2026-07-04 18:17:26.071318 2026-07-04 18:18:03.767377 +480 13 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:17:26' --until '2026-07-04 18:18:03' 0 systemd errors records 2026-07-04 18:17:26.071318 2026-07-04 18:18:03.767377 +481 13 loader /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-04_18:18:07.json {"tool": "kirk", "test_type": {}, "time": {"duration_sec": 14.66}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abo6CJB9S as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15090465545654297}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09603381156921387}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accNiHY8b as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 55347\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11028885841369629}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10877585411071777}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 33081\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42465\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 35811\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11670112609863281}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accVdcSZY as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5440194606781006}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acccnZi1v as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2724437713623047}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11168479919433594}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc8oyqb8 as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc8oyqb8/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14101934432983398}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accySRj2q as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accySRj2q/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15813255310058594}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accNbOBGV as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.19651198387146}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11629652976989746}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09268856048583984}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12457704544067383}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09840536117553711}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.6137142181396484}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09817242622375488}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10953116416931152}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10073971748352051}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.103485107421875}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09900665283203125}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0958898067474365}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0942084789276123}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1114890575408936}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08748149871826172}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bingpbmPv as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1003715991973877}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15156769752502441}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binPPcoa5 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0944058895111084}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin9YuYdB as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.22725462913513184}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binFLsY2Y as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1367647647857666}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "36": {"test": "bpf_prog05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "37": {"test": "bpf_prog06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "38": {"test": "bpf_prog07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "39": {"test": "brk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "40": {"test": "brk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "41": {"test": "capget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "42": {"test": "capget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "43": {"test": "capset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "44": {"test": "capset02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "45": {"test": "capset03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "46": {"test": "capset04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "47": {"test": "cacheflush01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "48": {"test": "cachestat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "49": {"test": "cachestat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "50": {"test": "cachestat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "51": {"test": "cachestat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "52": {"test": "chdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "53": {"test": "chdir01A", "status": "pass", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0}, "54": {"test": "chdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "55": {"test": "chmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "56": {"test": "chmod01A", "status": "pass", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0}, "57": {"test": "chmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "58": {"test": "chmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "59": {"test": "chmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "60": {"test": "chmod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "61": {"test": "chmod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "62": {"test": "chmod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "63": {"test": "chown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "64": {"test": "chown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "65": {"test": "chown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "66": {"test": "chown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "67": {"test": "chown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "68": {"test": "chown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "69": {"test": "chown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "70": {"test": "chown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "71": {"test": "chown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "72": {"test": "chown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "73": {"test": "chroot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "74": {"test": "chroot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "75": {"test": "chroot03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "76": {"test": "chroot04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "77": {"test": "clock_adjtime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "78": {"test": "clock_adjtime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "79": {"test": "clock_getres01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "80": {"test": "clock_nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "81": {"test": "clock_nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "82": {"test": "clock_nanosleep03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "83": {"test": "clock_nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "84": {"test": "clock_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "85": {"test": "clock_gettime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "86": {"test": "clock_gettime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "87": {"test": "clock_gettime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "88": {"test": "leapsec01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "89": {"test": "clock_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "90": {"test": "clock_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "91": {"test": "clock_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "92": {"test": "clone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "93": {"test": "clone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "94": {"test": "clone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "95": {"test": "clone04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "96": {"test": "clone05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "97": {"test": "clone06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "98": {"test": "clone07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "99": {"test": "clone08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "100": {"test": "clone09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "101": {"test": "clone301", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "102": {"test": "clone302", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "103": {"test": "clone303", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "104": {"test": "close01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "105": {"test": "close02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "106": {"test": "close_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "107": {"test": "close_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "108": {"test": "confstr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "109": {"test": "connect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "110": {"test": "connect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "111": {"test": "creat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "112": {"test": "creat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "113": {"test": "creat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "114": {"test": "creat05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "115": {"test": "creat06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "116": {"test": "creat07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "117": {"test": "creat08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "118": {"test": "creat09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "119": {"test": "delete_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "120": {"test": "delete_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "121": {"test": "delete_module03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "122": {"test": "dup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "123": {"test": "dup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "124": {"test": "dup03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "125": {"test": "dup04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "126": {"test": "dup05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "127": {"test": "dup06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "128": {"test": "dup07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "129": {"test": "dup201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "130": {"test": "dup202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "131": {"test": "dup203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "132": {"test": "dup204", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "133": {"test": "dup205", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "134": {"test": "dup206", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "135": {"test": "dup207", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "136": {"test": "dup3_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "137": {"test": "dup3_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "138": {"test": "epoll_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "139": {"test": "epoll_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "140": {"test": "epoll_create1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "141": {"test": "epoll_create1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "142": {"test": "epoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "143": {"test": "epoll_ctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "144": {"test": "epoll_ctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "145": {"test": "epoll_ctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "146": {"test": "epoll_ctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "147": {"test": "epoll_ctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "148": {"test": "epoll_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "149": {"test": "epoll_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "150": {"test": "epoll_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "151": {"test": "epoll_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "152": {"test": "epoll_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "153": {"test": "epoll_wait06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "154": {"test": "epoll_wait07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "155": {"test": "epoll_pwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "156": {"test": "epoll_pwait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "157": {"test": "epoll_pwait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "158": {"test": "epoll_pwait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "159": {"test": "epoll_pwait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "160": {"test": "eventfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "161": {"test": "eventfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "162": {"test": "eventfd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "163": {"test": "eventfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "164": {"test": "eventfd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "165": {"test": "eventfd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "166": {"test": "eventfd2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "167": {"test": "eventfd2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "168": {"test": "eventfd2_03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "169": {"test": "execl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "170": {"test": "execle01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "171": {"test": "execlp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "172": {"test": "execv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "173": {"test": "execve01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "174": {"test": "execve02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "175": {"test": "execve03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "176": {"test": "execve04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "177": {"test": "execve05", "status": "pass", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0}, "178": {"test": "execve06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "179": {"test": "execvp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "180": {"test": "execveat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "181": {"test": "execveat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "182": {"test": "execveat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "183": {"test": "exit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "184": {"test": "exit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "185": {"test": "exit_group01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "186": {"test": "faccessat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "187": {"test": "faccessat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "188": {"test": "faccessat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "189": {"test": "faccessat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "190": {"test": "fallocate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "191": {"test": "fallocate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "192": {"test": "fallocate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "193": {"test": "fallocate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "194": {"test": "fallocate05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "195": {"test": "fallocate06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "196": {"test": "fsetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "197": {"test": "fsetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "198": {"test": "posix_fadvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "199": {"test": "posix_fadvise01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "200": {"test": "posix_fadvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "201": {"test": "posix_fadvise02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "202": {"test": "posix_fadvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "203": {"test": "posix_fadvise03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "204": {"test": "posix_fadvise04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "205": {"test": "posix_fadvise04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "206": {"test": "fchdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "207": {"test": "fchdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "208": {"test": "fchdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "209": {"test": "fchmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "210": {"test": "fchmod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "211": {"test": "fchmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "212": {"test": "fchmod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "213": {"test": "fchmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "214": {"test": "fchmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "215": {"test": "fchmodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "216": {"test": "fchmodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "217": {"test": "fchmodat2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "218": {"test": "fchmodat2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "219": {"test": "fchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "220": {"test": "fchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "221": {"test": "fchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "222": {"test": "fchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "223": {"test": "fchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "224": {"test": "fchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "225": {"test": "fchown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "226": {"test": "fchown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "227": {"test": "fchown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "228": {"test": "fchown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "229": {"test": "fchownat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "230": {"test": "fchownat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "231": {"test": "fcntl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "232": {"test": "fcntl01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "233": {"test": "fcntl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "234": {"test": "fcntl02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "235": {"test": "fcntl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "236": {"test": "fcntl03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "237": {"test": "fcntl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "238": {"test": "fcntl04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "239": {"test": "fcntl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "240": {"test": "fcntl05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "241": {"test": "fcntl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "242": {"test": "fcntl07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "243": {"test": "fcntl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "244": {"test": "fcntl08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "245": {"test": "fcntl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "246": {"test": "fcntl09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "247": {"test": "fcntl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "248": {"test": "fcntl10_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "249": {"test": "fcntl11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "250": {"test": "fcntl11_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "251": {"test": "fcntl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "252": {"test": "fcntl12_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "253": {"test": "fcntl13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "254": {"test": "fcntl13_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "255": {"test": "fcntl14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "256": {"test": "fcntl14_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "257": {"test": "fcntl15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "258": {"test": "fcntl15_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "259": {"test": "fcntl16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "260": {"test": "fcntl16_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "261": {"test": "fcntl17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "262": {"test": "fcntl17_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "263": {"test": "fcntl18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "264": {"test": "fcntl18_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "265": {"test": "fcntl19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "266": {"test": "fcntl19_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "267": {"test": "fcntl20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "268": {"test": "fcntl20_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "269": {"test": "fcntl21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "270": {"test": "fcntl21_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "271": {"test": "fcntl22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "272": {"test": "fcntl22_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "273": {"test": "fcntl23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "274": {"test": "fcntl23_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "275": {"test": "fcntl24", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "276": {"test": "fcntl24_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "277": {"test": "fcntl25", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "278": {"test": "fcntl25_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "279": {"test": "fcntl26", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "280": {"test": "fcntl26_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "281": {"test": "fcntl27", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "282": {"test": "fcntl27_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "283": {"test": "fcntl29", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "284": {"test": "fcntl29_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "285": {"test": "fcntl30", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "286": {"test": "fcntl30_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "287": {"test": "fcntl31", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "288": {"test": "fcntl31_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "289": {"test": "fcntl32", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "290": {"test": "fcntl32_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "291": {"test": "fcntl33", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "292": {"test": "fcntl33_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "293": {"test": "fcntl34", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "294": {"test": "fcntl34_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "295": {"test": "fcntl35", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "296": {"test": "fcntl35_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "297": {"test": "fcntl36", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "298": {"test": "fcntl36_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "299": {"test": "fcntl37", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "300": {"test": "fcntl37_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "301": {"test": "fcntl38", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "302": {"test": "fcntl38_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "303": {"test": "fcntl39", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "304": {"test": "fcntl39_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "305": {"test": "fdatasync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "306": {"test": "fdatasync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "307": {"test": "fdatasync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "308": {"test": "fgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "309": {"test": "fgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "310": {"test": "fgetxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "311": {"test": "finit_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "312": {"test": "finit_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "313": {"test": "flistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "314": {"test": "flistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "315": {"test": "flistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "316": {"test": "flock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "317": {"test": "flock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "318": {"test": "flock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "319": {"test": "flock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "320": {"test": "flock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "321": {"test": "fmtmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "322": {"test": "fork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "323": {"test": "fork03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "324": {"test": "fork04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "325": {"test": "fork05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "326": {"test": "fork06", "status": "pass", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0}, "327": {"test": "fork07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "328": {"test": "fork08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "329": {"test": "fork09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "330": {"test": "fork10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "331": {"test": "fork11", "status": "pass", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0}, "332": {"test": "fork13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "333": {"test": "fork14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "334": {"test": "fpathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "335": {"test": "fremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "336": {"test": "fremovexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "337": {"test": "fsconfig01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "338": {"test": "fsconfig02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "339": {"test": "fsconfig03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "340": {"test": "fsmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "341": {"test": "fsmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "342": {"test": "fsopen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "343": {"test": "fsopen02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "344": {"test": "fspick01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "345": {"test": "fspick02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "346": {"test": "fstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "347": {"test": "fstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "348": {"test": "fstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "349": {"test": "fstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "350": {"test": "fstatat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "351": {"test": "fstatfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "352": {"test": "fstatfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "353": {"test": "fstatfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "354": {"test": "fstatfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "355": {"test": "fsync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "356": {"test": "fsync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "357": {"test": "fsync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "358": {"test": "fsync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "359": {"test": "ftruncate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "360": {"test": "ftruncate01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "361": {"test": "ftruncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "362": {"test": "ftruncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "363": {"test": "ftruncate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "364": {"test": "ftruncate04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "365": {"test": "futimesat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "366": {"test": "getcontext01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "367": {"test": "getcpu01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "368": {"test": "getcpu02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "369": {"test": "getcwd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "370": {"test": "getcwd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "371": {"test": "getcwd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "372": {"test": "getcwd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "373": {"test": "getdents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "374": {"test": "getdents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "375": {"test": "getdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "376": {"test": "getegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "377": {"test": "getegid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "378": {"test": "getegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "379": {"test": "getegid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "380": {"test": "geteuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "381": {"test": "geteuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "382": {"test": "geteuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "383": {"test": "geteuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "384": {"test": "getgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "385": {"test": "getgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "386": {"test": "getgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "387": {"test": "getgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "388": {"test": "getgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "389": {"test": "getgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "390": {"test": "getgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "391": {"test": "getgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "392": {"test": "gethostbyname_r01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "393": {"test": "gethostid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "394": {"test": "gethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "395": {"test": "gethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "396": {"test": "getitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "397": {"test": "getitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "398": {"test": "getpagesize01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "399": {"test": "getpeername01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "400": {"test": "getpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "401": {"test": "getpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "402": {"test": "getpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "403": {"test": "getpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "404": {"test": "getpid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "405": {"test": "getppid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "406": {"test": "getppid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "407": {"test": "getpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "408": {"test": "getpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "409": {"test": "getrandom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "410": {"test": "getrandom02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "411": {"test": "getrandom03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "412": {"test": "getrandom04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "413": {"test": "getrandom05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "414": {"test": "getresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "415": {"test": "getresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "416": {"test": "getresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "417": {"test": "getresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "418": {"test": "getresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "419": {"test": "getresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "420": {"test": "getresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "421": {"test": "getresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "422": {"test": "getresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "423": {"test": "getresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "424": {"test": "getresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "425": {"test": "getresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "426": {"test": "getrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "427": {"test": "getrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "428": {"test": "getrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "429": {"test": "get_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "430": {"test": "get_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "431": {"test": "get_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "432": {"test": "getrusage01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "433": {"test": "getrusage02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "434": {"test": "getrusage03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "435": {"test": "getrusage04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "436": {"test": "getsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "437": {"test": "getsid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "438": {"test": "getsockname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "439": {"test": "getsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "440": {"test": "getsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "441": {"test": "gettid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "442": {"test": "gettid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "443": {"test": "gettimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "444": {"test": "gettimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "445": {"test": "getuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "446": {"test": "getuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "447": {"test": "getuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "448": {"test": "getuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "449": {"test": "getxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "450": {"test": "getxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "451": {"test": "getxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "452": {"test": "getxattr04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "453": {"test": "getxattr05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "454": {"test": "init_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "455": {"test": "init_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "456": {"test": "ioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "457": {"test": "ioctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "458": {"test": "ioctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "459": {"test": "ioctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "460": {"test": "ioctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "461": {"test": "ioctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "462": {"test": "ioctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "463": {"test": "ioctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "464": {"test": "ioctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "465": {"test": "ioctl_loop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "466": {"test": "ioctl_loop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "467": {"test": "ioctl_loop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "468": {"test": "ioctl_loop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "469": {"test": "ioctl_loop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "470": {"test": "ioctl_loop06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "471": {"test": "ioctl_loop07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "472": {"test": "ioctl_ns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "473": {"test": "ioctl_ns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "474": {"test": "ioctl_ns03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "475": {"test": "ioctl_ns04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "476": {"test": "ioctl_ns05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "477": {"test": "ioctl_ns06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "478": {"test": "ioctl_ns07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "479": {"test": "ioctl_sg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "480": {"test": "ioctl_ficlone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "481": {"test": "ioctl_ficlone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "482": {"test": "ioctl_ficlone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "483": {"test": "ioctl_ficlonerange01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "484": {"test": "ioctl_ficlonerange02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "485": {"test": "inotify_init1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "486": {"test": "inotify_init1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "487": {"test": "inotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "488": {"test": "inotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "489": {"test": "inotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "490": {"test": "inotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "491": {"test": "inotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "492": {"test": "inotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "493": {"test": "inotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "494": {"test": "inotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "495": {"test": "inotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "496": {"test": "inotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "497": {"test": "inotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "498": {"test": "inotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "499": {"test": "fanotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "500": {"test": "fanotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "501": {"test": "fanotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "502": {"test": "fanotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "503": {"test": "fanotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "504": {"test": "fanotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "505": {"test": "fanotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "506": {"test": "fanotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "507": {"test": "fanotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "508": {"test": "fanotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "509": {"test": "fanotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "510": {"test": "fanotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "511": {"test": "fanotify13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "512": {"test": "fanotify14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "513": {"test": "fanotify15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "514": {"test": "fanotify16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "515": {"test": "fanotify17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "516": {"test": "fanotify18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "517": {"test": "fanotify19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "518": {"test": "fanotify20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "519": {"test": "fanotify21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "520": {"test": "fanotify22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "521": {"test": "fanotify23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "522": {"test": "ioperm01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "523": {"test": "ioperm02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "524": {"test": "iopl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "525": {"test": "iopl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "526": {"test": "ioprio_get01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "527": {"test": "ioprio_set01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "528": {"test": "ioprio_set02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "529": {"test": "ioprio_set03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "530": {"test": "io_cancel01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "531": {"test": "io_cancel02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "532": {"test": "io_destroy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "533": {"test": "io_destroy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "534": {"test": "io_getevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "535": {"test": "io_getevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "536": {"test": "io_pgetevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "537": {"test": "io_pgetevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "538": {"test": "io_setup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "539": {"test": "io_setup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "540": {"test": "io_submit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "541": {"test": "io_submit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "542": {"test": "io_submit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "543": {"test": "keyctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "544": {"test": "keyctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "545": {"test": "keyctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "546": {"test": "keyctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "547": {"test": "keyctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "548": {"test": "keyctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "549": {"test": "keyctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "550": {"test": "keyctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "551": {"test": "keyctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "552": {"test": "kcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "553": {"test": "kcmp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "554": {"test": "kcmp03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "555": {"test": "kill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "556": {"test": "kill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "557": {"test": "kill05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "558": {"test": "kill06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "559": {"test": "kill07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "560": {"test": "kill08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "561": {"test": "kill09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "562": {"test": "kill10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "563": {"test": "kill11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "564": {"test": "kill12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "565": {"test": "kill13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "566": {"test": "landlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "567": {"test": "landlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "568": {"test": "landlock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "569": {"test": "landlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "570": {"test": "landlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "571": {"test": "landlock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "572": {"test": "landlock07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "573": {"test": "landlock08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "574": {"test": "lchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "575": {"test": "lchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "576": {"test": "lchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "577": {"test": "lchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "578": {"test": "lchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "579": {"test": "lchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "580": {"test": "lgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "581": {"test": "lgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "582": {"test": "link01", "status": "pass", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0}, "583": {"test": "link02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "584": {"test": "link04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "585": {"test": "link05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "586": {"test": "link08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "587": {"test": "linkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "588": {"test": "linkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "589": {"test": "listen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "590": {"test": "listmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "591": {"test": "listmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "592": {"test": "listmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "593": {"test": "listmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "594": {"test": "listxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "595": {"test": "listxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "596": {"test": "listxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "597": {"test": "llistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "598": {"test": "llistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "599": {"test": "llistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "600": {"test": "llseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "601": {"test": "llseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "602": {"test": "llseek03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "603": {"test": "lremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "604": {"test": "lseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "605": {"test": "lseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "606": {"test": "lseek07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "607": {"test": "lseek11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "608": {"test": "lstat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "609": {"test": "lstat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "610": {"test": "lstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "611": {"test": "lstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "612": {"test": "lstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "613": {"test": "lstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "614": {"test": "mallinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "615": {"test": "mallinfo2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "616": {"test": "mallopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "617": {"test": "mbind01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "618": {"test": "mbind02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "619": {"test": "mbind03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "620": {"test": "mbind04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "621": {"test": "memset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "622": {"test": "memcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "623": {"test": "memcpy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "624": {"test": "migrate_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "625": {"test": "migrate_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "626": {"test": "migrate_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "627": {"test": "mlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "628": {"test": "mlockall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "629": {"test": "mlockall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "630": {"test": "mkdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "631": {"test": "mkdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "632": {"test": "mkdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "633": {"test": "mkdir05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "634": {"test": "mkdir09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "635": {"test": "mkdirat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "636": {"test": "mkdirat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "637": {"test": "mknod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "638": {"test": "mknod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "639": {"test": "mknod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "640": {"test": "mknod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "641": {"test": "mknod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "642": {"test": "mknod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "643": {"test": "mknod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "644": {"test": "mknod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "645": {"test": "mknod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "646": {"test": "mknodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "647": {"test": "mknodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "648": {"test": "mlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "649": {"test": "mlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "650": {"test": "mlock03", "status": "pass", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0}, "651": {"test": "mlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "652": {"test": "mlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "653": {"test": "mlock201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "654": {"test": "mlock202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "655": {"test": "mlock203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "656": {"test": "qmm01", "status": "pass", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0}, "657": {"test": "mmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "658": {"test": "mmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "659": {"test": "mmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "660": {"test": "mmap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "661": {"test": "mmap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "662": {"test": "mmap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "663": {"test": "mmap08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "664": {"test": "mmap09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "665": {"test": "mmap12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "666": {"test": "mmap13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "667": {"test": "mmap14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "668": {"test": "mmap15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "669": {"test": "mmap16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "670": {"test": "mmap17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "671": {"test": "mmap18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "672": {"test": "mmap19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "673": {"test": "mmap20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "674": {"test": "modify_ldt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "675": {"test": "modify_ldt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "676": {"test": "modify_ldt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "677": {"test": "mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "678": {"test": "mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "679": {"test": "mount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "680": {"test": "mount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "681": {"test": "mount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "682": {"test": "mount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "683": {"test": "mount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "684": {"test": "mount_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "685": {"test": "move_mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "686": {"test": "move_mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "687": {"test": "move_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "688": {"test": "move_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "689": {"test": "move_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "690": {"test": "move_pages04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "691": {"test": "move_pages05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "692": {"test": "move_pages06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "693": {"test": "move_pages07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "694": {"test": "move_pages09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "695": {"test": "move_pages10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "696": {"test": "move_pages11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "697": {"test": "move_pages12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "698": {"test": "mprotect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "699": {"test": "mprotect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "700": {"test": "mprotect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "701": {"test": "mprotect04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "702": {"test": "mprotect05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "703": {"test": "pkey01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "704": {"test": "mq_notify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "705": {"test": "mq_notify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "706": {"test": "mq_notify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "707": {"test": "mq_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "708": {"test": "mq_timedreceive01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "709": {"test": "mq_timedsend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "710": {"test": "mq_unlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "711": {"test": "mremap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "712": {"test": "mremap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "713": {"test": "mremap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "714": {"test": "mremap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "715": {"test": "mremap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "716": {"test": "mremap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "717": {"test": "mseal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "718": {"test": "mseal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "719": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "720": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "721": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "722": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "723": {"test": "msgctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "724": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "725": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "726": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "727": {"test": "msgget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "728": {"test": "msgget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "729": {"test": "msgget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "730": {"test": "msgget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "731": {"test": "msgget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "732": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "733": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "734": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "735": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "736": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "737": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "738": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "739": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "740": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "741": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "742": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "743": {"test": "msync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "744": {"test": "msync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "745": {"test": "msync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "746": {"test": "msync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "747": {"test": "munlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "748": {"test": "munlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "749": {"test": "munlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "750": {"test": "munmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "751": {"test": "munmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "752": {"test": "munmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "753": {"test": "nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "754": {"test": "nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "755": {"test": "nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "756": {"test": "name_to_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "757": {"test": "name_to_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "758": {"test": "nftw01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "759": {"test": "nftw6401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "760": {"test": "nice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "761": {"test": "nice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "762": {"test": "nice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "763": {"test": "nice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "764": {"test": "nice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "765": {"test": "open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "766": {"test": "open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "767": {"test": "open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "768": {"test": "open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "769": {"test": "open06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "770": {"test": "open07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "771": {"test": "open08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "772": {"test": "open09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "773": {"test": "open10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "774": {"test": "open11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "775": {"test": "open12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "776": {"test": "open13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "777": {"test": "open14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "778": {"test": "open15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "779": {"test": "openat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "780": {"test": "openat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "781": {"test": "openat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "782": {"test": "openat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "783": {"test": "openat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "784": {"test": "openat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "785": {"test": "openat203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "786": {"test": "open_by_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "787": {"test": "open_by_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "788": {"test": "open_tree01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "789": {"test": "open_tree02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "790": {"test": "mincore01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "791": {"test": "mincore02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "792": {"test": "mincore03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "793": {"test": "mincore04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "794": {"test": "madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "795": {"test": "madvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "796": {"test": "madvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "797": {"test": "madvise05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "798": {"test": "madvise06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "799": {"test": "madvise07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "800": {"test": "madvise08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "801": {"test": "madvise09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "802": {"test": "madvise10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "803": {"test": "madvise11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "804": {"test": "madvise12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "805": {"test": "newuname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "806": {"test": "pathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "807": {"test": "pathconf02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "808": {"test": "pause01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "809": {"test": "pause02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "810": {"test": "pause03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "811": {"test": "personality01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "812": {"test": "personality02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "813": {"test": "pidfd_getfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "814": {"test": "pidfd_getfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "815": {"test": "pidfd_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "816": {"test": "pidfd_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "817": {"test": "pidfd_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "818": {"test": "pidfd_open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "819": {"test": "pidfd_send_signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "820": {"test": "pidfd_send_signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "821": {"test": "pidfd_send_signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "822": {"test": "pipe01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "823": {"test": "pipe02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "824": {"test": "pipe03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "825": {"test": "pipe04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "826": {"test": "pipe05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "827": {"test": "pipe06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "828": {"test": "pipe07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "829": {"test": "pipe08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "830": {"test": "pipe09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "831": {"test": "pipe10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "832": {"test": "pipe11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "833": {"test": "pipe12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "834": {"test": "pipe13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "835": {"test": "pipe14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "836": {"test": "pipe15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "837": {"test": "pipe2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "838": {"test": "pipe2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "839": {"test": "pipe2_04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "840": {"test": "pivot_root01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "841": {"test": "poll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "842": {"test": "poll02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "843": {"test": "ppoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "844": {"test": "prctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "845": {"test": "prctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "846": {"test": "prctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "847": {"test": "prctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "848": {"test": "prctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "849": {"test": "prctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "850": {"test": "prctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "851": {"test": "prctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "852": {"test": "prctl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "853": {"test": "pread01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "854": {"test": "pread01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "855": {"test": "pread02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "856": {"test": "pread02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "857": {"test": "preadv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "858": {"test": "preadv01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "859": {"test": "preadv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "860": {"test": "preadv02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "861": {"test": "preadv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "862": {"test": "preadv03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "863": {"test": "preadv201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "864": {"test": "preadv201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "865": {"test": "preadv202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "866": {"test": "preadv202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "867": {"test": "preadv203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "868": {"test": "preadv203_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "869": {"test": "profil01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "870": {"test": "process_vm_readv01", "status": "pass", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0}, "871": {"test": "process_vm_readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "872": {"test": "process_vm_readv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "873": {"test": "process_vm_writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "874": {"test": "process_vm_writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "875": {"test": "process_madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "876": {"test": "prot_hsymlinks", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "877": {"test": "dirtyc0w", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "878": {"test": "dirtyc0w_shmem", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "879": {"test": "dirtypipe", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "880": {"test": "pselect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "881": {"test": "pselect01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "882": {"test": "pselect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "883": {"test": "pselect02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "884": {"test": "pselect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "885": {"test": "pselect03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "886": {"test": "ptrace01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "887": {"test": "ptrace02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "888": {"test": "ptrace03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "889": {"test": "ptrace04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "890": {"test": "ptrace05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "891": {"test": "ptrace06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "892": {"test": "ptrace07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "893": {"test": "ptrace08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "894": {"test": "ptrace09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "895": {"test": "ptrace10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "896": {"test": "ptrace11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "897": {"test": "pwrite01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "898": {"test": "pwrite02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "899": {"test": "pwrite03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "900": {"test": "pwrite04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "901": {"test": "pwrite01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "902": {"test": "pwrite02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "903": {"test": "pwrite03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "904": {"test": "pwrite04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "905": {"test": "pwritev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "906": {"test": "pwritev01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "907": {"test": "pwritev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "908": {"test": "pwritev02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "909": {"test": "pwritev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "910": {"test": "pwritev03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "911": {"test": "pwritev201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "912": {"test": "pwritev201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "913": {"test": "pwritev202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "914": {"test": "pwritev202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "915": {"test": "quotactl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "916": {"test": "quotactl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "917": {"test": "quotactl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "918": {"test": "quotactl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "919": {"test": "quotactl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "920": {"test": "quotactl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "921": {"test": "quotactl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "922": {"test": "quotactl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "923": {"test": "quotactl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "924": {"test": "read01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "925": {"test": "read02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "926": {"test": "read03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "927": {"test": "read04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "928": {"test": "readahead01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "929": {"test": "readahead02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "930": {"test": "readdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "931": {"test": "readdir21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "932": {"test": "readlink01A", "status": "pass", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "933": {"test": "readlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "934": {"test": "readlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "935": {"test": "readlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "936": {"test": "readlinkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "937": {"test": "readv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "938": {"test": "readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "939": {"test": "realpath01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "940": {"test": "reboot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "941": {"test": "reboot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "942": {"test": "recv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "943": {"test": "recvfrom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "944": {"test": "recvmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "945": {"test": "recvmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "946": {"test": "recvmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "947": {"test": "recvmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "948": {"test": "remap_file_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "949": {"test": "remap_file_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "950": {"test": "removexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "951": {"test": "removexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "952": {"test": "rename01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "953": {"test": "rename01A", "status": "pass", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0}, "954": {"test": "rename03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "955": {"test": "rename04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "956": {"test": "rename05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "957": {"test": "rename06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "958": {"test": "rename07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "959": {"test": "rename08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "960": {"test": "rename09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "961": {"test": "rename10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "962": {"test": "rename11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "963": {"test": "rename12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "964": {"test": "rename13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "965": {"test": "rename14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "966": {"test": "rename15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "967": {"test": "renameat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "968": {"test": "renameat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "969": {"test": "renameat202", "status": "pass", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0}, "970": {"test": "request_key01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "971": {"test": "request_key02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "972": {"test": "request_key03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "973": {"test": "request_key04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "974": {"test": "request_key05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "975": {"test": "request_key06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "976": {"test": "rmdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "977": {"test": "rmdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "978": {"test": "rmdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "979": {"test": "rmdir03A", "status": "pass", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0}, "980": {"test": "rt_sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "981": {"test": "rt_sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "982": {"test": "rt_sigaction03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "983": {"test": "rt_sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "984": {"test": "rt_sigprocmask02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "985": {"test": "rt_sigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "986": {"test": "rt_sigqueueinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "987": {"test": "rt_sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "988": {"test": "rt_sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "989": {"test": "rt_tgsigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "990": {"test": "sbrk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "991": {"test": "sbrk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "992": {"test": "sbrk03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "993": {"test": "sched_get_priority_max01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "994": {"test": "sched_get_priority_max02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "995": {"test": "sched_get_priority_min01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "996": {"test": "sched_get_priority_min02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "997": {"test": "sched_getparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "998": {"test": "sched_getparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "999": {"test": "sched_rr_get_interval01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1000": {"test": "sched_rr_get_interval02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1001": {"test": "sched_rr_get_interval03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1002": {"test": "sched_setparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1003": {"test": "sched_setparam02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1004": {"test": "sched_setparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1005": {"test": "sched_setparam04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1006": {"test": "sched_setparam05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1007": {"test": "sched_getscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1008": {"test": "sched_getscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1009": {"test": "sched_setscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1010": {"test": "sched_setscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1011": {"test": "sched_setscheduler03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1012": {"test": "sched_setscheduler04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1013": {"test": "sched_yield01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1014": {"test": "sched_setaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1015": {"test": "sched_getaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1016": {"test": "sched_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1017": {"test": "sched_getattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1018": {"test": "sched_getattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1019": {"test": "seccomp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1020": {"test": "select01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1021": {"test": "select02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1022": {"test": "select03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1023": {"test": "select04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1024": {"test": "semctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1025": {"test": "semctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1026": {"test": "semctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1027": {"test": "semctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1028": {"test": "semctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1029": {"test": "semctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1030": {"test": "semctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1031": {"test": "semctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1032": {"test": "semctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1033": {"test": "semget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1034": {"test": "semget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1035": {"test": "semget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1036": {"test": "semop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1037": {"test": "semop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1038": {"test": "semop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1039": {"test": "semop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1040": {"test": "semop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1041": {"test": "send01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1042": {"test": "send02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1043": {"test": "sendfile02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1044": {"test": "sendfile02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1045": {"test": "sendfile03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1046": {"test": "sendfile03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1047": {"test": "sendfile04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1048": {"test": "sendfile04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1049": {"test": "sendfile05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1050": {"test": "sendfile05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1051": {"test": "sendfile06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1052": {"test": "sendfile06_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1053": {"test": "sendfile07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1054": {"test": "sendfile07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1055": {"test": "sendfile08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1056": {"test": "sendfile08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1057": {"test": "sendfile09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1058": {"test": "sendfile09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1059": {"test": "sendmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1060": {"test": "sendmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1061": {"test": "sendmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1062": {"test": "sendmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1063": {"test": "sendmmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1064": {"test": "sendto01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1065": {"test": "sendto02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1066": {"test": "sendto03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1067": {"test": "set_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1068": {"test": "set_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1069": {"test": "set_mempolicy03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1070": {"test": "set_mempolicy04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1071": {"test": "set_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1072": {"test": "set_thread_area01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1073": {"test": "set_tid_address01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1074": {"test": "setdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1075": {"test": "setdomainname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1076": {"test": "setdomainname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1077": {"test": "setfsgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1078": {"test": "setfsgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1079": {"test": "setfsgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1080": {"test": "setfsgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1081": {"test": "setfsgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1082": {"test": "setfsgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1083": {"test": "setfsuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1084": {"test": "setfsuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1085": {"test": "setfsuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1086": {"test": "setfsuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1087": {"test": "setfsuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1088": {"test": "setfsuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1089": {"test": "setfsuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1090": {"test": "setfsuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1091": {"test": "setgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1092": {"test": "setgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1093": {"test": "setgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1094": {"test": "setgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1095": {"test": "setgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1096": {"test": "setgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1097": {"test": "setegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1098": {"test": "setegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1099": {"test": "sgetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1100": {"test": "setgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1101": {"test": "setgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1102": {"test": "setgroups02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1103": {"test": "setgroups02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1104": {"test": "setgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1105": {"test": "setgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1106": {"test": "sethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1107": {"test": "sethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1108": {"test": "sethostname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1109": {"test": "setitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1110": {"test": "setitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1111": {"test": "setns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1112": {"test": "setns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1113": {"test": "setpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1114": {"test": "setpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1115": {"test": "setpgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1116": {"test": "setpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1117": {"test": "setpgrp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1118": {"test": "setpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1119": {"test": "setpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1120": {"test": "setregid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1121": {"test": "setregid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1122": {"test": "setregid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1123": {"test": "setregid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1124": {"test": "setregid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1125": {"test": "setregid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1126": {"test": "setregid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1127": {"test": "setregid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1128": {"test": "setresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1129": {"test": "setresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1130": {"test": "setresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1131": {"test": "setresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1132": {"test": "setresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1133": {"test": "setresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1134": {"test": "setresgid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1135": {"test": "setresgid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1136": {"test": "setresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1137": {"test": "setresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1138": {"test": "setresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1139": {"test": "setresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1140": {"test": "setresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1141": {"test": "setresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1142": {"test": "setresuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1143": {"test": "setresuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1144": {"test": "setresuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1145": {"test": "setresuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1146": {"test": "setreuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1147": {"test": "setreuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1148": {"test": "setreuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1149": {"test": "setreuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1150": {"test": "setreuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1151": {"test": "setreuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1152": {"test": "setreuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1153": {"test": "setreuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1154": {"test": "setreuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1155": {"test": "setreuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1156": {"test": "setreuid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1157": {"test": "setreuid06_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1158": {"test": "setreuid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1159": {"test": "setreuid07_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1160": {"test": "setrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1161": {"test": "setrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1162": {"test": "setrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1163": {"test": "setrlimit04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1164": {"test": "setrlimit05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1165": {"test": "setrlimit06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1166": {"test": "setsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1167": {"test": "setsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1168": {"test": "setsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1169": {"test": "setsockopt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1170": {"test": "setsockopt04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1171": {"test": "setsockopt05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1172": {"test": "setsockopt06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1173": {"test": "setsockopt07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1174": {"test": "setsockopt08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1175": {"test": "setsockopt09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1176": {"test": "setsockopt10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1177": {"test": "settimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1178": {"test": "settimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1179": {"test": "setuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1180": {"test": "setuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1181": {"test": "setuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1182": {"test": "setuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1183": {"test": "setuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1184": {"test": "setuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1185": {"test": "setxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1186": {"test": "setxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1187": {"test": "setxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1188": {"test": "shmat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1189": {"test": "shmat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1190": {"test": "shmat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1191": {"test": "shmat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1192": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1193": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1194": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1195": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1196": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1197": {"test": "shmctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1198": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1199": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1200": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1201": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1202": {"test": "shmget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1203": {"test": "shmget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1204": {"test": "shmget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1205": {"test": "shmget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1206": {"test": "shmget06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1207": {"test": "shutdown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1208": {"test": "shutdown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1209": {"test": "sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1210": {"test": "sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1211": {"test": "sigaltstack01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1212": {"test": "sigaltstack02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1213": {"test": "sighold02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1214": {"test": "signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1215": {"test": "signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1216": {"test": "signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1217": {"test": "signal04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1218": {"test": "signal05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1219": {"test": "signal06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1220": {"test": "signalfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1221": {"test": "signalfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1222": {"test": "signalfd4_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1223": {"test": "signalfd4_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1224": {"test": "sigpending02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1225": {"test": "sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1226": {"test": "sigrelse01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1227": {"test": "sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1228": {"test": "sigsuspend02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1229": {"test": "sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1230": {"test": "sigwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1231": {"test": "sigwaitinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1232": {"test": "socket01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1233": {"test": "socket02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1234": {"test": "socketcall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1235": {"test": "socketcall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1236": {"test": "socketcall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1237": {"test": "socketpair01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1238": {"test": "socketpair02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1239": {"test": "sockioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1240": {"test": "splice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1241": {"test": "splice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1242": {"test": "splice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1243": {"test": "splice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1244": {"test": "splice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1245": {"test": "splice06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1246": {"test": "splice07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1247": {"test": "splice08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1248": {"test": "splice09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1249": {"test": "tee01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1250": {"test": "tee02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1251": {"test": "ssetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1252": {"test": "stat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1253": {"test": "stat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1254": {"test": "stat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1255": {"test": "stat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1256": {"test": "stat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1257": {"test": "stat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1258": {"test": "stat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1259": {"test": "stat04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1260": {"test": "statmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1261": {"test": "statmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1262": {"test": "statmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1263": {"test": "statmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1264": {"test": "statmount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1265": {"test": "statmount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1266": {"test": "statmount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1267": {"test": "statmount08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1268": {"test": "statfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1269": {"test": "statfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1270": {"test": "statfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1271": {"test": "statfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1272": {"test": "statfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1273": {"test": "statfs03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1274": {"test": "statvfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1275": {"test": "statvfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1276": {"test": "stime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1277": {"test": "stime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1278": {"test": "string01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1279": {"test": "swapoff01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1280": {"test": "swapoff02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1281": {"test": "swapon01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1282": {"test": "swapon02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1283": {"test": "swapon03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1284": {"test": "switch01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1285": {"test": "symlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1286": {"test": "symlink02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1287": {"test": "symlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1288": {"test": "symlink04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1289": {"test": "symlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1290": {"test": "sync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1291": {"test": "syncfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1292": {"test": "sync_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1293": {"test": "sync_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1294": {"test": "syscall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1295": {"test": "sysconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1296": {"test": "sysctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1297": {"test": "sysctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1298": {"test": "sysctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1299": {"test": "sysfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1300": {"test": "sysfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1301": {"test": "sysfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1302": {"test": "sysfs04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1303": {"test": "sysfs05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1304": {"test": "sysinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1305": {"test": "sysinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1306": {"test": "sysinfo03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1307": {"test": "syslog11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1308": {"test": "syslog12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1309": {"test": "tgkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1310": {"test": "tgkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1311": {"test": "tgkill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1312": {"test": "time01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1313": {"test": "times01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1314": {"test": "times03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1315": {"test": "timerfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1316": {"test": "timerfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1317": {"test": "timerfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1318": {"test": "timerfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1319": {"test": "timerfd_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1320": {"test": "timerfd_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1321": {"test": "timerfd_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1322": {"test": "timer_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1323": {"test": "timer_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1324": {"test": "timer_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1325": {"test": "timer_delete01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1326": {"test": "timer_delete02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1327": {"test": "timer_getoverrun01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1328": {"test": "timer_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1329": {"test": "timer_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1330": {"test": "timer_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1331": {"test": "timer_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1332": {"test": "tkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1333": {"test": "tkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1334": {"test": "truncate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1335": {"test": "truncate02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1336": {"test": "truncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1337": {"test": "truncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1338": {"test": "ulimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1339": {"test": "umask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1340": {"test": "uname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1341": {"test": "uname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1342": {"test": "uname04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1343": {"test": "unlink01", "status": "pass", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "1344": {"test": "unlink05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1345": {"test": "unlink07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1346": {"test": "unlink08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1347": {"test": "unlink09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1348": {"test": "unlink10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1349": {"test": "unlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1350": {"test": "unshare01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1351": {"test": "unshare02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1352": {"test": "umount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1353": {"test": "umount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1354": {"test": "umount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1355": {"test": "umount2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1356": {"test": "umount2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1357": {"test": "userfaultfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1358": {"test": "ustat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1359": {"test": "ustat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1360": {"test": "utime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1361": {"test": "utime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1362": {"test": "utime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1363": {"test": "utime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1364": {"test": "utime05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1365": {"test": "utime06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1366": {"test": "utime07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1367": {"test": "utimes01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1368": {"test": "utimensat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1369": {"test": "vfork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1370": {"test": "vfork02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1371": {"test": "vhangup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1372": {"test": "vhangup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1373": {"test": "vmsplice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1374": {"test": "vmsplice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1375": {"test": "vmsplice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1376": {"test": "vmsplice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1377": {"test": "wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1378": {"test": "wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1379": {"test": "wait401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1380": {"test": "wait402", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1381": {"test": "wait403", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1382": {"test": "waitpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1383": {"test": "waitpid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1384": {"test": "waitpid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1385": {"test": "waitpid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1386": {"test": "waitpid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1387": {"test": "waitpid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1388": {"test": "waitpid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1389": {"test": "waitpid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1390": {"test": "waitpid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1391": {"test": "waitpid12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1392": {"test": "waitpid13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1393": {"test": "waitid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1394": {"test": "waitid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1395": {"test": "waitid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1396": {"test": "waitid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1397": {"test": "waitid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1398": {"test": "waitid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1399": {"test": "waitid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1400": {"test": "waitid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1401": {"test": "waitid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1402": {"test": "waitid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1403": {"test": "waitid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1404": {"test": "write01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1405": {"test": "write02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1406": {"test": "write03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1407": {"test": "write04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1408": {"test": "write05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1409": {"test": "write06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1410": {"test": "writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1411": {"test": "writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1412": {"test": "writev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1413": {"test": "writev05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1414": {"test": "writev06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1415": {"test": "writev07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1416": {"test": "perf_event_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1417": {"test": "perf_event_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1418": {"test": "futex_cmp_requeue01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1419": {"test": "futex_cmp_requeue02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1420": {"test": "futex_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1421": {"test": "futex_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1422": {"test": "futex_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1423": {"test": "futex_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1424": {"test": "futex_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1425": {"test": "futex_waitv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1426": {"test": "futex_waitv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1427": {"test": "futex_waitv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1428": {"test": "futex_wake01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1429": {"test": "futex_wake02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1430": {"test": "futex_wake03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1431": {"test": "futex_wake04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1432": {"test": "futex_wait_bitset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1433": {"test": "memfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1434": {"test": "memfd_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1435": {"test": "memfd_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1436": {"test": "memfd_create04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1437": {"test": "copy_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1438": {"test": "copy_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1439": {"test": "copy_file_range03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1440": {"test": "statx01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1441": {"test": "statx02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1442": {"test": "statx03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1443": {"test": "statx04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1444": {"test": "statx05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1445": {"test": "statx06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1446": {"test": "statx07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1447": {"test": "statx08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1448": {"test": "statx09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1449": {"test": "statx10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1450": {"test": "statx11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1451": {"test": "statx12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1452": {"test": "membarrier01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1453": {"test": "io_uring01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1454": {"test": "io_uring02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1455": {"test": "perf_event_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "summary": {"passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}}} 2026-07-04 18:18:06.986734 2026-07-04 18:12:49.185895 +482 13 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 18:18:52.074581 2026-07-04 18:18:52.074585 +483 13 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:18:06' --until '2026-07-04 18:18:51' 0 OOM records 2026-07-04 18:18:06.642148 2026-07-04 18:18:51.626019 +812 37 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:12:40.444104 2026-07-16 11:12:40.444106 +272 11 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 12726784, "io_kbytes": 12428, "bw_bytes": 2544847, "bw": 2485, "iops": 4970.405919, "runtime": 5001, "total_ios": 24857, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76149, "max": 666097, "mean": 94092.221185, "stddev": 34529.819273, "N": 24857}, "clat_ns": {"min": 27985, "max": 3538080, "mean": 91993.791367, "stddev": 65468.110443, "N": 24857, "percentile": {"1.000000": 29568, "5.000000": 72192, "10.000000": 73216, "20.000000": 74240, "30.000000": 74240, "40.000000": 75264, "50.000000": 77312, "60.000000": 79360, "70.000000": 81408, "80.000000": 97792, "90.000000": 152576, "95.000000": 166912, "99.000000": 228352, "99.500000": 250880, "99.900000": 354304, "99.950000": 552960, "99.990000": 3260416}}, "lat_ns": {"min": 143289, "max": 3618627, "mean": 186086.012552, "stddev": 72616.515539, "N": 24857}, "bw_min": 2317, "bw_max": 2590, "bw_agg": 100.0, "bw_mean": 2486.4, "bw_dev": 101.95244, "bw_samples": 5, "iops_min": 4635, "iops_max": 5180, "iops_mean": 4973.2, "iops_stddev": 203.518304, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 30.44, "sys_cpu": 65.76, "ctx": 1885, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.655188, "100": 78.649877, "250": 18.17999, "500": 0.462646, "750": 0.016092, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.028161, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:35:21.838233 2026-07-04 11:58:54.193208 +273 11 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 5744128, "io_kbytes": 5609, "bw_bytes": 1148595, "bw": 1121, "iops": 2243.35133, "runtime": 5001, "total_ios": 11219, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76970, "max": 963905, "mean": 103485.971566, "stddev": 36729.44196, "N": 11219}, "clat_ns": {"min": 28025, "max": 22000759, "mean": 322358.627418, "stddev": 275660.169006, "N": 11219, "percentile": {"1.000000": 55040, "5.000000": 76288, "10.000000": 79360, "20.000000": 82432, "30.000000": 121344, "40.000000": 407552, "50.000000": 428032, "60.000000": 436224, "70.000000": 448512, "80.000000": 460800, "90.000000": 473088, "95.000000": 489472, "99.000000": 552960, "99.500000": 593920, "99.900000": 872448, "99.950000": 1466368, "99.990000": 4882432}}, "lat_ns": {"min": 148519, "max": 22171291, "mean": 425844.598984, "stddev": 277298.867078, "N": 11219}, "bw_min": 1052, "bw_max": 1160, "bw_agg": 100.0, "bw_mean": 1122.0, "bw_dev": 43.052294, "bw_samples": 5, "iops_min": 2104, "iops_max": 2321, "iops_mean": 2244.4, "iops_stddev": 86.430897, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 15.66, "sys_cpu": 34.82, "ctx": 7388, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.989393, "100": 27.257331, "250": 8.530172, "500": 59.372493, "750": 3.690168, "1000": 0.080221}, "latency_ms": {"2": 0.044567, "4": 0.01, "10": 0.017827, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:37:23.251014 2026-07-04 11:58:54.193208 +274 11 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5695488, "io_kbytes": 5562, "bw_bytes": 1138869, "bw": 1112, "iops": 2224.355129, "runtime": 5001, "total_ios": 11124, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 95215, "max": 11866043, "mean": 389884.033172, "stddev": 148909.612048, "N": 11124}, "clat_ns": {"min": 28836, "max": 950109, "mean": 37813.970065, "stddev": 30485.11834, "N": 11124, "percentile": {"1.000000": 29312, "5.000000": 29568, "10.000000": 29824, "20.000000": 30080, "30.000000": 30336, "40.000000": 30336, "50.000000": 30592, "60.000000": 30848, "70.000000": 31104, "80.000000": 31872, "90.000000": 38656, "95.000000": 85504, "99.000000": 187392, "99.500000": 218112, "99.900000": 301056, "99.950000": 354304, "99.990000": 481280}}, "lat_ns": {"min": 239777, "max": 11905620, "mean": 427698.003236, "stddev": 147744.143611, "N": 11124}, "bw_min": 1047, "bw_max": 1151, "bw_agg": 99.984107, "bw_mean": 1112.6, "bw_dev": 42.852071, "bw_samples": 5, "iops_min": 2094, "iops_max": 2302, "iops_mean": 2226.0, "iops_stddev": 85.74672, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 14.3, "sys_cpu": 66.36, "ctx": 11096, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 93.68932, "100": 1.618123, "250": 4.386911, "500": 0.296656, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:39:32.852373 2026-07-04 11:58:54.193208 +275 11 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 48001024, "io_kbytes": 46876, "bw_bytes": 9598285, "bw": 9373, "iops": 2343.331334, "runtime": 5001, "total_ios": 11719, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 132798, "max": 876475, "mean": 171618.813892, "stddev": 53613.973768, "N": 11719}, "clat_ns": {"min": 29578, "max": 3209473, "mean": 235899.460449, "stddev": 69923.799137, "N": 11719, "percentile": {"1.000000": 33024, "5.000000": 187392, "10.000000": 191488, "20.000000": 195584, "30.000000": 201728, "40.000000": 207872, "50.000000": 226304, "60.000000": 240640, "70.000000": 252928, "80.000000": 272384, "90.000000": 305152, "95.000000": 333824, "99.000000": 415744, "99.500000": 460800, "99.900000": 659456, "99.950000": 815104, "99.990000": 2637824}}, "lat_ns": {"min": 309863, "max": 3382580, "mean": 407518.274341, "stddev": 78536.600049, "N": 11719}, "bw_min": 9196, "bw_max": 9516, "bw_agg": 100.0, "bw_mean": 9376.8, "bw_dev": 123.970561, "bw_samples": 5, "iops_min": 2299, "iops_max": 2379, "iops_mean": 2344.0, "iops_stddev": 30.975797, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 13.54, "sys_cpu": 51.76, "ctx": 11840, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.843161, "100": 0.042666, "250": 65.125011, "500": 32.596638, "750": 0.332793, "1000": 0.034133}, "latency_ms": {"2": 0.01, "4": 0.017066, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:39:39.284209 2026-07-04 11:58:54.193208 +484 13 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:18:06' --until '2026-07-04 18:18:51' 0 systemd errors records 2026-07-04 18:18:06.642148 2026-07-04 18:18:51.626019 +485 13 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 50 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-04_18:18:54.json {"tool": "kirk", "test_type": {}, "time": {"duration_sec": 17.56}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboZSpdi9 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1253070831298828}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09764719009399414}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accsUWxvg as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 39817\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10437250137329102}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15319466590881348}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 38337\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 38093\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42451\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12450790405273438}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accTMiEGm as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5412073135375977}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accIbq3oV as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.27684497833251953}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.312941312789917}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accclvhaT as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accclvhaT/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3280463218688965}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accWRInVj as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accWRInVj/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.39716410636901855}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accUaKkXS as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.472041130065918}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.23612189292907715}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19194579124450684}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.24657845497131348}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.21368408203125}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.4583253860473633}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19632863998413086}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20368528366088867}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.27124714851379395}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16815829277038574}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.21015691757202148}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.2262415885925293}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.2097320556640625}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1241650581359863}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08908247947692871}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binK8IO8x as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10307121276855469}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10196208953857422}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binZdkqR1 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09751772880554199}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bindoFHNu as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15942144393920898}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binZL7wfD as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11966228485107422}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "36": {"test": "bpf_prog05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "37": {"test": "bpf_prog06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "38": {"test": "bpf_prog07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "39": {"test": "brk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "40": {"test": "brk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "41": {"test": "capget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "42": {"test": "capget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "43": {"test": "capset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "44": {"test": "capset02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "45": {"test": "capset03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "46": {"test": "capset04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "47": {"test": "cacheflush01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "48": {"test": "cachestat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "49": {"test": "cachestat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "50": {"test": "cachestat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "51": {"test": "cachestat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "52": {"test": "chdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "53": {"test": "chdir01A", "status": "pass", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0}, "54": {"test": "chdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "55": {"test": "chmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "56": {"test": "chmod01A", "status": "pass", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0}, "57": {"test": "chmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "58": {"test": "chmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "59": {"test": "chmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "60": {"test": "chmod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "61": {"test": "chmod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "62": {"test": "chmod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "63": {"test": "chown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "64": {"test": "chown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "65": {"test": "chown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "66": {"test": "chown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "67": {"test": "chown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "68": {"test": "chown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "69": {"test": "chown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "70": {"test": "chown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "71": {"test": "chown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "72": {"test": "chown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "73": {"test": "chroot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "74": {"test": "chroot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "75": {"test": "chroot03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "76": {"test": "chroot04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "77": {"test": "clock_adjtime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "78": {"test": "clock_adjtime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "79": {"test": "clock_getres01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "80": {"test": "clock_nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "81": {"test": "clock_nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "82": {"test": "clock_nanosleep03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "83": {"test": "clock_nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "84": {"test": "clock_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "85": {"test": "clock_gettime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "86": {"test": "clock_gettime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "87": {"test": "clock_gettime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "88": {"test": "leapsec01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "89": {"test": "clock_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "90": {"test": "clock_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "91": {"test": "clock_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "92": {"test": "clone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "93": {"test": "clone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "94": {"test": "clone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "95": {"test": "clone04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "96": {"test": "clone05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "97": {"test": "clone06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "98": {"test": "clone07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "99": {"test": "clone08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "100": {"test": "clone09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "101": {"test": "clone301", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "102": {"test": "clone302", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "103": {"test": "clone303", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "104": {"test": "close01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "105": {"test": "close02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "106": {"test": "close_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "107": {"test": "close_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "108": {"test": "confstr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "109": {"test": "connect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "110": {"test": "connect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "111": {"test": "creat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "112": {"test": "creat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "113": {"test": "creat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "114": {"test": "creat05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "115": {"test": "creat06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "116": {"test": "creat07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "117": {"test": "creat08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "118": {"test": "creat09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "119": {"test": "delete_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "120": {"test": "delete_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "121": {"test": "delete_module03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "122": {"test": "dup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "123": {"test": "dup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "124": {"test": "dup03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "125": {"test": "dup04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "126": {"test": "dup05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "127": {"test": "dup06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "128": {"test": "dup07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "129": {"test": "dup201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "130": {"test": "dup202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "131": {"test": "dup203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "132": {"test": "dup204", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "133": {"test": "dup205", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "134": {"test": "dup206", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "135": {"test": "dup207", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "136": {"test": "dup3_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "137": {"test": "dup3_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "138": {"test": "epoll_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "139": {"test": "epoll_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "140": {"test": "epoll_create1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "141": {"test": "epoll_create1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "142": {"test": "epoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "143": {"test": "epoll_ctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "144": {"test": "epoll_ctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "145": {"test": "epoll_ctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "146": {"test": "epoll_ctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "147": {"test": "epoll_ctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "148": {"test": "epoll_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "149": {"test": "epoll_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "150": {"test": "epoll_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "151": {"test": "epoll_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "152": {"test": "epoll_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "153": {"test": "epoll_wait06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "154": {"test": "epoll_wait07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "155": {"test": "epoll_pwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "156": {"test": "epoll_pwait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "157": {"test": "epoll_pwait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "158": {"test": "epoll_pwait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "159": {"test": "epoll_pwait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "160": {"test": "eventfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "161": {"test": "eventfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "162": {"test": "eventfd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "163": {"test": "eventfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "164": {"test": "eventfd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "165": {"test": "eventfd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "166": {"test": "eventfd2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "167": {"test": "eventfd2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "168": {"test": "eventfd2_03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "169": {"test": "execl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "170": {"test": "execle01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "171": {"test": "execlp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "172": {"test": "execv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "173": {"test": "execve01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "174": {"test": "execve02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "175": {"test": "execve03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "176": {"test": "execve04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "177": {"test": "execve05", "status": "pass", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0}, "178": {"test": "execve06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "179": {"test": "execvp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "180": {"test": "execveat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "181": {"test": "execveat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "182": {"test": "execveat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "183": {"test": "exit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "184": {"test": "exit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "185": {"test": "exit_group01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "186": {"test": "faccessat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "187": {"test": "faccessat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "188": {"test": "faccessat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "189": {"test": "faccessat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "190": {"test": "fallocate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "191": {"test": "fallocate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "192": {"test": "fallocate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "193": {"test": "fallocate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "194": {"test": "fallocate05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "195": {"test": "fallocate06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "196": {"test": "fsetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "197": {"test": "fsetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "198": {"test": "posix_fadvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "199": {"test": "posix_fadvise01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "200": {"test": "posix_fadvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "201": {"test": "posix_fadvise02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "202": {"test": "posix_fadvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "203": {"test": "posix_fadvise03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "204": {"test": "posix_fadvise04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "205": {"test": "posix_fadvise04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "206": {"test": "fchdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "207": {"test": "fchdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "208": {"test": "fchdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "209": {"test": "fchmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "210": {"test": "fchmod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "211": {"test": "fchmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "212": {"test": "fchmod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "213": {"test": "fchmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "214": {"test": "fchmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "215": {"test": "fchmodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "216": {"test": "fchmodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "217": {"test": "fchmodat2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "218": {"test": "fchmodat2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "219": {"test": "fchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "220": {"test": "fchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "221": {"test": "fchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "222": {"test": "fchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "223": {"test": "fchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "224": {"test": "fchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "225": {"test": "fchown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "226": {"test": "fchown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "227": {"test": "fchown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "228": {"test": "fchown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "229": {"test": "fchownat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "230": {"test": "fchownat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "231": {"test": "fcntl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "232": {"test": "fcntl01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "233": {"test": "fcntl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "234": {"test": "fcntl02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "235": {"test": "fcntl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "236": {"test": "fcntl03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "237": {"test": "fcntl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "238": {"test": "fcntl04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "239": {"test": "fcntl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "240": {"test": "fcntl05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "241": {"test": "fcntl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "242": {"test": "fcntl07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "243": {"test": "fcntl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "244": {"test": "fcntl08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "245": {"test": "fcntl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "246": {"test": "fcntl09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "247": {"test": "fcntl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "248": {"test": "fcntl10_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "249": {"test": "fcntl11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "250": {"test": "fcntl11_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "251": {"test": "fcntl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "252": {"test": "fcntl12_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "253": {"test": "fcntl13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "254": {"test": "fcntl13_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "255": {"test": "fcntl14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "256": {"test": "fcntl14_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "257": {"test": "fcntl15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "258": {"test": "fcntl15_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "259": {"test": "fcntl16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "260": {"test": "fcntl16_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "261": {"test": "fcntl17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "262": {"test": "fcntl17_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "263": {"test": "fcntl18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "264": {"test": "fcntl18_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "265": {"test": "fcntl19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "266": {"test": "fcntl19_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "267": {"test": "fcntl20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "268": {"test": "fcntl20_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "269": {"test": "fcntl21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "270": {"test": "fcntl21_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "271": {"test": "fcntl22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "272": {"test": "fcntl22_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "273": {"test": "fcntl23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "274": {"test": "fcntl23_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "275": {"test": "fcntl24", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "276": {"test": "fcntl24_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "277": {"test": "fcntl25", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "278": {"test": "fcntl25_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "279": {"test": "fcntl26", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "280": {"test": "fcntl26_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "281": {"test": "fcntl27", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "282": {"test": "fcntl27_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "283": {"test": "fcntl29", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "284": {"test": "fcntl29_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "285": {"test": "fcntl30", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "286": {"test": "fcntl30_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "287": {"test": "fcntl31", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "288": {"test": "fcntl31_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "289": {"test": "fcntl32", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "290": {"test": "fcntl32_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "291": {"test": "fcntl33", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "292": {"test": "fcntl33_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "293": {"test": "fcntl34", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "294": {"test": "fcntl34_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "295": {"test": "fcntl35", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "296": {"test": "fcntl35_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "297": {"test": "fcntl36", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "298": {"test": "fcntl36_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "299": {"test": "fcntl37", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "300": {"test": "fcntl37_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "301": {"test": "fcntl38", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "302": {"test": "fcntl38_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "303": {"test": "fcntl39", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "304": {"test": "fcntl39_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "305": {"test": "fdatasync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "306": {"test": "fdatasync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "307": {"test": "fdatasync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "308": {"test": "fgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "309": {"test": "fgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "310": {"test": "fgetxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "311": {"test": "finit_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "312": {"test": "finit_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "313": {"test": "flistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "314": {"test": "flistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "315": {"test": "flistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "316": {"test": "flock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "317": {"test": "flock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "318": {"test": "flock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "319": {"test": "flock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "320": {"test": "flock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "321": {"test": "fmtmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "322": {"test": "fork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "323": {"test": "fork03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "324": {"test": "fork04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "325": {"test": "fork05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "326": {"test": "fork06", "status": "pass", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0}, "327": {"test": "fork07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "328": {"test": "fork08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "329": {"test": "fork09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "330": {"test": "fork10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "331": {"test": "fork11", "status": "pass", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0}, "332": {"test": "fork13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "333": {"test": "fork14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "334": {"test": "fpathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "335": {"test": "fremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "336": {"test": "fremovexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "337": {"test": "fsconfig01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "338": {"test": "fsconfig02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "339": {"test": "fsconfig03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "340": {"test": "fsmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "341": {"test": "fsmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "342": {"test": "fsopen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "343": {"test": "fsopen02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "344": {"test": "fspick01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "345": {"test": "fspick02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "346": {"test": "fstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "347": {"test": "fstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "348": {"test": "fstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "349": {"test": "fstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "350": {"test": "fstatat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "351": {"test": "fstatfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "352": {"test": "fstatfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "353": {"test": "fstatfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "354": {"test": "fstatfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "355": {"test": "fsync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "356": {"test": "fsync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "357": {"test": "fsync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "358": {"test": "fsync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "359": {"test": "ftruncate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "360": {"test": "ftruncate01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "361": {"test": "ftruncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "362": {"test": "ftruncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "363": {"test": "ftruncate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "364": {"test": "ftruncate04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "365": {"test": "futimesat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "366": {"test": "getcontext01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "367": {"test": "getcpu01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "368": {"test": "getcpu02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "369": {"test": "getcwd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "370": {"test": "getcwd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "371": {"test": "getcwd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "372": {"test": "getcwd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "373": {"test": "getdents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "374": {"test": "getdents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "375": {"test": "getdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "376": {"test": "getegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "377": {"test": "getegid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "378": {"test": "getegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "379": {"test": "getegid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "380": {"test": "geteuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "381": {"test": "geteuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "382": {"test": "geteuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "383": {"test": "geteuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "384": {"test": "getgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "385": {"test": "getgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "386": {"test": "getgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "387": {"test": "getgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "388": {"test": "getgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "389": {"test": "getgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "390": {"test": "getgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "391": {"test": "getgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "392": {"test": "gethostbyname_r01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "393": {"test": "gethostid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "394": {"test": "gethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "395": {"test": "gethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "396": {"test": "getitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "397": {"test": "getitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "398": {"test": "getpagesize01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "399": {"test": "getpeername01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "400": {"test": "getpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "401": {"test": "getpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "402": {"test": "getpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "403": {"test": "getpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "404": {"test": "getpid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "405": {"test": "getppid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "406": {"test": "getppid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "407": {"test": "getpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "408": {"test": "getpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "409": {"test": "getrandom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "410": {"test": "getrandom02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "411": {"test": "getrandom03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "412": {"test": "getrandom04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "413": {"test": "getrandom05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "414": {"test": "getresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "415": {"test": "getresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "416": {"test": "getresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "417": {"test": "getresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "418": {"test": "getresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "419": {"test": "getresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "420": {"test": "getresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "421": {"test": "getresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "422": {"test": "getresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "423": {"test": "getresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "424": {"test": "getresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "425": {"test": "getresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "426": {"test": "getrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "427": {"test": "getrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "428": {"test": "getrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "429": {"test": "get_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "430": {"test": "get_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "431": {"test": "get_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "432": {"test": "getrusage01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "433": {"test": "getrusage02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "434": {"test": "getrusage03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "435": {"test": "getrusage04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "436": {"test": "getsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "437": {"test": "getsid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "438": {"test": "getsockname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "439": {"test": "getsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "440": {"test": "getsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "441": {"test": "gettid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "442": {"test": "gettid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "443": {"test": "gettimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "444": {"test": "gettimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "445": {"test": "getuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "446": {"test": "getuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "447": {"test": "getuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "448": {"test": "getuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "449": {"test": "getxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "450": {"test": "getxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "451": {"test": "getxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "452": {"test": "getxattr04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "453": {"test": "getxattr05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "454": {"test": "init_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "455": {"test": "init_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "456": {"test": "ioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "457": {"test": "ioctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "458": {"test": "ioctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "459": {"test": "ioctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "460": {"test": "ioctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "461": {"test": "ioctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "462": {"test": "ioctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "463": {"test": "ioctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "464": {"test": "ioctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "465": {"test": "ioctl_loop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "466": {"test": "ioctl_loop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "467": {"test": "ioctl_loop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "468": {"test": "ioctl_loop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "469": {"test": "ioctl_loop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "470": {"test": "ioctl_loop06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "471": {"test": "ioctl_loop07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "472": {"test": "ioctl_ns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "473": {"test": "ioctl_ns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "474": {"test": "ioctl_ns03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "475": {"test": "ioctl_ns04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "476": {"test": "ioctl_ns05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "477": {"test": "ioctl_ns06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "478": {"test": "ioctl_ns07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "479": {"test": "ioctl_sg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "480": {"test": "ioctl_ficlone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "481": {"test": "ioctl_ficlone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "482": {"test": "ioctl_ficlone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "483": {"test": "ioctl_ficlonerange01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "484": {"test": "ioctl_ficlonerange02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "485": {"test": "inotify_init1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "486": {"test": "inotify_init1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "487": {"test": "inotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "488": {"test": "inotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "489": {"test": "inotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "490": {"test": "inotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "491": {"test": "inotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "492": {"test": "inotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "493": {"test": "inotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "494": {"test": "inotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "495": {"test": "inotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "496": {"test": "inotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "497": {"test": "inotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "498": {"test": "inotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "499": {"test": "fanotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "500": {"test": "fanotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "501": {"test": "fanotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "502": {"test": "fanotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "503": {"test": "fanotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "504": {"test": "fanotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "505": {"test": "fanotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "506": {"test": "fanotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "507": {"test": "fanotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "508": {"test": "fanotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "509": {"test": "fanotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "510": {"test": "fanotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "511": {"test": "fanotify13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "512": {"test": "fanotify14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "513": {"test": "fanotify15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "514": {"test": "fanotify16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "515": {"test": "fanotify17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "516": {"test": "fanotify18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "517": {"test": "fanotify19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "518": {"test": "fanotify20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "519": {"test": "fanotify21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "520": {"test": "fanotify22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "521": {"test": "fanotify23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "522": {"test": "ioperm01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "523": {"test": "ioperm02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "524": {"test": "iopl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "525": {"test": "iopl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "526": {"test": "ioprio_get01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "527": {"test": "ioprio_set01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "528": {"test": "ioprio_set02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "529": {"test": "ioprio_set03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "530": {"test": "io_cancel01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "531": {"test": "io_cancel02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "532": {"test": "io_destroy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "533": {"test": "io_destroy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "534": {"test": "io_getevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "535": {"test": "io_getevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "536": {"test": "io_pgetevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "537": {"test": "io_pgetevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "538": {"test": "io_setup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "539": {"test": "io_setup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "540": {"test": "io_submit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "541": {"test": "io_submit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "542": {"test": "io_submit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "543": {"test": "keyctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "544": {"test": "keyctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "545": {"test": "keyctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "546": {"test": "keyctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "547": {"test": "keyctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "548": {"test": "keyctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "549": {"test": "keyctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "550": {"test": "keyctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "551": {"test": "keyctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "552": {"test": "kcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "553": {"test": "kcmp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "554": {"test": "kcmp03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "555": {"test": "kill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "556": {"test": "kill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "557": {"test": "kill05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "558": {"test": "kill06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "559": {"test": "kill07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "560": {"test": "kill08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "561": {"test": "kill09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "562": {"test": "kill10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "563": {"test": "kill11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "564": {"test": "kill12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "565": {"test": "kill13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "566": {"test": "landlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "567": {"test": "landlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "568": {"test": "landlock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "569": {"test": "landlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "570": {"test": "landlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "571": {"test": "landlock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "572": {"test": "landlock07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "573": {"test": "landlock08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "574": {"test": "lchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "575": {"test": "lchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "576": {"test": "lchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "577": {"test": "lchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "578": {"test": "lchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "579": {"test": "lchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "580": {"test": "lgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "581": {"test": "lgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "582": {"test": "link01", "status": "pass", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0}, "583": {"test": "link02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "584": {"test": "link04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "585": {"test": "link05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "586": {"test": "link08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "587": {"test": "linkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "588": {"test": "linkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "589": {"test": "listen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "590": {"test": "listmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "591": {"test": "listmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "592": {"test": "listmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "593": {"test": "listmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "594": {"test": "listxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "595": {"test": "listxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "596": {"test": "listxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "597": {"test": "llistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "598": {"test": "llistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "599": {"test": "llistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "600": {"test": "llseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "601": {"test": "llseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "602": {"test": "llseek03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "603": {"test": "lremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "604": {"test": "lseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "605": {"test": "lseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "606": {"test": "lseek07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "607": {"test": "lseek11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "608": {"test": "lstat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "609": {"test": "lstat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "610": {"test": "lstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "611": {"test": "lstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "612": {"test": "lstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "613": {"test": "lstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "614": {"test": "mallinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "615": {"test": "mallinfo2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "616": {"test": "mallopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "617": {"test": "mbind01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "618": {"test": "mbind02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "619": {"test": "mbind03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "620": {"test": "mbind04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "621": {"test": "memset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "622": {"test": "memcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "623": {"test": "memcpy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "624": {"test": "migrate_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "625": {"test": "migrate_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "626": {"test": "migrate_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "627": {"test": "mlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "628": {"test": "mlockall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "629": {"test": "mlockall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "630": {"test": "mkdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "631": {"test": "mkdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "632": {"test": "mkdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "633": {"test": "mkdir05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "634": {"test": "mkdir09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "635": {"test": "mkdirat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "636": {"test": "mkdirat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "637": {"test": "mknod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "638": {"test": "mknod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "639": {"test": "mknod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "640": {"test": "mknod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "641": {"test": "mknod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "642": {"test": "mknod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "643": {"test": "mknod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "644": {"test": "mknod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "645": {"test": "mknod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "646": {"test": "mknodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "647": {"test": "mknodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "648": {"test": "mlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "649": {"test": "mlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "650": {"test": "mlock03", "status": "pass", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0}, "651": {"test": "mlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "652": {"test": "mlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "653": {"test": "mlock201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "654": {"test": "mlock202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "655": {"test": "mlock203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "656": {"test": "qmm01", "status": "pass", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0}, "657": {"test": "mmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "658": {"test": "mmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "659": {"test": "mmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "660": {"test": "mmap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "661": {"test": "mmap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "662": {"test": "mmap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "663": {"test": "mmap08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "664": {"test": "mmap09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "665": {"test": "mmap12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "666": {"test": "mmap13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "667": {"test": "mmap14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "668": {"test": "mmap15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "669": {"test": "mmap16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "670": {"test": "mmap17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "671": {"test": "mmap18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "672": {"test": "mmap19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "673": {"test": "mmap20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "674": {"test": "modify_ldt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "675": {"test": "modify_ldt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "676": {"test": "modify_ldt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "677": {"test": "mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "678": {"test": "mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "679": {"test": "mount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "680": {"test": "mount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "681": {"test": "mount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "682": {"test": "mount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "683": {"test": "mount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "684": {"test": "mount_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "685": {"test": "move_mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "686": {"test": "move_mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "687": {"test": "move_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "688": {"test": "move_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "689": {"test": "move_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "690": {"test": "move_pages04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "691": {"test": "move_pages05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "692": {"test": "move_pages06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "693": {"test": "move_pages07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "694": {"test": "move_pages09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "695": {"test": "move_pages10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "696": {"test": "move_pages11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "697": {"test": "move_pages12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "698": {"test": "mprotect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "699": {"test": "mprotect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "700": {"test": "mprotect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "701": {"test": "mprotect04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "702": {"test": "mprotect05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "703": {"test": "pkey01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "704": {"test": "mq_notify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "705": {"test": "mq_notify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "706": {"test": "mq_notify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "707": {"test": "mq_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "708": {"test": "mq_timedreceive01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "709": {"test": "mq_timedsend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "710": {"test": "mq_unlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "711": {"test": "mremap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "712": {"test": "mremap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "713": {"test": "mremap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "714": {"test": "mremap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "715": {"test": "mremap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "716": {"test": "mremap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "717": {"test": "mseal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "718": {"test": "mseal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "719": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "720": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "721": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "722": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "723": {"test": "msgctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "724": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "725": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "726": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "727": {"test": "msgget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "728": {"test": "msgget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "729": {"test": "msgget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "730": {"test": "msgget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "731": {"test": "msgget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "732": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "733": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "734": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "735": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "736": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "737": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "738": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "739": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "740": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "741": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "742": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "743": {"test": "msync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "744": {"test": "msync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "745": {"test": "msync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "746": {"test": "msync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "747": {"test": "munlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "748": {"test": "munlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "749": {"test": "munlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "750": {"test": "munmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "751": {"test": "munmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "752": {"test": "munmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "753": {"test": "nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "754": {"test": "nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "755": {"test": "nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "756": {"test": "name_to_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "757": {"test": "name_to_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "758": {"test": "nftw01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "759": {"test": "nftw6401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "760": {"test": "nice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "761": {"test": "nice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "762": {"test": "nice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "763": {"test": "nice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "764": {"test": "nice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "765": {"test": "open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "766": {"test": "open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "767": {"test": "open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "768": {"test": "open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "769": {"test": "open06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "770": {"test": "open07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "771": {"test": "open08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "772": {"test": "open09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "773": {"test": "open10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "774": {"test": "open11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "775": {"test": "open12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "776": {"test": "open13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "777": {"test": "open14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "778": {"test": "open15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "779": {"test": "openat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "780": {"test": "openat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "781": {"test": "openat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "782": {"test": "openat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "783": {"test": "openat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "784": {"test": "openat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "785": {"test": "openat203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "786": {"test": "open_by_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "787": {"test": "open_by_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "788": {"test": "open_tree01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "789": {"test": "open_tree02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "790": {"test": "mincore01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "791": {"test": "mincore02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "792": {"test": "mincore03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "793": {"test": "mincore04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "794": {"test": "madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "795": {"test": "madvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "796": {"test": "madvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "797": {"test": "madvise05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "798": {"test": "madvise06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "799": {"test": "madvise07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "800": {"test": "madvise08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "801": {"test": "madvise09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "802": {"test": "madvise10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "803": {"test": "madvise11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "804": {"test": "madvise12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "805": {"test": "newuname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "806": {"test": "pathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "807": {"test": "pathconf02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "808": {"test": "pause01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "809": {"test": "pause02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "810": {"test": "pause03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "811": {"test": "personality01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "812": {"test": "personality02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "813": {"test": "pidfd_getfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "814": {"test": "pidfd_getfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "815": {"test": "pidfd_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "816": {"test": "pidfd_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "817": {"test": "pidfd_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "818": {"test": "pidfd_open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "819": {"test": "pidfd_send_signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "820": {"test": "pidfd_send_signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "821": {"test": "pidfd_send_signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "822": {"test": "pipe01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "823": {"test": "pipe02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "824": {"test": "pipe03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "825": {"test": "pipe04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "826": {"test": "pipe05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "827": {"test": "pipe06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "828": {"test": "pipe07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "829": {"test": "pipe08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "830": {"test": "pipe09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "831": {"test": "pipe10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "832": {"test": "pipe11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "833": {"test": "pipe12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "834": {"test": "pipe13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "835": {"test": "pipe14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "836": {"test": "pipe15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "837": {"test": "pipe2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "838": {"test": "pipe2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "839": {"test": "pipe2_04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "840": {"test": "pivot_root01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "841": {"test": "poll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "842": {"test": "poll02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "843": {"test": "ppoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "844": {"test": "prctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "845": {"test": "prctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "846": {"test": "prctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "847": {"test": "prctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "848": {"test": "prctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "849": {"test": "prctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "850": {"test": "prctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "851": {"test": "prctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "852": {"test": "prctl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "853": {"test": "pread01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "854": {"test": "pread01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "855": {"test": "pread02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "856": {"test": "pread02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "857": {"test": "preadv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "858": {"test": "preadv01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "859": {"test": "preadv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "860": {"test": "preadv02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "861": {"test": "preadv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "862": {"test": "preadv03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "863": {"test": "preadv201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "864": {"test": "preadv201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "865": {"test": "preadv202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "866": {"test": "preadv202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "867": {"test": "preadv203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "868": {"test": "preadv203_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "869": {"test": "profil01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "870": {"test": "process_vm_readv01", "status": "pass", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0}, "871": {"test": "process_vm_readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "872": {"test": "process_vm_readv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "873": {"test": "process_vm_writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "874": {"test": "process_vm_writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "875": {"test": "process_madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "876": {"test": "prot_hsymlinks", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "877": {"test": "dirtyc0w", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "878": {"test": "dirtyc0w_shmem", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "879": {"test": "dirtypipe", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "880": {"test": "pselect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "881": {"test": "pselect01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "882": {"test": "pselect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "883": {"test": "pselect02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "884": {"test": "pselect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "885": {"test": "pselect03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "886": {"test": "ptrace01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "887": {"test": "ptrace02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "888": {"test": "ptrace03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "889": {"test": "ptrace04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "890": {"test": "ptrace05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "891": {"test": "ptrace06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "892": {"test": "ptrace07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "893": {"test": "ptrace08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "894": {"test": "ptrace09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "895": {"test": "ptrace10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "896": {"test": "ptrace11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "897": {"test": "pwrite01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "898": {"test": "pwrite02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "899": {"test": "pwrite03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "900": {"test": "pwrite04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "901": {"test": "pwrite01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "902": {"test": "pwrite02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "903": {"test": "pwrite03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "904": {"test": "pwrite04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "905": {"test": "pwritev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "906": {"test": "pwritev01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "907": {"test": "pwritev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "908": {"test": "pwritev02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "909": {"test": "pwritev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "910": {"test": "pwritev03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "911": {"test": "pwritev201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "912": {"test": "pwritev201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "913": {"test": "pwritev202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "914": {"test": "pwritev202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "915": {"test": "quotactl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "916": {"test": "quotactl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "917": {"test": "quotactl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "918": {"test": "quotactl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "919": {"test": "quotactl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "920": {"test": "quotactl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "921": {"test": "quotactl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "922": {"test": "quotactl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "923": {"test": "quotactl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "924": {"test": "read01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "925": {"test": "read02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "926": {"test": "read03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "927": {"test": "read04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "928": {"test": "readahead01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "929": {"test": "readahead02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "930": {"test": "readdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "931": {"test": "readdir21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "932": {"test": "readlink01A", "status": "pass", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "933": {"test": "readlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "934": {"test": "readlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "935": {"test": "readlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "936": {"test": "readlinkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "937": {"test": "readv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "938": {"test": "readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "939": {"test": "realpath01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "940": {"test": "reboot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "941": {"test": "reboot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "942": {"test": "recv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "943": {"test": "recvfrom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "944": {"test": "recvmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "945": {"test": "recvmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "946": {"test": "recvmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "947": {"test": "recvmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "948": {"test": "remap_file_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "949": {"test": "remap_file_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "950": {"test": "removexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "951": {"test": "removexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "952": {"test": "rename01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "953": {"test": "rename01A", "status": "pass", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0}, "954": {"test": "rename03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "955": {"test": "rename04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "956": {"test": "rename05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "957": {"test": "rename06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "958": {"test": "rename07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "959": {"test": "rename08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "960": {"test": "rename09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "961": {"test": "rename10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "962": {"test": "rename11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "963": {"test": "rename12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "964": {"test": "rename13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "965": {"test": "rename14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "966": {"test": "rename15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "967": {"test": "renameat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "968": {"test": "renameat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "969": {"test": "renameat202", "status": "pass", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0}, "970": {"test": "request_key01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "971": {"test": "request_key02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "972": {"test": "request_key03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "973": {"test": "request_key04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "974": {"test": "request_key05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "975": {"test": "request_key06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "976": {"test": "rmdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "977": {"test": "rmdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "978": {"test": "rmdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "979": {"test": "rmdir03A", "status": "pass", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0}, "980": {"test": "rt_sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "981": {"test": "rt_sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "982": {"test": "rt_sigaction03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "983": {"test": "rt_sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "984": {"test": "rt_sigprocmask02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "985": {"test": "rt_sigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "986": {"test": "rt_sigqueueinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "987": {"test": "rt_sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "988": {"test": "rt_sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "989": {"test": "rt_tgsigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "990": {"test": "sbrk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "991": {"test": "sbrk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "992": {"test": "sbrk03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "993": {"test": "sched_get_priority_max01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "994": {"test": "sched_get_priority_max02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "995": {"test": "sched_get_priority_min01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "996": {"test": "sched_get_priority_min02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "997": {"test": "sched_getparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "998": {"test": "sched_getparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "999": {"test": "sched_rr_get_interval01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1000": {"test": "sched_rr_get_interval02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1001": {"test": "sched_rr_get_interval03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1002": {"test": "sched_setparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1003": {"test": "sched_setparam02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1004": {"test": "sched_setparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1005": {"test": "sched_setparam04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1006": {"test": "sched_setparam05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1007": {"test": "sched_getscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1008": {"test": "sched_getscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1009": {"test": "sched_setscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1010": {"test": "sched_setscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1011": {"test": "sched_setscheduler03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1012": {"test": "sched_setscheduler04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1013": {"test": "sched_yield01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1014": {"test": "sched_setaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1015": {"test": "sched_getaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1016": {"test": "sched_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1017": {"test": "sched_getattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1018": {"test": "sched_getattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1019": {"test": "seccomp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1020": {"test": "select01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1021": {"test": "select02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1022": {"test": "select03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1023": {"test": "select04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1024": {"test": "semctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1025": {"test": "semctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1026": {"test": "semctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1027": {"test": "semctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1028": {"test": "semctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1029": {"test": "semctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1030": {"test": "semctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1031": {"test": "semctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1032": {"test": "semctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1033": {"test": "semget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1034": {"test": "semget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1035": {"test": "semget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1036": {"test": "semop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1037": {"test": "semop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1038": {"test": "semop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1039": {"test": "semop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1040": {"test": "semop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1041": {"test": "send01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1042": {"test": "send02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1043": {"test": "sendfile02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1044": {"test": "sendfile02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1045": {"test": "sendfile03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1046": {"test": "sendfile03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1047": {"test": "sendfile04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1048": {"test": "sendfile04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1049": {"test": "sendfile05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1050": {"test": "sendfile05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1051": {"test": "sendfile06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1052": {"test": "sendfile06_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1053": {"test": "sendfile07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1054": {"test": "sendfile07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1055": {"test": "sendfile08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1056": {"test": "sendfile08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1057": {"test": "sendfile09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1058": {"test": "sendfile09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1059": {"test": "sendmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1060": {"test": "sendmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1061": {"test": "sendmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1062": {"test": "sendmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1063": {"test": "sendmmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1064": {"test": "sendto01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1065": {"test": "sendto02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1066": {"test": "sendto03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1067": {"test": "set_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1068": {"test": "set_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1069": {"test": "set_mempolicy03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1070": {"test": "set_mempolicy04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1071": {"test": "set_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1072": {"test": "set_thread_area01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1073": {"test": "set_tid_address01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1074": {"test": "setdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1075": {"test": "setdomainname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1076": {"test": "setdomainname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1077": {"test": "setfsgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1078": {"test": "setfsgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1079": {"test": "setfsgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1080": {"test": "setfsgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1081": {"test": "setfsgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1082": {"test": "setfsgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1083": {"test": "setfsuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1084": {"test": "setfsuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1085": {"test": "setfsuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1086": {"test": "setfsuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1087": {"test": "setfsuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1088": {"test": "setfsuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1089": {"test": "setfsuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1090": {"test": "setfsuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1091": {"test": "setgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1092": {"test": "setgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1093": {"test": "setgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1094": {"test": "setgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1095": {"test": "setgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1096": {"test": "setgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1097": {"test": "setegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1098": {"test": "setegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1099": {"test": "sgetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1100": {"test": "setgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1101": {"test": "setgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1102": {"test": "setgroups02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1103": {"test": "setgroups02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1104": {"test": "setgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1105": {"test": "setgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1106": {"test": "sethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1107": {"test": "sethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1108": {"test": "sethostname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1109": {"test": "setitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1110": {"test": "setitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1111": {"test": "setns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1112": {"test": "setns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1113": {"test": "setpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1114": {"test": "setpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1115": {"test": "setpgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1116": {"test": "setpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1117": {"test": "setpgrp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1118": {"test": "setpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1119": {"test": "setpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1120": {"test": "setregid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1121": {"test": "setregid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1122": {"test": "setregid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1123": {"test": "setregid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1124": {"test": "setregid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1125": {"test": "setregid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1126": {"test": "setregid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1127": {"test": "setregid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1128": {"test": "setresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1129": {"test": "setresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1130": {"test": "setresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1131": {"test": "setresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1132": {"test": "setresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1133": {"test": "setresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1134": {"test": "setresgid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1135": {"test": "setresgid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1136": {"test": "setresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1137": {"test": "setresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1138": {"test": "setresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1139": {"test": "setresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1140": {"test": "setresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1141": {"test": "setresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1142": {"test": "setresuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1143": {"test": "setresuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1144": {"test": "setresuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1145": {"test": "setresuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1146": {"test": "setreuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1147": {"test": "setreuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1148": {"test": "setreuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1149": {"test": "setreuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1150": {"test": "setreuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1151": {"test": "setreuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1152": {"test": "setreuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1153": {"test": "setreuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1154": {"test": "setreuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1155": {"test": "setreuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1156": {"test": "setreuid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1157": {"test": "setreuid06_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1158": {"test": "setreuid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1159": {"test": "setreuid07_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1160": {"test": "setrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1161": {"test": "setrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1162": {"test": "setrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1163": {"test": "setrlimit04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1164": {"test": "setrlimit05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1165": {"test": "setrlimit06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1166": {"test": "setsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1167": {"test": "setsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1168": {"test": "setsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1169": {"test": "setsockopt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1170": {"test": "setsockopt04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1171": {"test": "setsockopt05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1172": {"test": "setsockopt06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1173": {"test": "setsockopt07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1174": {"test": "setsockopt08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1175": {"test": "setsockopt09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1176": {"test": "setsockopt10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1177": {"test": "settimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1178": {"test": "settimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1179": {"test": "setuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1180": {"test": "setuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1181": {"test": "setuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1182": {"test": "setuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1183": {"test": "setuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1184": {"test": "setuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1185": {"test": "setxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1186": {"test": "setxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1187": {"test": "setxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1188": {"test": "shmat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1189": {"test": "shmat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1190": {"test": "shmat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1191": {"test": "shmat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1192": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1193": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1194": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1195": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1196": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1197": {"test": "shmctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1198": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1199": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1200": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1201": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1202": {"test": "shmget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1203": {"test": "shmget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1204": {"test": "shmget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1205": {"test": "shmget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1206": {"test": "shmget06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1207": {"test": "shutdown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1208": {"test": "shutdown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1209": {"test": "sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1210": {"test": "sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1211": {"test": "sigaltstack01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1212": {"test": "sigaltstack02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1213": {"test": "sighold02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1214": {"test": "signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1215": {"test": "signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1216": {"test": "signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1217": {"test": "signal04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1218": {"test": "signal05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1219": {"test": "signal06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1220": {"test": "signalfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1221": {"test": "signalfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1222": {"test": "signalfd4_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1223": {"test": "signalfd4_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1224": {"test": "sigpending02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1225": {"test": "sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1226": {"test": "sigrelse01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1227": {"test": "sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1228": {"test": "sigsuspend02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1229": {"test": "sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1230": {"test": "sigwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1231": {"test": "sigwaitinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1232": {"test": "socket01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1233": {"test": "socket02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1234": {"test": "socketcall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1235": {"test": "socketcall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1236": {"test": "socketcall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1237": {"test": "socketpair01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1238": {"test": "socketpair02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1239": {"test": "sockioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1240": {"test": "splice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1241": {"test": "splice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1242": {"test": "splice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1243": {"test": "splice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1244": {"test": "splice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1245": {"test": "splice06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1246": {"test": "splice07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1247": {"test": "splice08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1248": {"test": "splice09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1249": {"test": "tee01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1250": {"test": "tee02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1251": {"test": "ssetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1252": {"test": "stat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1253": {"test": "stat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1254": {"test": "stat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1255": {"test": "stat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1256": {"test": "stat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1257": {"test": "stat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1258": {"test": "stat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1259": {"test": "stat04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1260": {"test": "statmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1261": {"test": "statmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1262": {"test": "statmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1263": {"test": "statmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1264": {"test": "statmount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1265": {"test": "statmount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1266": {"test": "statmount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1267": {"test": "statmount08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1268": {"test": "statfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1269": {"test": "statfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1270": {"test": "statfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1271": {"test": "statfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1272": {"test": "statfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1273": {"test": "statfs03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1274": {"test": "statvfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1275": {"test": "statvfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1276": {"test": "stime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1277": {"test": "stime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1278": {"test": "string01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1279": {"test": "swapoff01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1280": {"test": "swapoff02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1281": {"test": "swapon01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1282": {"test": "swapon02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1283": {"test": "swapon03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1284": {"test": "switch01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1285": {"test": "symlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1286": {"test": "symlink02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1287": {"test": "symlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1288": {"test": "symlink04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1289": {"test": "symlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1290": {"test": "sync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1291": {"test": "syncfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1292": {"test": "sync_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1293": {"test": "sync_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1294": {"test": "syscall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1295": {"test": "sysconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1296": {"test": "sysctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1297": {"test": "sysctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1298": {"test": "sysctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1299": {"test": "sysfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1300": {"test": "sysfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1301": {"test": "sysfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1302": {"test": "sysfs04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1303": {"test": "sysfs05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1304": {"test": "sysinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1305": {"test": "sysinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1306": {"test": "sysinfo03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1307": {"test": "syslog11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1308": {"test": "syslog12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1309": {"test": "tgkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1310": {"test": "tgkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1311": {"test": "tgkill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1312": {"test": "time01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1313": {"test": "times01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1314": {"test": "times03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1315": {"test": "timerfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1316": {"test": "timerfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1317": {"test": "timerfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1318": {"test": "timerfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1319": {"test": "timerfd_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1320": {"test": "timerfd_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1321": {"test": "timerfd_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1322": {"test": "timer_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1323": {"test": "timer_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1324": {"test": "timer_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1325": {"test": "timer_delete01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1326": {"test": "timer_delete02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1327": {"test": "timer_getoverrun01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1328": {"test": "timer_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1329": {"test": "timer_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1330": {"test": "timer_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1331": {"test": "timer_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1332": {"test": "tkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1333": {"test": "tkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1334": {"test": "truncate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1335": {"test": "truncate02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1336": {"test": "truncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1337": {"test": "truncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1338": {"test": "ulimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1339": {"test": "umask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1340": {"test": "uname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1341": {"test": "uname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1342": {"test": "uname04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1343": {"test": "unlink01", "status": "pass", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "1344": {"test": "unlink05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1345": {"test": "unlink07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1346": {"test": "unlink08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1347": {"test": "unlink09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1348": {"test": "unlink10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1349": {"test": "unlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1350": {"test": "unshare01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1351": {"test": "unshare02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1352": {"test": "umount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1353": {"test": "umount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1354": {"test": "umount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1355": {"test": "umount2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1356": {"test": "umount2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1357": {"test": "userfaultfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1358": {"test": "ustat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1359": {"test": "ustat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1360": {"test": "utime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1361": {"test": "utime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1362": {"test": "utime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1363": {"test": "utime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1364": {"test": "utime05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1365": {"test": "utime06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1366": {"test": "utime07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1367": {"test": "utimes01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1368": {"test": "utimensat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1369": {"test": "vfork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1370": {"test": "vfork02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1371": {"test": "vhangup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1372": {"test": "vhangup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1373": {"test": "vmsplice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1374": {"test": "vmsplice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1375": {"test": "vmsplice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1376": {"test": "vmsplice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1377": {"test": "wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1378": {"test": "wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1379": {"test": "wait401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1380": {"test": "wait402", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1381": {"test": "wait403", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1382": {"test": "waitpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1383": {"test": "waitpid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1384": {"test": "waitpid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1385": {"test": "waitpid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1386": {"test": "waitpid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1387": {"test": "waitpid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1388": {"test": "waitpid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1389": {"test": "waitpid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1390": {"test": "waitpid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1391": {"test": "waitpid12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1392": {"test": "waitpid13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1393": {"test": "waitid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1394": {"test": "waitid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1395": {"test": "waitid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1396": {"test": "waitid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1397": {"test": "waitid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1398": {"test": "waitid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1399": {"test": "waitid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1400": {"test": "waitid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1401": {"test": "waitid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1402": {"test": "waitid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1403": {"test": "waitid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1404": {"test": "write01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1405": {"test": "write02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1406": {"test": "write03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1407": {"test": "write04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1408": {"test": "write05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1409": {"test": "write06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1410": {"test": "writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1411": {"test": "writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1412": {"test": "writev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1413": {"test": "writev05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1414": {"test": "writev06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1415": {"test": "writev07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1416": {"test": "perf_event_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1417": {"test": "perf_event_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1418": {"test": "futex_cmp_requeue01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1419": {"test": "futex_cmp_requeue02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1420": {"test": "futex_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1421": {"test": "futex_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1422": {"test": "futex_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1423": {"test": "futex_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1424": {"test": "futex_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1425": {"test": "futex_waitv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1426": {"test": "futex_waitv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1427": {"test": "futex_waitv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1428": {"test": "futex_wake01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1429": {"test": "futex_wake02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1430": {"test": "futex_wake03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1431": {"test": "futex_wake04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1432": {"test": "futex_wait_bitset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1433": {"test": "memfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1434": {"test": "memfd_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1435": {"test": "memfd_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1436": {"test": "memfd_create04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1437": {"test": "copy_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1438": {"test": "copy_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1439": {"test": "copy_file_range03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1440": {"test": "statx01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1441": {"test": "statx02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1442": {"test": "statx03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1443": {"test": "statx04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1444": {"test": "statx05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1445": {"test": "statx06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1446": {"test": "statx07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1447": {"test": "statx08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1448": {"test": "statx09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1449": {"test": "statx10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1450": {"test": "statx11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1451": {"test": "statx12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1452": {"test": "membarrier01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1453": {"test": "io_uring01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1454": {"test": "io_uring02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1455": {"test": "perf_event_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "summary": {"passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}}} 2026-07-04 18:18:54.531364 2026-07-04 18:20:04.609236 +656 24 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-12 15:12:44.880883 2026-07-12 15:12:44.880888 +276 11 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 98697216, "io_kbytes": 96384, "bw_bytes": 19735496, "bw": 19272, "iops": 4818.236353, "runtime": 5001, "total_ios": 24096, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 75196, "max": 754948, "mean": 95106.668825, "stddev": 32897.682811, "N": 24096}, "clat_ns": {"min": 27323, "max": 9008900, "mean": 97306.823332, "stddev": 152934.235441, "N": 24096, "percentile": {"1.000000": 29824, "5.000000": 72192, "10.000000": 73216, "20.000000": 74240, "30.000000": 74240, "40.000000": 76288, "50.000000": 78336, "60.000000": 80384, "70.000000": 85504, "80.000000": 98816, "90.000000": 150528, "95.000000": 168960, "99.000000": 246784, "99.500000": 325632, "99.900000": 1138688, "99.950000": 3457024, "99.990000": 6717440}}, "lat_ns": {"min": 142026, "max": 9087052, "mean": 192413.492156, "stddev": 156270.848234, "N": 24096}, "bw_min": 18476, "bw_max": 19868, "bw_agg": 100.0, "bw_mean": 19280.4, "bw_dev": 513.040252, "bw_samples": 5, "iops_min": 4619, "iops_max": 4967, "iops_mean": 4819.8, "iops_stddev": 128.154984, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 28.82, "sys_cpu": 65.74, "ctx": 1695, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.390438, "100": 78.647908, "250": 18.032039, "500": 0.65156, "750": 0.112052, "1000": 0.045651}, "latency_ms": {"2": 0.033201, "4": 0.045651, "10": 0.041501, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:39:45.211691 2026-07-04 11:58:54.193208 +277 11 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 43986944, "io_kbytes": 42956, "bw_bytes": 8795629, "bw": 8589, "iops": 2147.370526, "runtime": 5001, "total_ios": 10739, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78733, "max": 623583, "mean": 107766.768414, "stddev": 36050.675141, "N": 10739}, "clat_ns": {"min": 28756, "max": 5274887, "mean": 338140.450042, "stddev": 183429.161278, "N": 10739, "percentile": {"1.000000": 73216, "5.000000": 80384, "10.000000": 82432, "20.000000": 90624, "30.000000": 211968, "40.000000": 419840, "50.000000": 428032, "60.000000": 432128, "70.000000": 440320, "80.000000": 444416, "90.000000": 456704, "95.000000": 481280, "99.000000": 536576, "99.500000": 569344, "99.900000": 1220608, "99.950000": 2023424, "99.990000": 4751360}}, "lat_ns": {"min": 154620, "max": 5443175, "mean": 445907.218456, "stddev": 185744.053069, "N": 10739}, "bw_min": 8464, "bw_max": 8704, "bw_agg": 100.0, "bw_mean": 8594.4, "bw_dev": 99.62329, "bw_samples": 5, "iops_min": 2116, "iops_max": 2176, "iops_mean": 2148.6, "iops_stddev": 24.905823, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 15.82, "sys_cpu": 34.5, "ctx": 7682, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.838067, "100": 21.491759, "250": 8.064066, "500": 66.905671, "750": 2.504889, "1000": 0.074495}, "latency_ms": {"2": 0.065183, "4": 0.037247, "10": 0.018624, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:40:54.916813 2026-07-04 11:58:54.193208 +278 11 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 42229760, "io_kbytes": 41240, "bw_bytes": 8444263, "bw": 8246, "iops": 2061.587682, "runtime": 5001, "total_ios": 10310, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 136155, "max": 3585171, "mean": 203189.374782, "stddev": 74493.52956, "N": 10310}, "clat_ns": {"min": 28766, "max": 3971603, "mean": 259283.030844, "stddev": 94485.597084, "N": 10310, "percentile": {"1.000000": 32640, "5.000000": 197632, "10.000000": 201728, "20.000000": 211968, "30.000000": 228352, "40.000000": 238592, "50.000000": 248832, "60.000000": 257024, "70.000000": 272384, "80.000000": 296960, "90.000000": 325632, "95.000000": 358400, "99.000000": 464896, "99.500000": 552960, "99.900000": 1400832, "99.950000": 1433600, "99.990000": 3588096}}, "lat_ns": {"min": 312598, "max": 4512244, "mean": 462472.405626, "stddev": 116931.667994, "N": 10310}, "bw_min": 7948, "bw_max": 8572, "bw_agg": 100.0, "bw_mean": 8249.6, "bw_dev": 274.249521, "bw_samples": 5, "iops_min": 1987, "iops_max": 2143, "iops_mean": 2062.4, "iops_stddev": 68.56238, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 13.28, "sys_cpu": 49.46, "ctx": 10451, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.513094, "100": 0.058196, "250": 50.872939, "500": 46.867119, "750": 0.349176, "1000": 0.106693}, "latency_ms": {"2": 0.213385, "4": 0.019399, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:41:53.916382 2026-07-04 11:58:54.193208 +279 11 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.05}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 467664896, "io_kbytes": 456704, "bw_bytes": 92606910, "bw": 90436, "iops": 44.158416, "runtime": 5050, "total_ios": 223, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 596099, "max": 2238072, "mean": 1050151.502242, "stddev": 299118.419262, "N": 223}, "clat_ns": {"min": 39166, "max": 1208576872, "mean": 21532224.286996, "stddev": 87218400.792279, "N": 223, "percentile": {"1.000000": 522240, "5.000000": 643072, "10.000000": 684032, "20.000000": 749568, "30.000000": 798720, "40.000000": 872448, "50.000000": 929792, "60.000000": 1003520, "70.000000": 1253376, "80.000000": 13697024, "90.000000": 72876032, "95.000000": 99090432, "99.000000": 160432128, "99.500000": 238026752, "99.900000": 1216348160, "99.950000": 1216348160, "99.990000": 1216348160}}, "lat_ns": {"min": 1279798, "max": 1209992154, "mean": 22582375.789238, "stddev": 87288215.600167, "N": 223}, "bw_min": 16384, "bw_max": 370688, "bw_agg": 100.0, "bw_mean": 90935.2, "bw_dev": 156415.885035, "bw_samples": 5, "iops_min": 8, "iops_max": 181, "iops_mean": 44.4, "iops_stddev": 76.376043, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.366607, "sys_cpu": 4.040404, "ctx": 236, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.44843, "100": 0.44843, "250": 0.0, "500": 0.0, "750": 19.282511, "1000": 38.565022}, "latency_ms": {"2": 17.488789, "4": 3.587444, "10": 0.0, "20": 0.44843, "50": 3.587444, "100": 11.659193, "250": 4.035874, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.44843, ">=2000": 0.0}}} 2026-07-04 16:42:00.367845 2026-07-04 11:58:54.193208 +486 13 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 60 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-04_18:20:04.json {"tool": "kirk", "test_type": {}, "time": {"duration_sec": 16.06}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboRe7UOZ as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12000322341918945}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08465194702148438}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accL8jRFE as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 52337\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0901179313659668}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08877420425415039}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 44537\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42509\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 45913\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10910892486572266}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accPHfKgv as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5079820156097412}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accWBi6rt as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2581038475036621}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10719561576843262}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accu6uFqZ as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accu6uFqZ/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13811349868774414}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc1QBUPk as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc1QBUPk/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14475440979003906}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc9sMZ8V as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 2 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 3 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 4 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 5 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 6 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 7 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 8 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 9 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 10 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 11 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 12 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 13 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 14 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 15 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 16 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 17 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 18 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 19 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 20 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 21 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 22 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 23 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 24 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 25 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 26 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 27 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 28 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 29 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 30 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 31 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 32 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 33 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 34 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 35 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 36 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 37 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 38 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 39 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 40 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 41 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 42 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 43 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 44 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 45 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 46 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 47 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 48 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 49 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 50 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 51 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (9)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 52 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 53 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3319)\\nacct02.c:193: TINFO: == entry 54 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (9)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 55 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 56 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 57 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (9)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 58 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3320)\\nacct02.c:193: TINFO: == entry 59 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 60 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 61 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3318)\\nacct02.c:193: TINFO: == entry 62 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 63 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 64 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 65 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 66 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 67 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 3310 (3321)\\nacct02.c:193: TINFO: == entry 68 ==\\nacct02.c:84: TINFO: ac_comm !=", "retval": ["0"], "duration": 1.2243766784667969}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.22718501091003418}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20227289199829102}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.22381329536437988}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.225128173828125}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.272541046142578}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.21554803848266602}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15063190460205078}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14880847930908203}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18690943717956543}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15352940559387207}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.1789305210113525}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.197148084640503}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1912035942077637}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08399105072021484}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binJDf4kX as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09158897399902344}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0926046371459961}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binYyNWns as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08566474914550781}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binyOxYSz as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14121556282043457}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin7mLvBl as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1158304214477539}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "36": {"test": "bpf_prog05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "37": {"test": "bpf_prog06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "38": {"test": "bpf_prog07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "39": {"test": "brk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "40": {"test": "brk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "41": {"test": "capget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "42": {"test": "capget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "43": {"test": "capset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "44": {"test": "capset02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "45": {"test": "capset03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "46": {"test": "capset04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "47": {"test": "cacheflush01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "48": {"test": "cachestat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "49": {"test": "cachestat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "50": {"test": "cachestat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "51": {"test": "cachestat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "52": {"test": "chdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "53": {"test": "chdir01A", "status": "pass", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0}, "54": {"test": "chdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "55": {"test": "chmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "56": {"test": "chmod01A", "status": "pass", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0}, "57": {"test": "chmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "58": {"test": "chmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "59": {"test": "chmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "60": {"test": "chmod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "61": {"test": "chmod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "62": {"test": "chmod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "63": {"test": "chown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "64": {"test": "chown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "65": {"test": "chown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "66": {"test": "chown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "67": {"test": "chown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "68": {"test": "chown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "69": {"test": "chown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "70": {"test": "chown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "71": {"test": "chown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "72": {"test": "chown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "73": {"test": "chroot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "74": {"test": "chroot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "75": {"test": "chroot03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "76": {"test": "chroot04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "77": {"test": "clock_adjtime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "78": {"test": "clock_adjtime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "79": {"test": "clock_getres01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "80": {"test": "clock_nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "81": {"test": "clock_nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "82": {"test": "clock_nanosleep03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "83": {"test": "clock_nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "84": {"test": "clock_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "85": {"test": "clock_gettime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "86": {"test": "clock_gettime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "87": {"test": "clock_gettime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "88": {"test": "leapsec01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "89": {"test": "clock_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "90": {"test": "clock_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "91": {"test": "clock_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "92": {"test": "clone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "93": {"test": "clone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "94": {"test": "clone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "95": {"test": "clone04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "96": {"test": "clone05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "97": {"test": "clone06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "98": {"test": "clone07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "99": {"test": "clone08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "100": {"test": "clone09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "101": {"test": "clone301", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "102": {"test": "clone302", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "103": {"test": "clone303", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "104": {"test": "close01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "105": {"test": "close02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "106": {"test": "close_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "107": {"test": "close_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "108": {"test": "confstr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "109": {"test": "connect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "110": {"test": "connect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "111": {"test": "creat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "112": {"test": "creat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "113": {"test": "creat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "114": {"test": "creat05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "115": {"test": "creat06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "116": {"test": "creat07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "117": {"test": "creat08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "118": {"test": "creat09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "119": {"test": "delete_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "120": {"test": "delete_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "121": {"test": "delete_module03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "122": {"test": "dup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "123": {"test": "dup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "124": {"test": "dup03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "125": {"test": "dup04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "126": {"test": "dup05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "127": {"test": "dup06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "128": {"test": "dup07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "129": {"test": "dup201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "130": {"test": "dup202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "131": {"test": "dup203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "132": {"test": "dup204", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "133": {"test": "dup205", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "134": {"test": "dup206", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "135": {"test": "dup207", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "136": {"test": "dup3_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "137": {"test": "dup3_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "138": {"test": "epoll_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "139": {"test": "epoll_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "140": {"test": "epoll_create1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "141": {"test": "epoll_create1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "142": {"test": "epoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "143": {"test": "epoll_ctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "144": {"test": "epoll_ctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "145": {"test": "epoll_ctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "146": {"test": "epoll_ctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "147": {"test": "epoll_ctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "148": {"test": "epoll_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "149": {"test": "epoll_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "150": {"test": "epoll_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "151": {"test": "epoll_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "152": {"test": "epoll_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "153": {"test": "epoll_wait06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "154": {"test": "epoll_wait07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "155": {"test": "epoll_pwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "156": {"test": "epoll_pwait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "157": {"test": "epoll_pwait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "158": {"test": "epoll_pwait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "159": {"test": "epoll_pwait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "160": {"test": "eventfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "161": {"test": "eventfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "162": {"test": "eventfd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "163": {"test": "eventfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "164": {"test": "eventfd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "165": {"test": "eventfd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "166": {"test": "eventfd2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "167": {"test": "eventfd2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "168": {"test": "eventfd2_03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "169": {"test": "execl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "170": {"test": "execle01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "171": {"test": "execlp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "172": {"test": "execv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "173": {"test": "execve01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "174": {"test": "execve02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "175": {"test": "execve03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "176": {"test": "execve04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "177": {"test": "execve05", "status": "pass", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0}, "178": {"test": "execve06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "179": {"test": "execvp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "180": {"test": "execveat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "181": {"test": "execveat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "182": {"test": "execveat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "183": {"test": "exit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "184": {"test": "exit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "185": {"test": "exit_group01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "186": {"test": "faccessat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "187": {"test": "faccessat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "188": {"test": "faccessat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "189": {"test": "faccessat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "190": {"test": "fallocate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "191": {"test": "fallocate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "192": {"test": "fallocate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "193": {"test": "fallocate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "194": {"test": "fallocate05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "195": {"test": "fallocate06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "196": {"test": "fsetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "197": {"test": "fsetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "198": {"test": "posix_fadvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "199": {"test": "posix_fadvise01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "200": {"test": "posix_fadvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "201": {"test": "posix_fadvise02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "202": {"test": "posix_fadvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "203": {"test": "posix_fadvise03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "204": {"test": "posix_fadvise04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "205": {"test": "posix_fadvise04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "206": {"test": "fchdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "207": {"test": "fchdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "208": {"test": "fchdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "209": {"test": "fchmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "210": {"test": "fchmod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "211": {"test": "fchmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "212": {"test": "fchmod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "213": {"test": "fchmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "214": {"test": "fchmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "215": {"test": "fchmodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "216": {"test": "fchmodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "217": {"test": "fchmodat2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "218": {"test": "fchmodat2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "219": {"test": "fchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "220": {"test": "fchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "221": {"test": "fchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "222": {"test": "fchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "223": {"test": "fchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "224": {"test": "fchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "225": {"test": "fchown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "226": {"test": "fchown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "227": {"test": "fchown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "228": {"test": "fchown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "229": {"test": "fchownat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "230": {"test": "fchownat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "231": {"test": "fcntl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "232": {"test": "fcntl01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "233": {"test": "fcntl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "234": {"test": "fcntl02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "235": {"test": "fcntl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "236": {"test": "fcntl03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "237": {"test": "fcntl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "238": {"test": "fcntl04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "239": {"test": "fcntl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "240": {"test": "fcntl05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "241": {"test": "fcntl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "242": {"test": "fcntl07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "243": {"test": "fcntl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "244": {"test": "fcntl08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "245": {"test": "fcntl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "246": {"test": "fcntl09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "247": {"test": "fcntl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "248": {"test": "fcntl10_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "249": {"test": "fcntl11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "250": {"test": "fcntl11_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "251": {"test": "fcntl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "252": {"test": "fcntl12_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "253": {"test": "fcntl13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "254": {"test": "fcntl13_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "255": {"test": "fcntl14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "256": {"test": "fcntl14_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "257": {"test": "fcntl15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "258": {"test": "fcntl15_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "259": {"test": "fcntl16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "260": {"test": "fcntl16_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "261": {"test": "fcntl17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "262": {"test": "fcntl17_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "263": {"test": "fcntl18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "264": {"test": "fcntl18_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "265": {"test": "fcntl19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "266": {"test": "fcntl19_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "267": {"test": "fcntl20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "268": {"test": "fcntl20_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "269": {"test": "fcntl21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "270": {"test": "fcntl21_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "271": {"test": "fcntl22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "272": {"test": "fcntl22_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "273": {"test": "fcntl23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "274": {"test": "fcntl23_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "275": {"test": "fcntl24", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "276": {"test": "fcntl24_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "277": {"test": "fcntl25", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "278": {"test": "fcntl25_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "279": {"test": "fcntl26", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "280": {"test": "fcntl26_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "281": {"test": "fcntl27", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "282": {"test": "fcntl27_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "283": {"test": "fcntl29", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "284": {"test": "fcntl29_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "285": {"test": "fcntl30", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "286": {"test": "fcntl30_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "287": {"test": "fcntl31", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "288": {"test": "fcntl31_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "289": {"test": "fcntl32", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "290": {"test": "fcntl32_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "291": {"test": "fcntl33", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "292": {"test": "fcntl33_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "293": {"test": "fcntl34", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "294": {"test": "fcntl34_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "295": {"test": "fcntl35", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "296": {"test": "fcntl35_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "297": {"test": "fcntl36", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "298": {"test": "fcntl36_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "299": {"test": "fcntl37", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "300": {"test": "fcntl37_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "301": {"test": "fcntl38", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "302": {"test": "fcntl38_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "303": {"test": "fcntl39", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "304": {"test": "fcntl39_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "305": {"test": "fdatasync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "306": {"test": "fdatasync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "307": {"test": "fdatasync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "308": {"test": "fgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "309": {"test": "fgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "310": {"test": "fgetxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "311": {"test": "finit_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "312": {"test": "finit_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "313": {"test": "flistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "314": {"test": "flistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "315": {"test": "flistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "316": {"test": "flock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "317": {"test": "flock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "318": {"test": "flock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "319": {"test": "flock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "320": {"test": "flock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "321": {"test": "fmtmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "322": {"test": "fork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "323": {"test": "fork03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "324": {"test": "fork04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "325": {"test": "fork05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "326": {"test": "fork06", "status": "pass", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0}, "327": {"test": "fork07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "328": {"test": "fork08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "329": {"test": "fork09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "330": {"test": "fork10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "331": {"test": "fork11", "status": "pass", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0}, "332": {"test": "fork13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "333": {"test": "fork14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "334": {"test": "fpathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "335": {"test": "fremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "336": {"test": "fremovexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "337": {"test": "fsconfig01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "338": {"test": "fsconfig02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "339": {"test": "fsconfig03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "340": {"test": "fsmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "341": {"test": "fsmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "342": {"test": "fsopen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "343": {"test": "fsopen02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "344": {"test": "fspick01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "345": {"test": "fspick02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "346": {"test": "fstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "347": {"test": "fstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "348": {"test": "fstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "349": {"test": "fstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "350": {"test": "fstatat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "351": {"test": "fstatfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "352": {"test": "fstatfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "353": {"test": "fstatfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "354": {"test": "fstatfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "355": {"test": "fsync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "356": {"test": "fsync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "357": {"test": "fsync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "358": {"test": "fsync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "359": {"test": "ftruncate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "360": {"test": "ftruncate01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "361": {"test": "ftruncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "362": {"test": "ftruncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "363": {"test": "ftruncate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "364": {"test": "ftruncate04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "365": {"test": "futimesat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "366": {"test": "getcontext01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "367": {"test": "getcpu01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "368": {"test": "getcpu02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "369": {"test": "getcwd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "370": {"test": "getcwd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "371": {"test": "getcwd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "372": {"test": "getcwd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "373": {"test": "getdents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "374": {"test": "getdents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "375": {"test": "getdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "376": {"test": "getegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "377": {"test": "getegid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "378": {"test": "getegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "379": {"test": "getegid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "380": {"test": "geteuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "381": {"test": "geteuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "382": {"test": "geteuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "383": {"test": "geteuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "384": {"test": "getgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "385": {"test": "getgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "386": {"test": "getgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "387": {"test": "getgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "388": {"test": "getgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "389": {"test": "getgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "390": {"test": "getgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "391": {"test": "getgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "392": {"test": "gethostbyname_r01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "393": {"test": "gethostid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "394": {"test": "gethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "395": {"test": "gethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "396": {"test": "getitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "397": {"test": "getitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "398": {"test": "getpagesize01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "399": {"test": "getpeername01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "400": {"test": "getpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "401": {"test": "getpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "402": {"test": "getpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "403": {"test": "getpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "404": {"test": "getpid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "405": {"test": "getppid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "406": {"test": "getppid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "407": {"test": "getpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "408": {"test": "getpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "409": {"test": "getrandom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "410": {"test": "getrandom02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "411": {"test": "getrandom03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "412": {"test": "getrandom04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "413": {"test": "getrandom05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "414": {"test": "getresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "415": {"test": "getresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "416": {"test": "getresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "417": {"test": "getresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "418": {"test": "getresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "419": {"test": "getresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "420": {"test": "getresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "421": {"test": "getresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "422": {"test": "getresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "423": {"test": "getresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "424": {"test": "getresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "425": {"test": "getresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "426": {"test": "getrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "427": {"test": "getrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "428": {"test": "getrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "429": {"test": "get_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "430": {"test": "get_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "431": {"test": "get_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "432": {"test": "getrusage01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "433": {"test": "getrusage02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "434": {"test": "getrusage03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "435": {"test": "getrusage04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "436": {"test": "getsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "437": {"test": "getsid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "438": {"test": "getsockname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "439": {"test": "getsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "440": {"test": "getsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "441": {"test": "gettid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "442": {"test": "gettid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "443": {"test": "gettimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "444": {"test": "gettimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "445": {"test": "getuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "446": {"test": "getuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "447": {"test": "getuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "448": {"test": "getuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "449": {"test": "getxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "450": {"test": "getxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "451": {"test": "getxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "452": {"test": "getxattr04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "453": {"test": "getxattr05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "454": {"test": "init_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "455": {"test": "init_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "456": {"test": "ioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "457": {"test": "ioctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "458": {"test": "ioctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "459": {"test": "ioctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "460": {"test": "ioctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "461": {"test": "ioctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "462": {"test": "ioctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "463": {"test": "ioctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "464": {"test": "ioctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "465": {"test": "ioctl_loop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "466": {"test": "ioctl_loop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "467": {"test": "ioctl_loop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "468": {"test": "ioctl_loop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "469": {"test": "ioctl_loop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "470": {"test": "ioctl_loop06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "471": {"test": "ioctl_loop07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "472": {"test": "ioctl_ns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "473": {"test": "ioctl_ns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "474": {"test": "ioctl_ns03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "475": {"test": "ioctl_ns04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "476": {"test": "ioctl_ns05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "477": {"test": "ioctl_ns06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "478": {"test": "ioctl_ns07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "479": {"test": "ioctl_sg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "480": {"test": "ioctl_ficlone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "481": {"test": "ioctl_ficlone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "482": {"test": "ioctl_ficlone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "483": {"test": "ioctl_ficlonerange01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "484": {"test": "ioctl_ficlonerange02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "485": {"test": "inotify_init1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "486": {"test": "inotify_init1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "487": {"test": "inotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "488": {"test": "inotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "489": {"test": "inotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "490": {"test": "inotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "491": {"test": "inotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "492": {"test": "inotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "493": {"test": "inotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "494": {"test": "inotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "495": {"test": "inotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "496": {"test": "inotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "497": {"test": "inotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "498": {"test": "inotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "499": {"test": "fanotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "500": {"test": "fanotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "501": {"test": "fanotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "502": {"test": "fanotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "503": {"test": "fanotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "504": {"test": "fanotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "505": {"test": "fanotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "506": {"test": "fanotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "507": {"test": "fanotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "508": {"test": "fanotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "509": {"test": "fanotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "510": {"test": "fanotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "511": {"test": "fanotify13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "512": {"test": "fanotify14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "513": {"test": "fanotify15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "514": {"test": "fanotify16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "515": {"test": "fanotify17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "516": {"test": "fanotify18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "517": {"test": "fanotify19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "518": {"test": "fanotify20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "519": {"test": "fanotify21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "520": {"test": "fanotify22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "521": {"test": "fanotify23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "522": {"test": "ioperm01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "523": {"test": "ioperm02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "524": {"test": "iopl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "525": {"test": "iopl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "526": {"test": "ioprio_get01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "527": {"test": "ioprio_set01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "528": {"test": "ioprio_set02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "529": {"test": "ioprio_set03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "530": {"test": "io_cancel01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "531": {"test": "io_cancel02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "532": {"test": "io_destroy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "533": {"test": "io_destroy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "534": {"test": "io_getevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "535": {"test": "io_getevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "536": {"test": "io_pgetevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "537": {"test": "io_pgetevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "538": {"test": "io_setup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "539": {"test": "io_setup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "540": {"test": "io_submit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "541": {"test": "io_submit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "542": {"test": "io_submit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "543": {"test": "keyctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "544": {"test": "keyctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "545": {"test": "keyctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "546": {"test": "keyctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "547": {"test": "keyctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "548": {"test": "keyctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "549": {"test": "keyctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "550": {"test": "keyctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "551": {"test": "keyctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "552": {"test": "kcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "553": {"test": "kcmp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "554": {"test": "kcmp03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "555": {"test": "kill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "556": {"test": "kill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "557": {"test": "kill05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "558": {"test": "kill06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "559": {"test": "kill07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "560": {"test": "kill08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "561": {"test": "kill09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "562": {"test": "kill10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "563": {"test": "kill11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "564": {"test": "kill12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "565": {"test": "kill13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "566": {"test": "landlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "567": {"test": "landlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "568": {"test": "landlock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "569": {"test": "landlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "570": {"test": "landlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "571": {"test": "landlock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "572": {"test": "landlock07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "573": {"test": "landlock08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "574": {"test": "lchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "575": {"test": "lchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "576": {"test": "lchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "577": {"test": "lchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "578": {"test": "lchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "579": {"test": "lchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "580": {"test": "lgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "581": {"test": "lgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "582": {"test": "link01", "status": "pass", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0}, "583": {"test": "link02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "584": {"test": "link04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "585": {"test": "link05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "586": {"test": "link08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "587": {"test": "linkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "588": {"test": "linkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "589": {"test": "listen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "590": {"test": "listmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "591": {"test": "listmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "592": {"test": "listmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "593": {"test": "listmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "594": {"test": "listxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "595": {"test": "listxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "596": {"test": "listxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "597": {"test": "llistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "598": {"test": "llistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "599": {"test": "llistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "600": {"test": "llseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "601": {"test": "llseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "602": {"test": "llseek03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "603": {"test": "lremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "604": {"test": "lseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "605": {"test": "lseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "606": {"test": "lseek07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "607": {"test": "lseek11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "608": {"test": "lstat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "609": {"test": "lstat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "610": {"test": "lstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "611": {"test": "lstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "612": {"test": "lstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "613": {"test": "lstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "614": {"test": "mallinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "615": {"test": "mallinfo2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "616": {"test": "mallopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "617": {"test": "mbind01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "618": {"test": "mbind02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "619": {"test": "mbind03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "620": {"test": "mbind04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "621": {"test": "memset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "622": {"test": "memcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "623": {"test": "memcpy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "624": {"test": "migrate_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "625": {"test": "migrate_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "626": {"test": "migrate_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "627": {"test": "mlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "628": {"test": "mlockall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "629": {"test": "mlockall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "630": {"test": "mkdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "631": {"test": "mkdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "632": {"test": "mkdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "633": {"test": "mkdir05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "634": {"test": "mkdir09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "635": {"test": "mkdirat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "636": {"test": "mkdirat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "637": {"test": "mknod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "638": {"test": "mknod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "639": {"test": "mknod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "640": {"test": "mknod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "641": {"test": "mknod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "642": {"test": "mknod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "643": {"test": "mknod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "644": {"test": "mknod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "645": {"test": "mknod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "646": {"test": "mknodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "647": {"test": "mknodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "648": {"test": "mlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "649": {"test": "mlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "650": {"test": "mlock03", "status": "pass", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0}, "651": {"test": "mlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "652": {"test": "mlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "653": {"test": "mlock201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "654": {"test": "mlock202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "655": {"test": "mlock203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "656": {"test": "qmm01", "status": "pass", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0}, "657": {"test": "mmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "658": {"test": "mmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "659": {"test": "mmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "660": {"test": "mmap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "661": {"test": "mmap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "662": {"test": "mmap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "663": {"test": "mmap08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "664": {"test": "mmap09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "665": {"test": "mmap12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "666": {"test": "mmap13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "667": {"test": "mmap14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "668": {"test": "mmap15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "669": {"test": "mmap16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "670": {"test": "mmap17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "671": {"test": "mmap18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "672": {"test": "mmap19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "673": {"test": "mmap20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "674": {"test": "modify_ldt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "675": {"test": "modify_ldt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "676": {"test": "modify_ldt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "677": {"test": "mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "678": {"test": "mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "679": {"test": "mount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "680": {"test": "mount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "681": {"test": "mount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "682": {"test": "mount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "683": {"test": "mount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "684": {"test": "mount_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "685": {"test": "move_mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "686": {"test": "move_mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "687": {"test": "move_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "688": {"test": "move_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "689": {"test": "move_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "690": {"test": "move_pages04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "691": {"test": "move_pages05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "692": {"test": "move_pages06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "693": {"test": "move_pages07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "694": {"test": "move_pages09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "695": {"test": "move_pages10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "696": {"test": "move_pages11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "697": {"test": "move_pages12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "698": {"test": "mprotect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "699": {"test": "mprotect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "700": {"test": "mprotect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "701": {"test": "mprotect04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "702": {"test": "mprotect05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "703": {"test": "pkey01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "704": {"test": "mq_notify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "705": {"test": "mq_notify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "706": {"test": "mq_notify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "707": {"test": "mq_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "708": {"test": "mq_timedreceive01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "709": {"test": "mq_timedsend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "710": {"test": "mq_unlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "711": {"test": "mremap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "712": {"test": "mremap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "713": {"test": "mremap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "714": {"test": "mremap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "715": {"test": "mremap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "716": {"test": "mremap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "717": {"test": "mseal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "718": {"test": "mseal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "719": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "720": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "721": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "722": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "723": {"test": "msgctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "724": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "725": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "726": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "727": {"test": "msgget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "728": {"test": "msgget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "729": {"test": "msgget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "730": {"test": "msgget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "731": {"test": "msgget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "732": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "733": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "734": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "735": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "736": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "737": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "738": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "739": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "740": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "741": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "742": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "743": {"test": "msync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "744": {"test": "msync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "745": {"test": "msync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "746": {"test": "msync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "747": {"test": "munlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "748": {"test": "munlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "749": {"test": "munlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "750": {"test": "munmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "751": {"test": "munmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "752": {"test": "munmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "753": {"test": "nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "754": {"test": "nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "755": {"test": "nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "756": {"test": "name_to_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "757": {"test": "name_to_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "758": {"test": "nftw01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "759": {"test": "nftw6401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "760": {"test": "nice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "761": {"test": "nice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "762": {"test": "nice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "763": {"test": "nice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "764": {"test": "nice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "765": {"test": "open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "766": {"test": "open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "767": {"test": "open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "768": {"test": "open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "769": {"test": "open06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "770": {"test": "open07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "771": {"test": "open08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "772": {"test": "open09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "773": {"test": "open10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "774": {"test": "open11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "775": {"test": "open12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "776": {"test": "open13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "777": {"test": "open14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "778": {"test": "open15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "779": {"test": "openat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "780": {"test": "openat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "781": {"test": "openat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "782": {"test": "openat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "783": {"test": "openat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "784": {"test": "openat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "785": {"test": "openat203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "786": {"test": "open_by_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "787": {"test": "open_by_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "788": {"test": "open_tree01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "789": {"test": "open_tree02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "790": {"test": "mincore01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "791": {"test": "mincore02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "792": {"test": "mincore03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "793": {"test": "mincore04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "794": {"test": "madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "795": {"test": "madvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "796": {"test": "madvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "797": {"test": "madvise05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "798": {"test": "madvise06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "799": {"test": "madvise07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "800": {"test": "madvise08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "801": {"test": "madvise09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "802": {"test": "madvise10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "803": {"test": "madvise11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "804": {"test": "madvise12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "805": {"test": "newuname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "806": {"test": "pathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "807": {"test": "pathconf02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "808": {"test": "pause01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "809": {"test": "pause02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "810": {"test": "pause03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "811": {"test": "personality01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "812": {"test": "personality02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "813": {"test": "pidfd_getfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "814": {"test": "pidfd_getfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "815": {"test": "pidfd_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "816": {"test": "pidfd_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "817": {"test": "pidfd_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "818": {"test": "pidfd_open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "819": {"test": "pidfd_send_signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "820": {"test": "pidfd_send_signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "821": {"test": "pidfd_send_signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "822": {"test": "pipe01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "823": {"test": "pipe02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "824": {"test": "pipe03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "825": {"test": "pipe04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "826": {"test": "pipe05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "827": {"test": "pipe06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "828": {"test": "pipe07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "829": {"test": "pipe08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "830": {"test": "pipe09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "831": {"test": "pipe10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "832": {"test": "pipe11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "833": {"test": "pipe12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "834": {"test": "pipe13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "835": {"test": "pipe14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "836": {"test": "pipe15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "837": {"test": "pipe2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "838": {"test": "pipe2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "839": {"test": "pipe2_04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "840": {"test": "pivot_root01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "841": {"test": "poll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "842": {"test": "poll02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "843": {"test": "ppoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "844": {"test": "prctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "845": {"test": "prctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "846": {"test": "prctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "847": {"test": "prctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "848": {"test": "prctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "849": {"test": "prctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "850": {"test": "prctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "851": {"test": "prctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "852": {"test": "prctl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "853": {"test": "pread01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "854": {"test": "pread01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "855": {"test": "pread02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "856": {"test": "pread02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "857": {"test": "preadv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "858": {"test": "preadv01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "859": {"test": "preadv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "860": {"test": "preadv02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "861": {"test": "preadv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "862": {"test": "preadv03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "863": {"test": "preadv201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "864": {"test": "preadv201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "865": {"test": "preadv202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "866": {"test": "preadv202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "867": {"test": "preadv203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "868": {"test": "preadv203_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "869": {"test": "profil01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "870": {"test": "process_vm_readv01", "status": "pass", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0}, "871": {"test": "process_vm_readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "872": {"test": "process_vm_readv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "873": {"test": "process_vm_writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "874": {"test": "process_vm_writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "875": {"test": "process_madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "876": {"test": "prot_hsymlinks", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "877": {"test": "dirtyc0w", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "878": {"test": "dirtyc0w_shmem", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "879": {"test": "dirtypipe", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "880": {"test": "pselect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "881": {"test": "pselect01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "882": {"test": "pselect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "883": {"test": "pselect02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "884": {"test": "pselect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "885": {"test": "pselect03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "886": {"test": "ptrace01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "887": {"test": "ptrace02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "888": {"test": "ptrace03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "889": {"test": "ptrace04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "890": {"test": "ptrace05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "891": {"test": "ptrace06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "892": {"test": "ptrace07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "893": {"test": "ptrace08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "894": {"test": "ptrace09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "895": {"test": "ptrace10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "896": {"test": "ptrace11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "897": {"test": "pwrite01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "898": {"test": "pwrite02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "899": {"test": "pwrite03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "900": {"test": "pwrite04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "901": {"test": "pwrite01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "902": {"test": "pwrite02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "903": {"test": "pwrite03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "904": {"test": "pwrite04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "905": {"test": "pwritev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "906": {"test": "pwritev01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "907": {"test": "pwritev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "908": {"test": "pwritev02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "909": {"test": "pwritev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "910": {"test": "pwritev03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "911": {"test": "pwritev201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "912": {"test": "pwritev201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "913": {"test": "pwritev202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "914": {"test": "pwritev202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "915": {"test": "quotactl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "916": {"test": "quotactl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "917": {"test": "quotactl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "918": {"test": "quotactl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "919": {"test": "quotactl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "920": {"test": "quotactl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "921": {"test": "quotactl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "922": {"test": "quotactl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "923": {"test": "quotactl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "924": {"test": "read01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "925": {"test": "read02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "926": {"test": "read03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "927": {"test": "read04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "928": {"test": "readahead01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "929": {"test": "readahead02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "930": {"test": "readdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "931": {"test": "readdir21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "932": {"test": "readlink01A", "status": "pass", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "933": {"test": "readlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "934": {"test": "readlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "935": {"test": "readlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "936": {"test": "readlinkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "937": {"test": "readv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "938": {"test": "readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "939": {"test": "realpath01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "940": {"test": "reboot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "941": {"test": "reboot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "942": {"test": "recv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "943": {"test": "recvfrom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "944": {"test": "recvmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "945": {"test": "recvmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "946": {"test": "recvmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "947": {"test": "recvmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "948": {"test": "remap_file_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "949": {"test": "remap_file_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "950": {"test": "removexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "951": {"test": "removexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "952": {"test": "rename01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "953": {"test": "rename01A", "status": "pass", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0}, "954": {"test": "rename03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "955": {"test": "rename04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "956": {"test": "rename05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "957": {"test": "rename06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "958": {"test": "rename07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "959": {"test": "rename08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "960": {"test": "rename09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "961": {"test": "rename10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "962": {"test": "rename11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "963": {"test": "rename12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "964": {"test": "rename13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "965": {"test": "rename14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "966": {"test": "rename15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "967": {"test": "renameat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "968": {"test": "renameat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "969": {"test": "renameat202", "status": "pass", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0}, "970": {"test": "request_key01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "971": {"test": "request_key02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "972": {"test": "request_key03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "973": {"test": "request_key04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "974": {"test": "request_key05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "975": {"test": "request_key06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "976": {"test": "rmdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "977": {"test": "rmdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "978": {"test": "rmdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "979": {"test": "rmdir03A", "status": "pass", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0}, "980": {"test": "rt_sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "981": {"test": "rt_sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "982": {"test": "rt_sigaction03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "983": {"test": "rt_sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "984": {"test": "rt_sigprocmask02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "985": {"test": "rt_sigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "986": {"test": "rt_sigqueueinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "987": {"test": "rt_sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "988": {"test": "rt_sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "989": {"test": "rt_tgsigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "990": {"test": "sbrk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "991": {"test": "sbrk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "992": {"test": "sbrk03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "993": {"test": "sched_get_priority_max01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "994": {"test": "sched_get_priority_max02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "995": {"test": "sched_get_priority_min01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "996": {"test": "sched_get_priority_min02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "997": {"test": "sched_getparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "998": {"test": "sched_getparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "999": {"test": "sched_rr_get_interval01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1000": {"test": "sched_rr_get_interval02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1001": {"test": "sched_rr_get_interval03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1002": {"test": "sched_setparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1003": {"test": "sched_setparam02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1004": {"test": "sched_setparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1005": {"test": "sched_setparam04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1006": {"test": "sched_setparam05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1007": {"test": "sched_getscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1008": {"test": "sched_getscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1009": {"test": "sched_setscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1010": {"test": "sched_setscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1011": {"test": "sched_setscheduler03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1012": {"test": "sched_setscheduler04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1013": {"test": "sched_yield01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1014": {"test": "sched_setaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1015": {"test": "sched_getaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1016": {"test": "sched_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1017": {"test": "sched_getattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1018": {"test": "sched_getattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1019": {"test": "seccomp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1020": {"test": "select01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1021": {"test": "select02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1022": {"test": "select03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1023": {"test": "select04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1024": {"test": "semctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1025": {"test": "semctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1026": {"test": "semctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1027": {"test": "semctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1028": {"test": "semctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1029": {"test": "semctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1030": {"test": "semctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1031": {"test": "semctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1032": {"test": "semctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1033": {"test": "semget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1034": {"test": "semget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1035": {"test": "semget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1036": {"test": "semop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1037": {"test": "semop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1038": {"test": "semop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1039": {"test": "semop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1040": {"test": "semop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1041": {"test": "send01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1042": {"test": "send02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1043": {"test": "sendfile02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1044": {"test": "sendfile02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1045": {"test": "sendfile03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1046": {"test": "sendfile03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1047": {"test": "sendfile04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1048": {"test": "sendfile04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1049": {"test": "sendfile05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1050": {"test": "sendfile05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1051": {"test": "sendfile06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1052": {"test": "sendfile06_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1053": {"test": "sendfile07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1054": {"test": "sendfile07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1055": {"test": "sendfile08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1056": {"test": "sendfile08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1057": {"test": "sendfile09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1058": {"test": "sendfile09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1059": {"test": "sendmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1060": {"test": "sendmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1061": {"test": "sendmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1062": {"test": "sendmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1063": {"test": "sendmmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1064": {"test": "sendto01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1065": {"test": "sendto02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1066": {"test": "sendto03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1067": {"test": "set_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1068": {"test": "set_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1069": {"test": "set_mempolicy03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1070": {"test": "set_mempolicy04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1071": {"test": "set_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1072": {"test": "set_thread_area01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1073": {"test": "set_tid_address01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1074": {"test": "setdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1075": {"test": "setdomainname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1076": {"test": "setdomainname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1077": {"test": "setfsgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1078": {"test": "setfsgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1079": {"test": "setfsgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1080": {"test": "setfsgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1081": {"test": "setfsgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1082": {"test": "setfsgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1083": {"test": "setfsuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1084": {"test": "setfsuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1085": {"test": "setfsuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1086": {"test": "setfsuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1087": {"test": "setfsuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1088": {"test": "setfsuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1089": {"test": "setfsuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1090": {"test": "setfsuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1091": {"test": "setgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1092": {"test": "setgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1093": {"test": "setgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1094": {"test": "setgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1095": {"test": "setgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1096": {"test": "setgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1097": {"test": "setegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1098": {"test": "setegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1099": {"test": "sgetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1100": {"test": "setgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1101": {"test": "setgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1102": {"test": "setgroups02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1103": {"test": "setgroups02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1104": {"test": "setgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1105": {"test": "setgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1106": {"test": "sethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1107": {"test": "sethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1108": {"test": "sethostname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1109": {"test": "setitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1110": {"test": "setitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1111": {"test": "setns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1112": {"test": "setns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1113": {"test": "setpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1114": {"test": "setpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1115": {"test": "setpgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1116": {"test": "setpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1117": {"test": "setpgrp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1118": {"test": "setpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1119": {"test": "setpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1120": {"test": "setregid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1121": {"test": "setregid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1122": {"test": "setregid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1123": {"test": "setregid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1124": {"test": "setregid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1125": {"test": "setregid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1126": {"test": "setregid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1127": {"test": "setregid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1128": {"test": "setresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1129": {"test": "setresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1130": {"test": "setresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1131": {"test": "setresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1132": {"test": "setresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1133": {"test": "setresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1134": {"test": "setresgid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1135": {"test": "setresgid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1136": {"test": "setresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1137": {"test": "setresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1138": {"test": "setresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1139": {"test": "setresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1140": {"test": "setresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1141": {"test": "setresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1142": {"test": "setresuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1143": {"test": "setresuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1144": {"test": "setresuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1145": {"test": "setresuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1146": {"test": "setreuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1147": {"test": "setreuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1148": {"test": "setreuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1149": {"test": "setreuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1150": {"test": "setreuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1151": {"test": "setreuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1152": {"test": "setreuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1153": {"test": "setreuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1154": {"test": "setreuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1155": {"test": "setreuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1156": {"test": "setreuid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1157": {"test": "setreuid06_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1158": {"test": "setreuid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1159": {"test": "setreuid07_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1160": {"test": "setrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1161": {"test": "setrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1162": {"test": "setrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1163": {"test": "setrlimit04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1164": {"test": "setrlimit05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1165": {"test": "setrlimit06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1166": {"test": "setsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1167": {"test": "setsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1168": {"test": "setsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1169": {"test": "setsockopt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1170": {"test": "setsockopt04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1171": {"test": "setsockopt05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1172": {"test": "setsockopt06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1173": {"test": "setsockopt07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1174": {"test": "setsockopt08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1175": {"test": "setsockopt09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1176": {"test": "setsockopt10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1177": {"test": "settimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1178": {"test": "settimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1179": {"test": "setuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1180": {"test": "setuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1181": {"test": "setuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1182": {"test": "setuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1183": {"test": "setuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1184": {"test": "setuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1185": {"test": "setxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1186": {"test": "setxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1187": {"test": "setxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1188": {"test": "shmat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1189": {"test": "shmat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1190": {"test": "shmat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1191": {"test": "shmat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1192": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1193": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1194": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1195": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1196": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1197": {"test": "shmctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1198": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1199": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1200": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1201": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1202": {"test": "shmget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1203": {"test": "shmget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1204": {"test": "shmget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1205": {"test": "shmget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1206": {"test": "shmget06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1207": {"test": "shutdown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1208": {"test": "shutdown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1209": {"test": "sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1210": {"test": "sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1211": {"test": "sigaltstack01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1212": {"test": "sigaltstack02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1213": {"test": "sighold02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1214": {"test": "signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1215": {"test": "signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1216": {"test": "signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1217": {"test": "signal04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1218": {"test": "signal05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1219": {"test": "signal06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1220": {"test": "signalfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1221": {"test": "signalfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1222": {"test": "signalfd4_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1223": {"test": "signalfd4_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1224": {"test": "sigpending02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1225": {"test": "sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1226": {"test": "sigrelse01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1227": {"test": "sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1228": {"test": "sigsuspend02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1229": {"test": "sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1230": {"test": "sigwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1231": {"test": "sigwaitinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1232": {"test": "socket01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1233": {"test": "socket02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1234": {"test": "socketcall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1235": {"test": "socketcall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1236": {"test": "socketcall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1237": {"test": "socketpair01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1238": {"test": "socketpair02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1239": {"test": "sockioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1240": {"test": "splice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1241": {"test": "splice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1242": {"test": "splice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1243": {"test": "splice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1244": {"test": "splice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1245": {"test": "splice06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1246": {"test": "splice07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1247": {"test": "splice08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1248": {"test": "splice09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1249": {"test": "tee01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1250": {"test": "tee02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1251": {"test": "ssetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1252": {"test": "stat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1253": {"test": "stat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1254": {"test": "stat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1255": {"test": "stat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1256": {"test": "stat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1257": {"test": "stat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1258": {"test": "stat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1259": {"test": "stat04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1260": {"test": "statmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1261": {"test": "statmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1262": {"test": "statmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1263": {"test": "statmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1264": {"test": "statmount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1265": {"test": "statmount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1266": {"test": "statmount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1267": {"test": "statmount08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1268": {"test": "statfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1269": {"test": "statfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1270": {"test": "statfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1271": {"test": "statfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1272": {"test": "statfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1273": {"test": "statfs03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1274": {"test": "statvfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1275": {"test": "statvfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1276": {"test": "stime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1277": {"test": "stime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1278": {"test": "string01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1279": {"test": "swapoff01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1280": {"test": "swapoff02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1281": {"test": "swapon01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1282": {"test": "swapon02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1283": {"test": "swapon03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1284": {"test": "switch01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1285": {"test": "symlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1286": {"test": "symlink02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1287": {"test": "symlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1288": {"test": "symlink04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1289": {"test": "symlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1290": {"test": "sync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1291": {"test": "syncfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1292": {"test": "sync_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1293": {"test": "sync_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1294": {"test": "syscall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1295": {"test": "sysconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1296": {"test": "sysctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1297": {"test": "sysctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1298": {"test": "sysctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1299": {"test": "sysfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1300": {"test": "sysfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1301": {"test": "sysfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1302": {"test": "sysfs04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1303": {"test": "sysfs05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1304": {"test": "sysinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1305": {"test": "sysinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1306": {"test": "sysinfo03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1307": {"test": "syslog11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1308": {"test": "syslog12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1309": {"test": "tgkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1310": {"test": "tgkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1311": {"test": "tgkill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1312": {"test": "time01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1313": {"test": "times01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1314": {"test": "times03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1315": {"test": "timerfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1316": {"test": "timerfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1317": {"test": "timerfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1318": {"test": "timerfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1319": {"test": "timerfd_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1320": {"test": "timerfd_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1321": {"test": "timerfd_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1322": {"test": "timer_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1323": {"test": "timer_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1324": {"test": "timer_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1325": {"test": "timer_delete01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1326": {"test": "timer_delete02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1327": {"test": "timer_getoverrun01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1328": {"test": "timer_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1329": {"test": "timer_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1330": {"test": "timer_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1331": {"test": "timer_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1332": {"test": "tkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1333": {"test": "tkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1334": {"test": "truncate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1335": {"test": "truncate02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1336": {"test": "truncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1337": {"test": "truncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1338": {"test": "ulimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1339": {"test": "umask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1340": {"test": "uname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1341": {"test": "uname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1342": {"test": "uname04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1343": {"test": "unlink01", "status": "pass", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "1344": {"test": "unlink05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1345": {"test": "unlink07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1346": {"test": "unlink08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1347": {"test": "unlink09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1348": {"test": "unlink10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1349": {"test": "unlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1350": {"test": "unshare01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1351": {"test": "unshare02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1352": {"test": "umount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1353": {"test": "umount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1354": {"test": "umount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1355": {"test": "umount2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1356": {"test": "umount2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1357": {"test": "userfaultfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1358": {"test": "ustat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1359": {"test": "ustat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1360": {"test": "utime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1361": {"test": "utime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1362": {"test": "utime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1363": {"test": "utime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1364": {"test": "utime05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1365": {"test": "utime06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1366": {"test": "utime07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1367": {"test": "utimes01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1368": {"test": "utimensat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1369": {"test": "vfork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1370": {"test": "vfork02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1371": {"test": "vhangup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1372": {"test": "vhangup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1373": {"test": "vmsplice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1374": {"test": "vmsplice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1375": {"test": "vmsplice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1376": {"test": "vmsplice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1377": {"test": "wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1378": {"test": "wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1379": {"test": "wait401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1380": {"test": "wait402", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1381": {"test": "wait403", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1382": {"test": "waitpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1383": {"test": "waitpid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1384": {"test": "waitpid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1385": {"test": "waitpid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1386": {"test": "waitpid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1387": {"test": "waitpid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1388": {"test": "waitpid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1389": {"test": "waitpid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1390": {"test": "waitpid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1391": {"test": "waitpid12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1392": {"test": "waitpid13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1393": {"test": "waitid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1394": {"test": "waitid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1395": {"test": "waitid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1396": {"test": "waitid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1397": {"test": "waitid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1398": {"test": "waitid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1399": {"test": "waitid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1400": {"test": "waitid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1401": {"test": "waitid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1402": {"test": "waitid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1403": {"test": "waitid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1404": {"test": "write01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1405": {"test": "write02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1406": {"test": "write03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1407": {"test": "write04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1408": {"test": "write05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1409": {"test": "write06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1410": {"test": "writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1411": {"test": "writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1412": {"test": "writev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1413": {"test": "writev05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1414": {"test": "writev06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1415": {"test": "writev07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1416": {"test": "perf_event_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1417": {"test": "perf_event_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1418": {"test": "futex_cmp_requeue01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1419": {"test": "futex_cmp_requeue02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1420": {"test": "futex_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1421": {"test": "futex_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1422": {"test": "futex_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1423": {"test": "futex_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1424": {"test": "futex_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1425": {"test": "futex_waitv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1426": {"test": "futex_waitv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1427": {"test": "futex_waitv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1428": {"test": "futex_wake01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1429": {"test": "futex_wake02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1430": {"test": "futex_wake03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1431": {"test": "futex_wake04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1432": {"test": "futex_wait_bitset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1433": {"test": "memfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1434": {"test": "memfd_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1435": {"test": "memfd_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1436": {"test": "memfd_create04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1437": {"test": "copy_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1438": {"test": "copy_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1439": {"test": "copy_file_range03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1440": {"test": "statx01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1441": {"test": "statx02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1442": {"test": "statx03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1443": {"test": "statx04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1444": {"test": "statx05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1445": {"test": "statx06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1446": {"test": "statx07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1447": {"test": "statx08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1448": {"test": "statx09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1449": {"test": "statx10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1450": {"test": "statx11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1451": {"test": "statx12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1452": {"test": "membarrier01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1453": {"test": "io_uring01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1454": {"test": "io_uring02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1455": {"test": "perf_event_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "summary": {"passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}}} 2026-07-04 18:20:04.626799 2026-07-04 18:21:14.637664 +487 13 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 70 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-04_18:21:14.json {"tool": "kirk", "test_type": {}, "time": {"duration_sec": 16.05}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abocEYnuo as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09334540367126465}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08135700225830078}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acciDxiuH as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 44091\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09747791290283203}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08895277976989746}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 34333\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 33775\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 43029\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10982036590576172}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc18RubP as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5274720191955566}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accWThPkm as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.26884007453918457}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11047649383544922}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accFi7pD8 as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accFi7pD8/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1349468231201172}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accYgxxY5 as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accYgxxY5/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15117573738098145}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accK4J8gb as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (1744)\\nacct02.c:193: TINFO: == entry 2 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4364)\\nacct02.c:193: TINFO: == entry 3 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 4 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4364)\\nacct02.c:193: TINFO: == entry 5 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 6 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 7 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 8 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 9 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 10 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 11 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 12 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 13 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 14 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 15 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 16 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 17 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 18 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 19 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 20 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 21 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 22 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 23 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 24 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 25 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 26 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 27 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 28 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 29 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 30 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 31 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 32 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 33 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 34 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 35 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 36 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 37 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 38 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 39 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 40 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 41 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 42 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4362)\\nacct02.c:193: TINFO: == entry 43 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (9)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 44 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (9)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 45 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4365)\\nacct02.c:193: TINFO: == entry 46 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 4353 (4363)\\nacct02.c:193: TINFO: == entry 47 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 47\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.2224464416503906}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20679926872253418}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13017034530639648}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1627333164215088}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19837284088134766}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.4676778316497803}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12075543403625488}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1736738681793213}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15886592864990234}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1943802833557129}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17781519889831543}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.2105863094329834}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1234757900238037}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1736204624176025}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13588809967041016}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binTJcmJK as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09400177001953125}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09573554992675781}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binVJP8Of as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08882665634155273}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binaBST6O as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13609766960144043}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin9dpTi6 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11090254783630371}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "36": {"test": "bpf_prog05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "37": {"test": "bpf_prog06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "38": {"test": "bpf_prog07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "39": {"test": "brk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "40": {"test": "brk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "41": {"test": "capget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "42": {"test": "capget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "43": {"test": "capset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "44": {"test": "capset02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "45": {"test": "capset03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "46": {"test": "capset04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "47": {"test": "cacheflush01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "48": {"test": "cachestat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "49": {"test": "cachestat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "50": {"test": "cachestat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "51": {"test": "cachestat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "52": {"test": "chdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "53": {"test": "chdir01A", "status": "pass", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0}, "54": {"test": "chdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "55": {"test": "chmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "56": {"test": "chmod01A", "status": "pass", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0}, "57": {"test": "chmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "58": {"test": "chmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "59": {"test": "chmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "60": {"test": "chmod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "61": {"test": "chmod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "62": {"test": "chmod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "63": {"test": "chown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "64": {"test": "chown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "65": {"test": "chown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "66": {"test": "chown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "67": {"test": "chown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "68": {"test": "chown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "69": {"test": "chown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "70": {"test": "chown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "71": {"test": "chown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "72": {"test": "chown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "73": {"test": "chroot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "74": {"test": "chroot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "75": {"test": "chroot03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "76": {"test": "chroot04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "77": {"test": "clock_adjtime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "78": {"test": "clock_adjtime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "79": {"test": "clock_getres01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "80": {"test": "clock_nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "81": {"test": "clock_nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "82": {"test": "clock_nanosleep03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "83": {"test": "clock_nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "84": {"test": "clock_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "85": {"test": "clock_gettime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "86": {"test": "clock_gettime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "87": {"test": "clock_gettime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "88": {"test": "leapsec01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "89": {"test": "clock_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "90": {"test": "clock_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "91": {"test": "clock_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "92": {"test": "clone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "93": {"test": "clone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "94": {"test": "clone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "95": {"test": "clone04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "96": {"test": "clone05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "97": {"test": "clone06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "98": {"test": "clone07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "99": {"test": "clone08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "100": {"test": "clone09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "101": {"test": "clone301", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "102": {"test": "clone302", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "103": {"test": "clone303", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "104": {"test": "close01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "105": {"test": "close02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "106": {"test": "close_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "107": {"test": "close_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "108": {"test": "confstr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "109": {"test": "connect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "110": {"test": "connect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "111": {"test": "creat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "112": {"test": "creat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "113": {"test": "creat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "114": {"test": "creat05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "115": {"test": "creat06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "116": {"test": "creat07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "117": {"test": "creat08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "118": {"test": "creat09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "119": {"test": "delete_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "120": {"test": "delete_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "121": {"test": "delete_module03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "122": {"test": "dup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "123": {"test": "dup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "124": {"test": "dup03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "125": {"test": "dup04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "126": {"test": "dup05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "127": {"test": "dup06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "128": {"test": "dup07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "129": {"test": "dup201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "130": {"test": "dup202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "131": {"test": "dup203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "132": {"test": "dup204", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "133": {"test": "dup205", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "134": {"test": "dup206", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "135": {"test": "dup207", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "136": {"test": "dup3_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "137": {"test": "dup3_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "138": {"test": "epoll_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "139": {"test": "epoll_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "140": {"test": "epoll_create1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "141": {"test": "epoll_create1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "142": {"test": "epoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "143": {"test": "epoll_ctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "144": {"test": "epoll_ctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "145": {"test": "epoll_ctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "146": {"test": "epoll_ctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "147": {"test": "epoll_ctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "148": {"test": "epoll_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "149": {"test": "epoll_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "150": {"test": "epoll_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "151": {"test": "epoll_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "152": {"test": "epoll_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "153": {"test": "epoll_wait06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "154": {"test": "epoll_wait07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "155": {"test": "epoll_pwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "156": {"test": "epoll_pwait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "157": {"test": "epoll_pwait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "158": {"test": "epoll_pwait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "159": {"test": "epoll_pwait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "160": {"test": "eventfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "161": {"test": "eventfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "162": {"test": "eventfd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "163": {"test": "eventfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "164": {"test": "eventfd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "165": {"test": "eventfd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "166": {"test": "eventfd2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "167": {"test": "eventfd2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "168": {"test": "eventfd2_03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "169": {"test": "execl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "170": {"test": "execle01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "171": {"test": "execlp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "172": {"test": "execv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "173": {"test": "execve01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "174": {"test": "execve02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "175": {"test": "execve03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "176": {"test": "execve04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "177": {"test": "execve05", "status": "pass", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0}, "178": {"test": "execve06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "179": {"test": "execvp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "180": {"test": "execveat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "181": {"test": "execveat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "182": {"test": "execveat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "183": {"test": "exit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "184": {"test": "exit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "185": {"test": "exit_group01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "186": {"test": "faccessat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "187": {"test": "faccessat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "188": {"test": "faccessat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "189": {"test": "faccessat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "190": {"test": "fallocate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "191": {"test": "fallocate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "192": {"test": "fallocate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "193": {"test": "fallocate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "194": {"test": "fallocate05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "195": {"test": "fallocate06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "196": {"test": "fsetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "197": {"test": "fsetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "198": {"test": "posix_fadvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "199": {"test": "posix_fadvise01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "200": {"test": "posix_fadvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "201": {"test": "posix_fadvise02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "202": {"test": "posix_fadvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "203": {"test": "posix_fadvise03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "204": {"test": "posix_fadvise04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "205": {"test": "posix_fadvise04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "206": {"test": "fchdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "207": {"test": "fchdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "208": {"test": "fchdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "209": {"test": "fchmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "210": {"test": "fchmod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "211": {"test": "fchmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "212": {"test": "fchmod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "213": {"test": "fchmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "214": {"test": "fchmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "215": {"test": "fchmodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "216": {"test": "fchmodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "217": {"test": "fchmodat2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "218": {"test": "fchmodat2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "219": {"test": "fchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "220": {"test": "fchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "221": {"test": "fchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "222": {"test": "fchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "223": {"test": "fchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "224": {"test": "fchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "225": {"test": "fchown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "226": {"test": "fchown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "227": {"test": "fchown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "228": {"test": "fchown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "229": {"test": "fchownat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "230": {"test": "fchownat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "231": {"test": "fcntl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "232": {"test": "fcntl01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "233": {"test": "fcntl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "234": {"test": "fcntl02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "235": {"test": "fcntl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "236": {"test": "fcntl03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "237": {"test": "fcntl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "238": {"test": "fcntl04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "239": {"test": "fcntl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "240": {"test": "fcntl05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "241": {"test": "fcntl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "242": {"test": "fcntl07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "243": {"test": "fcntl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "244": {"test": "fcntl08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "245": {"test": "fcntl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "246": {"test": "fcntl09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "247": {"test": "fcntl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "248": {"test": "fcntl10_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "249": {"test": "fcntl11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "250": {"test": "fcntl11_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "251": {"test": "fcntl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "252": {"test": "fcntl12_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "253": {"test": "fcntl13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "254": {"test": "fcntl13_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "255": {"test": "fcntl14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "256": {"test": "fcntl14_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "257": {"test": "fcntl15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "258": {"test": "fcntl15_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "259": {"test": "fcntl16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "260": {"test": "fcntl16_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "261": {"test": "fcntl17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "262": {"test": "fcntl17_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "263": {"test": "fcntl18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "264": {"test": "fcntl18_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "265": {"test": "fcntl19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "266": {"test": "fcntl19_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "267": {"test": "fcntl20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "268": {"test": "fcntl20_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "269": {"test": "fcntl21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "270": {"test": "fcntl21_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "271": {"test": "fcntl22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "272": {"test": "fcntl22_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "273": {"test": "fcntl23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "274": {"test": "fcntl23_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "275": {"test": "fcntl24", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "276": {"test": "fcntl24_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "277": {"test": "fcntl25", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "278": {"test": "fcntl25_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "279": {"test": "fcntl26", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "280": {"test": "fcntl26_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "281": {"test": "fcntl27", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "282": {"test": "fcntl27_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "283": {"test": "fcntl29", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "284": {"test": "fcntl29_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "285": {"test": "fcntl30", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "286": {"test": "fcntl30_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "287": {"test": "fcntl31", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "288": {"test": "fcntl31_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "289": {"test": "fcntl32", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "290": {"test": "fcntl32_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "291": {"test": "fcntl33", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "292": {"test": "fcntl33_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "293": {"test": "fcntl34", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "294": {"test": "fcntl34_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "295": {"test": "fcntl35", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "296": {"test": "fcntl35_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "297": {"test": "fcntl36", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "298": {"test": "fcntl36_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "299": {"test": "fcntl37", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "300": {"test": "fcntl37_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "301": {"test": "fcntl38", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "302": {"test": "fcntl38_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "303": {"test": "fcntl39", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "304": {"test": "fcntl39_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "305": {"test": "fdatasync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "306": {"test": "fdatasync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "307": {"test": "fdatasync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "308": {"test": "fgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "309": {"test": "fgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "310": {"test": "fgetxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "311": {"test": "finit_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "312": {"test": "finit_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "313": {"test": "flistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "314": {"test": "flistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "315": {"test": "flistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "316": {"test": "flock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "317": {"test": "flock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "318": {"test": "flock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "319": {"test": "flock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "320": {"test": "flock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "321": {"test": "fmtmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "322": {"test": "fork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "323": {"test": "fork03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "324": {"test": "fork04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "325": {"test": "fork05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "326": {"test": "fork06", "status": "pass", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0}, "327": {"test": "fork07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "328": {"test": "fork08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "329": {"test": "fork09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "330": {"test": "fork10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "331": {"test": "fork11", "status": "pass", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0}, "332": {"test": "fork13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "333": {"test": "fork14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "334": {"test": "fpathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "335": {"test": "fremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "336": {"test": "fremovexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "337": {"test": "fsconfig01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "338": {"test": "fsconfig02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "339": {"test": "fsconfig03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "340": {"test": "fsmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "341": {"test": "fsmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "342": {"test": "fsopen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "343": {"test": "fsopen02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "344": {"test": "fspick01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "345": {"test": "fspick02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "346": {"test": "fstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "347": {"test": "fstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "348": {"test": "fstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "349": {"test": "fstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "350": {"test": "fstatat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "351": {"test": "fstatfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "352": {"test": "fstatfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "353": {"test": "fstatfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "354": {"test": "fstatfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "355": {"test": "fsync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "356": {"test": "fsync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "357": {"test": "fsync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "358": {"test": "fsync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "359": {"test": "ftruncate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "360": {"test": "ftruncate01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "361": {"test": "ftruncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "362": {"test": "ftruncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "363": {"test": "ftruncate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "364": {"test": "ftruncate04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "365": {"test": "futimesat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "366": {"test": "getcontext01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "367": {"test": "getcpu01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "368": {"test": "getcpu02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "369": {"test": "getcwd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "370": {"test": "getcwd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "371": {"test": "getcwd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "372": {"test": "getcwd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "373": {"test": "getdents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "374": {"test": "getdents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "375": {"test": "getdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "376": {"test": "getegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "377": {"test": "getegid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "378": {"test": "getegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "379": {"test": "getegid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "380": {"test": "geteuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "381": {"test": "geteuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "382": {"test": "geteuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "383": {"test": "geteuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "384": {"test": "getgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "385": {"test": "getgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "386": {"test": "getgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "387": {"test": "getgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "388": {"test": "getgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "389": {"test": "getgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "390": {"test": "getgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "391": {"test": "getgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "392": {"test": "gethostbyname_r01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "393": {"test": "gethostid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "394": {"test": "gethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "395": {"test": "gethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "396": {"test": "getitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "397": {"test": "getitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "398": {"test": "getpagesize01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "399": {"test": "getpeername01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "400": {"test": "getpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "401": {"test": "getpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "402": {"test": "getpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "403": {"test": "getpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "404": {"test": "getpid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "405": {"test": "getppid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "406": {"test": "getppid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "407": {"test": "getpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "408": {"test": "getpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "409": {"test": "getrandom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "410": {"test": "getrandom02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "411": {"test": "getrandom03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "412": {"test": "getrandom04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "413": {"test": "getrandom05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "414": {"test": "getresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "415": {"test": "getresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "416": {"test": "getresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "417": {"test": "getresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "418": {"test": "getresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "419": {"test": "getresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "420": {"test": "getresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "421": {"test": "getresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "422": {"test": "getresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "423": {"test": "getresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "424": {"test": "getresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "425": {"test": "getresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "426": {"test": "getrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "427": {"test": "getrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "428": {"test": "getrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "429": {"test": "get_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "430": {"test": "get_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "431": {"test": "get_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "432": {"test": "getrusage01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "433": {"test": "getrusage02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "434": {"test": "getrusage03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "435": {"test": "getrusage04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "436": {"test": "getsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "437": {"test": "getsid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "438": {"test": "getsockname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "439": {"test": "getsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "440": {"test": "getsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "441": {"test": "gettid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "442": {"test": "gettid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "443": {"test": "gettimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "444": {"test": "gettimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "445": {"test": "getuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "446": {"test": "getuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "447": {"test": "getuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "448": {"test": "getuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "449": {"test": "getxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "450": {"test": "getxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "451": {"test": "getxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "452": {"test": "getxattr04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "453": {"test": "getxattr05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "454": {"test": "init_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "455": {"test": "init_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "456": {"test": "ioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "457": {"test": "ioctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "458": {"test": "ioctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "459": {"test": "ioctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "460": {"test": "ioctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "461": {"test": "ioctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "462": {"test": "ioctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "463": {"test": "ioctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "464": {"test": "ioctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "465": {"test": "ioctl_loop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "466": {"test": "ioctl_loop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "467": {"test": "ioctl_loop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "468": {"test": "ioctl_loop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "469": {"test": "ioctl_loop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "470": {"test": "ioctl_loop06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "471": {"test": "ioctl_loop07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "472": {"test": "ioctl_ns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "473": {"test": "ioctl_ns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "474": {"test": "ioctl_ns03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "475": {"test": "ioctl_ns04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "476": {"test": "ioctl_ns05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "477": {"test": "ioctl_ns06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "478": {"test": "ioctl_ns07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "479": {"test": "ioctl_sg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "480": {"test": "ioctl_ficlone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "481": {"test": "ioctl_ficlone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "482": {"test": "ioctl_ficlone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "483": {"test": "ioctl_ficlonerange01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "484": {"test": "ioctl_ficlonerange02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "485": {"test": "inotify_init1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "486": {"test": "inotify_init1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "487": {"test": "inotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "488": {"test": "inotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "489": {"test": "inotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "490": {"test": "inotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "491": {"test": "inotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "492": {"test": "inotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "493": {"test": "inotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "494": {"test": "inotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "495": {"test": "inotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "496": {"test": "inotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "497": {"test": "inotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "498": {"test": "inotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "499": {"test": "fanotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "500": {"test": "fanotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "501": {"test": "fanotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "502": {"test": "fanotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "503": {"test": "fanotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "504": {"test": "fanotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "505": {"test": "fanotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "506": {"test": "fanotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "507": {"test": "fanotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "508": {"test": "fanotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "509": {"test": "fanotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "510": {"test": "fanotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "511": {"test": "fanotify13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "512": {"test": "fanotify14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "513": {"test": "fanotify15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "514": {"test": "fanotify16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "515": {"test": "fanotify17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "516": {"test": "fanotify18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "517": {"test": "fanotify19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "518": {"test": "fanotify20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "519": {"test": "fanotify21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "520": {"test": "fanotify22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "521": {"test": "fanotify23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "522": {"test": "ioperm01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "523": {"test": "ioperm02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "524": {"test": "iopl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "525": {"test": "iopl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "526": {"test": "ioprio_get01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "527": {"test": "ioprio_set01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "528": {"test": "ioprio_set02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "529": {"test": "ioprio_set03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "530": {"test": "io_cancel01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "531": {"test": "io_cancel02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "532": {"test": "io_destroy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "533": {"test": "io_destroy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "534": {"test": "io_getevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "535": {"test": "io_getevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "536": {"test": "io_pgetevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "537": {"test": "io_pgetevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "538": {"test": "io_setup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "539": {"test": "io_setup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "540": {"test": "io_submit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "541": {"test": "io_submit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "542": {"test": "io_submit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "543": {"test": "keyctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "544": {"test": "keyctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "545": {"test": "keyctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "546": {"test": "keyctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "547": {"test": "keyctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "548": {"test": "keyctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "549": {"test": "keyctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "550": {"test": "keyctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "551": {"test": "keyctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "552": {"test": "kcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "553": {"test": "kcmp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "554": {"test": "kcmp03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "555": {"test": "kill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "556": {"test": "kill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "557": {"test": "kill05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "558": {"test": "kill06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "559": {"test": "kill07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "560": {"test": "kill08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "561": {"test": "kill09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "562": {"test": "kill10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "563": {"test": "kill11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "564": {"test": "kill12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "565": {"test": "kill13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "566": {"test": "landlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "567": {"test": "landlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "568": {"test": "landlock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "569": {"test": "landlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "570": {"test": "landlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "571": {"test": "landlock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "572": {"test": "landlock07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "573": {"test": "landlock08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "574": {"test": "lchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "575": {"test": "lchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "576": {"test": "lchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "577": {"test": "lchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "578": {"test": "lchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "579": {"test": "lchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "580": {"test": "lgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "581": {"test": "lgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "582": {"test": "link01", "status": "pass", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0}, "583": {"test": "link02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "584": {"test": "link04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "585": {"test": "link05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "586": {"test": "link08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "587": {"test": "linkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "588": {"test": "linkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "589": {"test": "listen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "590": {"test": "listmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "591": {"test": "listmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "592": {"test": "listmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "593": {"test": "listmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "594": {"test": "listxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "595": {"test": "listxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "596": {"test": "listxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "597": {"test": "llistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "598": {"test": "llistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "599": {"test": "llistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "600": {"test": "llseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "601": {"test": "llseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "602": {"test": "llseek03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "603": {"test": "lremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "604": {"test": "lseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "605": {"test": "lseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "606": {"test": "lseek07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "607": {"test": "lseek11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "608": {"test": "lstat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "609": {"test": "lstat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "610": {"test": "lstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "611": {"test": "lstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "612": {"test": "lstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "613": {"test": "lstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "614": {"test": "mallinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "615": {"test": "mallinfo2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "616": {"test": "mallopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "617": {"test": "mbind01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "618": {"test": "mbind02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "619": {"test": "mbind03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "620": {"test": "mbind04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "621": {"test": "memset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "622": {"test": "memcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "623": {"test": "memcpy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "624": {"test": "migrate_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "625": {"test": "migrate_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "626": {"test": "migrate_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "627": {"test": "mlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "628": {"test": "mlockall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "629": {"test": "mlockall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "630": {"test": "mkdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "631": {"test": "mkdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "632": {"test": "mkdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "633": {"test": "mkdir05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "634": {"test": "mkdir09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "635": {"test": "mkdirat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "636": {"test": "mkdirat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "637": {"test": "mknod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "638": {"test": "mknod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "639": {"test": "mknod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "640": {"test": "mknod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "641": {"test": "mknod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "642": {"test": "mknod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "643": {"test": "mknod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "644": {"test": "mknod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "645": {"test": "mknod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "646": {"test": "mknodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "647": {"test": "mknodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "648": {"test": "mlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "649": {"test": "mlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "650": {"test": "mlock03", "status": "pass", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0}, "651": {"test": "mlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "652": {"test": "mlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "653": {"test": "mlock201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "654": {"test": "mlock202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "655": {"test": "mlock203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "656": {"test": "qmm01", "status": "pass", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0}, "657": {"test": "mmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "658": {"test": "mmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "659": {"test": "mmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "660": {"test": "mmap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "661": {"test": "mmap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "662": {"test": "mmap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "663": {"test": "mmap08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "664": {"test": "mmap09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "665": {"test": "mmap12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "666": {"test": "mmap13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "667": {"test": "mmap14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "668": {"test": "mmap15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "669": {"test": "mmap16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "670": {"test": "mmap17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "671": {"test": "mmap18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "672": {"test": "mmap19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "673": {"test": "mmap20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "674": {"test": "modify_ldt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "675": {"test": "modify_ldt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "676": {"test": "modify_ldt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "677": {"test": "mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "678": {"test": "mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "679": {"test": "mount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "680": {"test": "mount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "681": {"test": "mount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "682": {"test": "mount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "683": {"test": "mount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "684": {"test": "mount_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "685": {"test": "move_mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "686": {"test": "move_mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "687": {"test": "move_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "688": {"test": "move_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "689": {"test": "move_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "690": {"test": "move_pages04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "691": {"test": "move_pages05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "692": {"test": "move_pages06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "693": {"test": "move_pages07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "694": {"test": "move_pages09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "695": {"test": "move_pages10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "696": {"test": "move_pages11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "697": {"test": "move_pages12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "698": {"test": "mprotect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "699": {"test": "mprotect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "700": {"test": "mprotect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "701": {"test": "mprotect04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "702": {"test": "mprotect05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "703": {"test": "pkey01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "704": {"test": "mq_notify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "705": {"test": "mq_notify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "706": {"test": "mq_notify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "707": {"test": "mq_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "708": {"test": "mq_timedreceive01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "709": {"test": "mq_timedsend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "710": {"test": "mq_unlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "711": {"test": "mremap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "712": {"test": "mremap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "713": {"test": "mremap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "714": {"test": "mremap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "715": {"test": "mremap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "716": {"test": "mremap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "717": {"test": "mseal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "718": {"test": "mseal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "719": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "720": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "721": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "722": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "723": {"test": "msgctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "724": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "725": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "726": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "727": {"test": "msgget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "728": {"test": "msgget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "729": {"test": "msgget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "730": {"test": "msgget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "731": {"test": "msgget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "732": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "733": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "734": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "735": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "736": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "737": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "738": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "739": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "740": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "741": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "742": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "743": {"test": "msync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "744": {"test": "msync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "745": {"test": "msync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "746": {"test": "msync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "747": {"test": "munlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "748": {"test": "munlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "749": {"test": "munlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "750": {"test": "munmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "751": {"test": "munmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "752": {"test": "munmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "753": {"test": "nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "754": {"test": "nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "755": {"test": "nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "756": {"test": "name_to_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "757": {"test": "name_to_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "758": {"test": "nftw01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "759": {"test": "nftw6401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "760": {"test": "nice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "761": {"test": "nice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "762": {"test": "nice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "763": {"test": "nice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "764": {"test": "nice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "765": {"test": "open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "766": {"test": "open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "767": {"test": "open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "768": {"test": "open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "769": {"test": "open06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "770": {"test": "open07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "771": {"test": "open08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "772": {"test": "open09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "773": {"test": "open10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "774": {"test": "open11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "775": {"test": "open12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "776": {"test": "open13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "777": {"test": "open14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "778": {"test": "open15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "779": {"test": "openat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "780": {"test": "openat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "781": {"test": "openat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "782": {"test": "openat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "783": {"test": "openat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "784": {"test": "openat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "785": {"test": "openat203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "786": {"test": "open_by_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "787": {"test": "open_by_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "788": {"test": "open_tree01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "789": {"test": "open_tree02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "790": {"test": "mincore01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "791": {"test": "mincore02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "792": {"test": "mincore03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "793": {"test": "mincore04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "794": {"test": "madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "795": {"test": "madvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "796": {"test": "madvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "797": {"test": "madvise05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "798": {"test": "madvise06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "799": {"test": "madvise07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "800": {"test": "madvise08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "801": {"test": "madvise09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "802": {"test": "madvise10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "803": {"test": "madvise11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "804": {"test": "madvise12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "805": {"test": "newuname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "806": {"test": "pathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "807": {"test": "pathconf02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "808": {"test": "pause01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "809": {"test": "pause02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "810": {"test": "pause03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "811": {"test": "personality01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "812": {"test": "personality02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "813": {"test": "pidfd_getfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "814": {"test": "pidfd_getfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "815": {"test": "pidfd_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "816": {"test": "pidfd_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "817": {"test": "pidfd_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "818": {"test": "pidfd_open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "819": {"test": "pidfd_send_signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "820": {"test": "pidfd_send_signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "821": {"test": "pidfd_send_signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "822": {"test": "pipe01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "823": {"test": "pipe02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "824": {"test": "pipe03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "825": {"test": "pipe04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "826": {"test": "pipe05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "827": {"test": "pipe06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "828": {"test": "pipe07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "829": {"test": "pipe08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "830": {"test": "pipe09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "831": {"test": "pipe10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "832": {"test": "pipe11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "833": {"test": "pipe12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "834": {"test": "pipe13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "835": {"test": "pipe14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "836": {"test": "pipe15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "837": {"test": "pipe2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "838": {"test": "pipe2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "839": {"test": "pipe2_04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "840": {"test": "pivot_root01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "841": {"test": "poll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "842": {"test": "poll02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "843": {"test": "ppoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "844": {"test": "prctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "845": {"test": "prctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "846": {"test": "prctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "847": {"test": "prctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "848": {"test": "prctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "849": {"test": "prctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "850": {"test": "prctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "851": {"test": "prctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "852": {"test": "prctl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "853": {"test": "pread01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "854": {"test": "pread01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "855": {"test": "pread02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "856": {"test": "pread02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "857": {"test": "preadv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "858": {"test": "preadv01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "859": {"test": "preadv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "860": {"test": "preadv02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "861": {"test": "preadv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "862": {"test": "preadv03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "863": {"test": "preadv201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "864": {"test": "preadv201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "865": {"test": "preadv202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "866": {"test": "preadv202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "867": {"test": "preadv203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "868": {"test": "preadv203_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "869": {"test": "profil01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "870": {"test": "process_vm_readv01", "status": "pass", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0}, "871": {"test": "process_vm_readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "872": {"test": "process_vm_readv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "873": {"test": "process_vm_writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "874": {"test": "process_vm_writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "875": {"test": "process_madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "876": {"test": "prot_hsymlinks", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "877": {"test": "dirtyc0w", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "878": {"test": "dirtyc0w_shmem", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "879": {"test": "dirtypipe", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "880": {"test": "pselect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "881": {"test": "pselect01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "882": {"test": "pselect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "883": {"test": "pselect02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "884": {"test": "pselect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "885": {"test": "pselect03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "886": {"test": "ptrace01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "887": {"test": "ptrace02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "888": {"test": "ptrace03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "889": {"test": "ptrace04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "890": {"test": "ptrace05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "891": {"test": "ptrace06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "892": {"test": "ptrace07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "893": {"test": "ptrace08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "894": {"test": "ptrace09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "895": {"test": "ptrace10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "896": {"test": "ptrace11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "897": {"test": "pwrite01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "898": {"test": "pwrite02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "899": {"test": "pwrite03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "900": {"test": "pwrite04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "901": {"test": "pwrite01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "902": {"test": "pwrite02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "903": {"test": "pwrite03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "904": {"test": "pwrite04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "905": {"test": "pwritev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "906": {"test": "pwritev01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "907": {"test": "pwritev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "908": {"test": "pwritev02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "909": {"test": "pwritev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "910": {"test": "pwritev03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "911": {"test": "pwritev201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "912": {"test": "pwritev201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "913": {"test": "pwritev202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "914": {"test": "pwritev202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "915": {"test": "quotactl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "916": {"test": "quotactl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "917": {"test": "quotactl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "918": {"test": "quotactl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "919": {"test": "quotactl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "920": {"test": "quotactl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "921": {"test": "quotactl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "922": {"test": "quotactl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "923": {"test": "quotactl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "924": {"test": "read01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "925": {"test": "read02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "926": {"test": "read03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "927": {"test": "read04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "928": {"test": "readahead01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "929": {"test": "readahead02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "930": {"test": "readdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "931": {"test": "readdir21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "932": {"test": "readlink01A", "status": "pass", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "933": {"test": "readlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "934": {"test": "readlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "935": {"test": "readlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "936": {"test": "readlinkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "937": {"test": "readv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "938": {"test": "readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "939": {"test": "realpath01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "940": {"test": "reboot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "941": {"test": "reboot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "942": {"test": "recv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "943": {"test": "recvfrom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "944": {"test": "recvmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "945": {"test": "recvmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "946": {"test": "recvmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "947": {"test": "recvmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "948": {"test": "remap_file_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "949": {"test": "remap_file_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "950": {"test": "removexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "951": {"test": "removexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "952": {"test": "rename01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "953": {"test": "rename01A", "status": "pass", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0}, "954": {"test": "rename03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "955": {"test": "rename04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "956": {"test": "rename05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "957": {"test": "rename06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "958": {"test": "rename07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "959": {"test": "rename08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "960": {"test": "rename09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "961": {"test": "rename10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "962": {"test": "rename11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "963": {"test": "rename12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "964": {"test": "rename13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "965": {"test": "rename14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "966": {"test": "rename15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "967": {"test": "renameat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "968": {"test": "renameat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "969": {"test": "renameat202", "status": "pass", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0}, "970": {"test": "request_key01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "971": {"test": "request_key02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "972": {"test": "request_key03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "973": {"test": "request_key04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "974": {"test": "request_key05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "975": {"test": "request_key06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "976": {"test": "rmdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "977": {"test": "rmdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "978": {"test": "rmdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "979": {"test": "rmdir03A", "status": "pass", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0}, "980": {"test": "rt_sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "981": {"test": "rt_sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "982": {"test": "rt_sigaction03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "983": {"test": "rt_sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "984": {"test": "rt_sigprocmask02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "985": {"test": "rt_sigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "986": {"test": "rt_sigqueueinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "987": {"test": "rt_sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "988": {"test": "rt_sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "989": {"test": "rt_tgsigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "990": {"test": "sbrk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "991": {"test": "sbrk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "992": {"test": "sbrk03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "993": {"test": "sched_get_priority_max01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "994": {"test": "sched_get_priority_max02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "995": {"test": "sched_get_priority_min01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "996": {"test": "sched_get_priority_min02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "997": {"test": "sched_getparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "998": {"test": "sched_getparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "999": {"test": "sched_rr_get_interval01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1000": {"test": "sched_rr_get_interval02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1001": {"test": "sched_rr_get_interval03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1002": {"test": "sched_setparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1003": {"test": "sched_setparam02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1004": {"test": "sched_setparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1005": {"test": "sched_setparam04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1006": {"test": "sched_setparam05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1007": {"test": "sched_getscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1008": {"test": "sched_getscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1009": {"test": "sched_setscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1010": {"test": "sched_setscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1011": {"test": "sched_setscheduler03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1012": {"test": "sched_setscheduler04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1013": {"test": "sched_yield01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1014": {"test": "sched_setaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1015": {"test": "sched_getaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1016": {"test": "sched_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1017": {"test": "sched_getattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1018": {"test": "sched_getattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1019": {"test": "seccomp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1020": {"test": "select01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1021": {"test": "select02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1022": {"test": "select03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1023": {"test": "select04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1024": {"test": "semctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1025": {"test": "semctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1026": {"test": "semctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1027": {"test": "semctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1028": {"test": "semctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1029": {"test": "semctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1030": {"test": "semctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1031": {"test": "semctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1032": {"test": "semctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1033": {"test": "semget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1034": {"test": "semget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1035": {"test": "semget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1036": {"test": "semop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1037": {"test": "semop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1038": {"test": "semop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1039": {"test": "semop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1040": {"test": "semop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1041": {"test": "send01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1042": {"test": "send02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1043": {"test": "sendfile02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1044": {"test": "sendfile02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1045": {"test": "sendfile03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1046": {"test": "sendfile03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1047": {"test": "sendfile04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1048": {"test": "sendfile04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1049": {"test": "sendfile05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1050": {"test": "sendfile05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1051": {"test": "sendfile06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1052": {"test": "sendfile06_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1053": {"test": "sendfile07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1054": {"test": "sendfile07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1055": {"test": "sendfile08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1056": {"test": "sendfile08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1057": {"test": "sendfile09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1058": {"test": "sendfile09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1059": {"test": "sendmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1060": {"test": "sendmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1061": {"test": "sendmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1062": {"test": "sendmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1063": {"test": "sendmmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1064": {"test": "sendto01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1065": {"test": "sendto02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1066": {"test": "sendto03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1067": {"test": "set_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1068": {"test": "set_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1069": {"test": "set_mempolicy03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1070": {"test": "set_mempolicy04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1071": {"test": "set_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1072": {"test": "set_thread_area01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1073": {"test": "set_tid_address01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1074": {"test": "setdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1075": {"test": "setdomainname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1076": {"test": "setdomainname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1077": {"test": "setfsgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1078": {"test": "setfsgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1079": {"test": "setfsgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1080": {"test": "setfsgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1081": {"test": "setfsgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1082": {"test": "setfsgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1083": {"test": "setfsuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1084": {"test": "setfsuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1085": {"test": "setfsuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1086": {"test": "setfsuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1087": {"test": "setfsuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1088": {"test": "setfsuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1089": {"test": "setfsuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1090": {"test": "setfsuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1091": {"test": "setgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1092": {"test": "setgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1093": {"test": "setgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1094": {"test": "setgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1095": {"test": "setgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1096": {"test": "setgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1097": {"test": "setegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1098": {"test": "setegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1099": {"test": "sgetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1100": {"test": "setgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1101": {"test": "setgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1102": {"test": "setgroups02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1103": {"test": "setgroups02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1104": {"test": "setgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1105": {"test": "setgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1106": {"test": "sethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1107": {"test": "sethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1108": {"test": "sethostname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1109": {"test": "setitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1110": {"test": "setitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1111": {"test": "setns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1112": {"test": "setns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1113": {"test": "setpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1114": {"test": "setpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1115": {"test": "setpgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1116": {"test": "setpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1117": {"test": "setpgrp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1118": {"test": "setpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1119": {"test": "setpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1120": {"test": "setregid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1121": {"test": "setregid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1122": {"test": "setregid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1123": {"test": "setregid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1124": {"test": "setregid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1125": {"test": "setregid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1126": {"test": "setregid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1127": {"test": "setregid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1128": {"test": "setresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1129": {"test": "setresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1130": {"test": "setresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1131": {"test": "setresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1132": {"test": "setresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1133": {"test": "setresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1134": {"test": "setresgid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1135": {"test": "setresgid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1136": {"test": "setresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1137": {"test": "setresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1138": {"test": "setresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1139": {"test": "setresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1140": {"test": "setresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1141": {"test": "setresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1142": {"test": "setresuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1143": {"test": "setresuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1144": {"test": "setresuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1145": {"test": "setresuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1146": {"test": "setreuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1147": {"test": "setreuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1148": {"test": "setreuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1149": {"test": "setreuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1150": {"test": "setreuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1151": {"test": "setreuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1152": {"test": "setreuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1153": {"test": "setreuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1154": {"test": "setreuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1155": {"test": "setreuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1156": {"test": "setreuid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1157": {"test": "setreuid06_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1158": {"test": "setreuid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1159": {"test": "setreuid07_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1160": {"test": "setrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1161": {"test": "setrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1162": {"test": "setrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1163": {"test": "setrlimit04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1164": {"test": "setrlimit05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1165": {"test": "setrlimit06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1166": {"test": "setsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1167": {"test": "setsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1168": {"test": "setsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1169": {"test": "setsockopt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1170": {"test": "setsockopt04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1171": {"test": "setsockopt05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1172": {"test": "setsockopt06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1173": {"test": "setsockopt07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1174": {"test": "setsockopt08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1175": {"test": "setsockopt09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1176": {"test": "setsockopt10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1177": {"test": "settimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1178": {"test": "settimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1179": {"test": "setuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1180": {"test": "setuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1181": {"test": "setuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1182": {"test": "setuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1183": {"test": "setuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1184": {"test": "setuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1185": {"test": "setxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1186": {"test": "setxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1187": {"test": "setxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1188": {"test": "shmat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1189": {"test": "shmat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1190": {"test": "shmat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1191": {"test": "shmat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1192": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1193": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1194": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1195": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1196": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1197": {"test": "shmctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1198": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1199": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1200": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1201": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1202": {"test": "shmget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1203": {"test": "shmget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1204": {"test": "shmget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1205": {"test": "shmget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1206": {"test": "shmget06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1207": {"test": "shutdown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1208": {"test": "shutdown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1209": {"test": "sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1210": {"test": "sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1211": {"test": "sigaltstack01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1212": {"test": "sigaltstack02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1213": {"test": "sighold02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1214": {"test": "signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1215": {"test": "signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1216": {"test": "signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1217": {"test": "signal04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1218": {"test": "signal05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1219": {"test": "signal06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1220": {"test": "signalfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1221": {"test": "signalfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1222": {"test": "signalfd4_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1223": {"test": "signalfd4_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1224": {"test": "sigpending02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1225": {"test": "sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1226": {"test": "sigrelse01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1227": {"test": "sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1228": {"test": "sigsuspend02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1229": {"test": "sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1230": {"test": "sigwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1231": {"test": "sigwaitinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1232": {"test": "socket01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1233": {"test": "socket02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1234": {"test": "socketcall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1235": {"test": "socketcall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1236": {"test": "socketcall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1237": {"test": "socketpair01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1238": {"test": "socketpair02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1239": {"test": "sockioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1240": {"test": "splice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1241": {"test": "splice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1242": {"test": "splice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1243": {"test": "splice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1244": {"test": "splice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1245": {"test": "splice06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1246": {"test": "splice07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1247": {"test": "splice08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1248": {"test": "splice09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1249": {"test": "tee01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1250": {"test": "tee02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1251": {"test": "ssetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1252": {"test": "stat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1253": {"test": "stat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1254": {"test": "stat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1255": {"test": "stat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1256": {"test": "stat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1257": {"test": "stat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1258": {"test": "stat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1259": {"test": "stat04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1260": {"test": "statmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1261": {"test": "statmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1262": {"test": "statmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1263": {"test": "statmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1264": {"test": "statmount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1265": {"test": "statmount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1266": {"test": "statmount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1267": {"test": "statmount08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1268": {"test": "statfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1269": {"test": "statfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1270": {"test": "statfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1271": {"test": "statfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1272": {"test": "statfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1273": {"test": "statfs03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1274": {"test": "statvfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1275": {"test": "statvfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1276": {"test": "stime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1277": {"test": "stime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1278": {"test": "string01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1279": {"test": "swapoff01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1280": {"test": "swapoff02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1281": {"test": "swapon01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1282": {"test": "swapon02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1283": {"test": "swapon03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1284": {"test": "switch01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1285": {"test": "symlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1286": {"test": "symlink02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1287": {"test": "symlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1288": {"test": "symlink04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1289": {"test": "symlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1290": {"test": "sync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1291": {"test": "syncfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1292": {"test": "sync_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1293": {"test": "sync_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1294": {"test": "syscall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1295": {"test": "sysconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1296": {"test": "sysctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1297": {"test": "sysctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1298": {"test": "sysctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1299": {"test": "sysfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1300": {"test": "sysfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1301": {"test": "sysfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1302": {"test": "sysfs04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1303": {"test": "sysfs05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1304": {"test": "sysinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1305": {"test": "sysinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1306": {"test": "sysinfo03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1307": {"test": "syslog11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1308": {"test": "syslog12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1309": {"test": "tgkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1310": {"test": "tgkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1311": {"test": "tgkill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1312": {"test": "time01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1313": {"test": "times01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1314": {"test": "times03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1315": {"test": "timerfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1316": {"test": "timerfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1317": {"test": "timerfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1318": {"test": "timerfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1319": {"test": "timerfd_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1320": {"test": "timerfd_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1321": {"test": "timerfd_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1322": {"test": "timer_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1323": {"test": "timer_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1324": {"test": "timer_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1325": {"test": "timer_delete01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1326": {"test": "timer_delete02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1327": {"test": "timer_getoverrun01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1328": {"test": "timer_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1329": {"test": "timer_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1330": {"test": "timer_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1331": {"test": "timer_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1332": {"test": "tkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1333": {"test": "tkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1334": {"test": "truncate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1335": {"test": "truncate02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1336": {"test": "truncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1337": {"test": "truncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1338": {"test": "ulimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1339": {"test": "umask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1340": {"test": "uname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1341": {"test": "uname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1342": {"test": "uname04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1343": {"test": "unlink01", "status": "pass", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "1344": {"test": "unlink05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1345": {"test": "unlink07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1346": {"test": "unlink08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1347": {"test": "unlink09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1348": {"test": "unlink10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1349": {"test": "unlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1350": {"test": "unshare01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1351": {"test": "unshare02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1352": {"test": "umount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1353": {"test": "umount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1354": {"test": "umount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1355": {"test": "umount2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1356": {"test": "umount2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1357": {"test": "userfaultfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1358": {"test": "ustat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1359": {"test": "ustat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1360": {"test": "utime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1361": {"test": "utime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1362": {"test": "utime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1363": {"test": "utime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1364": {"test": "utime05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1365": {"test": "utime06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1366": {"test": "utime07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1367": {"test": "utimes01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1368": {"test": "utimensat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1369": {"test": "vfork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1370": {"test": "vfork02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1371": {"test": "vhangup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1372": {"test": "vhangup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1373": {"test": "vmsplice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1374": {"test": "vmsplice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1375": {"test": "vmsplice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1376": {"test": "vmsplice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1377": {"test": "wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1378": {"test": "wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1379": {"test": "wait401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1380": {"test": "wait402", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1381": {"test": "wait403", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1382": {"test": "waitpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1383": {"test": "waitpid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1384": {"test": "waitpid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1385": {"test": "waitpid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1386": {"test": "waitpid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1387": {"test": "waitpid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1388": {"test": "waitpid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1389": {"test": "waitpid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1390": {"test": "waitpid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1391": {"test": "waitpid12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1392": {"test": "waitpid13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1393": {"test": "waitid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1394": {"test": "waitid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1395": {"test": "waitid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1396": {"test": "waitid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1397": {"test": "waitid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1398": {"test": "waitid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1399": {"test": "waitid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1400": {"test": "waitid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1401": {"test": "waitid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1402": {"test": "waitid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1403": {"test": "waitid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1404": {"test": "write01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1405": {"test": "write02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1406": {"test": "write03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1407": {"test": "write04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1408": {"test": "write05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1409": {"test": "write06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1410": {"test": "writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1411": {"test": "writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1412": {"test": "writev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1413": {"test": "writev05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1414": {"test": "writev06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1415": {"test": "writev07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1416": {"test": "perf_event_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1417": {"test": "perf_event_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1418": {"test": "futex_cmp_requeue01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1419": {"test": "futex_cmp_requeue02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1420": {"test": "futex_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1421": {"test": "futex_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1422": {"test": "futex_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1423": {"test": "futex_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1424": {"test": "futex_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1425": {"test": "futex_waitv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1426": {"test": "futex_waitv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1427": {"test": "futex_waitv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1428": {"test": "futex_wake01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1429": {"test": "futex_wake02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1430": {"test": "futex_wake03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1431": {"test": "futex_wake04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1432": {"test": "futex_wait_bitset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1433": {"test": "memfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1434": {"test": "memfd_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1435": {"test": "memfd_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1436": {"test": "memfd_create04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1437": {"test": "copy_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1438": {"test": "copy_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1439": {"test": "copy_file_range03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1440": {"test": "statx01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1441": {"test": "statx02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1442": {"test": "statx03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1443": {"test": "statx04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1444": {"test": "statx05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1445": {"test": "statx06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1446": {"test": "statx07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1447": {"test": "statx08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1448": {"test": "statx09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1449": {"test": "statx10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1450": {"test": "statx11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1451": {"test": "statx12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1452": {"test": "membarrier01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1453": {"test": "io_uring01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1454": {"test": "io_uring02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1455": {"test": "perf_event_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "summary": {"passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}}} 2026-07-04 18:21:14.65407 2026-07-04 18:22:29.662349 +488 13 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 80 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-04_18:22:29.json {"tool": "kirk", "test_type": {}, "time": {"duration_sec": 16.31}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboUKE1qW as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10107564926147461}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08771800994873047}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accil5g41 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 57831\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09299516677856445}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0979604721069336}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 32945\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 37705\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 41131\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11172318458557129}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accz6MA0R as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5388891696929932}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accEKuePn as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.26484227180480957}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10138297080993652}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acctJXtWV as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acctJXtWV/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1296217441558838}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accbSgdJt as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accbSgdJt/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15414190292358398}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accIwDu09 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('sh')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 5398 (1744)\\nacct02.c:193: TINFO: == entry 2 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 5398 (1744)\\nacct02.c:193: TINFO: == entry 3 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 5398 (5408)\\nacct02.c:193: TINFO: == entry 4 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 5398 (5411)\\nacct02.c:193: TINFO: == entry 5 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 5398 (5409)\\nacct02.c:193: TINFO: == entry 6 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 5398 (5410)\\nacct02.c:193: TINFO: == entry 7 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 7\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1993918418884277}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1466982364654541}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.27307844161987305}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20345258712768555}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17226672172546387}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.494084596633911}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1529064178466797}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15686845779418945}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1759169101715088}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20034384727478027}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1748056411743164}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.177622079849243}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.124295234680176}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.182049512863159}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20012950897216797}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin03j2q3 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15697741508483887}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10220718383789062}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binaYwQcQ as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08566761016845703}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binoofvJd as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13675522804260254}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binMLxa59 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11635327339172363}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "36": {"test": "bpf_prog05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "37": {"test": "bpf_prog06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "38": {"test": "bpf_prog07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "39": {"test": "brk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "40": {"test": "brk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "41": {"test": "capget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "42": {"test": "capget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "43": {"test": "capset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "44": {"test": "capset02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "45": {"test": "capset03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "46": {"test": "capset04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "47": {"test": "cacheflush01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "48": {"test": "cachestat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "49": {"test": "cachestat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "50": {"test": "cachestat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "51": {"test": "cachestat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "52": {"test": "chdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "53": {"test": "chdir01A", "status": "pass", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0}, "54": {"test": "chdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "55": {"test": "chmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "56": {"test": "chmod01A", "status": "pass", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0}, "57": {"test": "chmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "58": {"test": "chmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "59": {"test": "chmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "60": {"test": "chmod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "61": {"test": "chmod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "62": {"test": "chmod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "63": {"test": "chown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "64": {"test": "chown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "65": {"test": "chown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "66": {"test": "chown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "67": {"test": "chown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "68": {"test": "chown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "69": {"test": "chown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "70": {"test": "chown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "71": {"test": "chown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "72": {"test": "chown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "73": {"test": "chroot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "74": {"test": "chroot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "75": {"test": "chroot03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "76": {"test": "chroot04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "77": {"test": "clock_adjtime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "78": {"test": "clock_adjtime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "79": {"test": "clock_getres01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "80": {"test": "clock_nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "81": {"test": "clock_nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "82": {"test": "clock_nanosleep03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "83": {"test": "clock_nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "84": {"test": "clock_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "85": {"test": "clock_gettime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "86": {"test": "clock_gettime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "87": {"test": "clock_gettime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "88": {"test": "leapsec01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "89": {"test": "clock_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "90": {"test": "clock_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "91": {"test": "clock_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "92": {"test": "clone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "93": {"test": "clone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "94": {"test": "clone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "95": {"test": "clone04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "96": {"test": "clone05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "97": {"test": "clone06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "98": {"test": "clone07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "99": {"test": "clone08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "100": {"test": "clone09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "101": {"test": "clone301", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "102": {"test": "clone302", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "103": {"test": "clone303", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "104": {"test": "close01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "105": {"test": "close02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "106": {"test": "close_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "107": {"test": "close_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "108": {"test": "confstr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "109": {"test": "connect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "110": {"test": "connect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "111": {"test": "creat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "112": {"test": "creat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "113": {"test": "creat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "114": {"test": "creat05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "115": {"test": "creat06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "116": {"test": "creat07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "117": {"test": "creat08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "118": {"test": "creat09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "119": {"test": "delete_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "120": {"test": "delete_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "121": {"test": "delete_module03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "122": {"test": "dup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "123": {"test": "dup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "124": {"test": "dup03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "125": {"test": "dup04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "126": {"test": "dup05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "127": {"test": "dup06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "128": {"test": "dup07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "129": {"test": "dup201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "130": {"test": "dup202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "131": {"test": "dup203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "132": {"test": "dup204", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "133": {"test": "dup205", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "134": {"test": "dup206", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "135": {"test": "dup207", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "136": {"test": "dup3_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "137": {"test": "dup3_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "138": {"test": "epoll_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "139": {"test": "epoll_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "140": {"test": "epoll_create1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "141": {"test": "epoll_create1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "142": {"test": "epoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "143": {"test": "epoll_ctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "144": {"test": "epoll_ctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "145": {"test": "epoll_ctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "146": {"test": "epoll_ctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "147": {"test": "epoll_ctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "148": {"test": "epoll_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "149": {"test": "epoll_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "150": {"test": "epoll_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "151": {"test": "epoll_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "152": {"test": "epoll_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "153": {"test": "epoll_wait06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "154": {"test": "epoll_wait07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "155": {"test": "epoll_pwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "156": {"test": "epoll_pwait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "157": {"test": "epoll_pwait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "158": {"test": "epoll_pwait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "159": {"test": "epoll_pwait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "160": {"test": "eventfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "161": {"test": "eventfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "162": {"test": "eventfd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "163": {"test": "eventfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "164": {"test": "eventfd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "165": {"test": "eventfd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "166": {"test": "eventfd2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "167": {"test": "eventfd2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "168": {"test": "eventfd2_03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "169": {"test": "execl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "170": {"test": "execle01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "171": {"test": "execlp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "172": {"test": "execv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "173": {"test": "execve01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "174": {"test": "execve02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "175": {"test": "execve03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "176": {"test": "execve04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "177": {"test": "execve05", "status": "pass", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0}, "178": {"test": "execve06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "179": {"test": "execvp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "180": {"test": "execveat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "181": {"test": "execveat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "182": {"test": "execveat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "183": {"test": "exit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "184": {"test": "exit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "185": {"test": "exit_group01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "186": {"test": "faccessat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "187": {"test": "faccessat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "188": {"test": "faccessat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "189": {"test": "faccessat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "190": {"test": "fallocate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "191": {"test": "fallocate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "192": {"test": "fallocate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "193": {"test": "fallocate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "194": {"test": "fallocate05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "195": {"test": "fallocate06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "196": {"test": "fsetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "197": {"test": "fsetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "198": {"test": "posix_fadvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "199": {"test": "posix_fadvise01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "200": {"test": "posix_fadvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "201": {"test": "posix_fadvise02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "202": {"test": "posix_fadvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "203": {"test": "posix_fadvise03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "204": {"test": "posix_fadvise04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "205": {"test": "posix_fadvise04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "206": {"test": "fchdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "207": {"test": "fchdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "208": {"test": "fchdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "209": {"test": "fchmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "210": {"test": "fchmod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "211": {"test": "fchmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "212": {"test": "fchmod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "213": {"test": "fchmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "214": {"test": "fchmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "215": {"test": "fchmodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "216": {"test": "fchmodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "217": {"test": "fchmodat2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "218": {"test": "fchmodat2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "219": {"test": "fchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "220": {"test": "fchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "221": {"test": "fchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "222": {"test": "fchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "223": {"test": "fchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "224": {"test": "fchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "225": {"test": "fchown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "226": {"test": "fchown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "227": {"test": "fchown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "228": {"test": "fchown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "229": {"test": "fchownat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "230": {"test": "fchownat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "231": {"test": "fcntl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "232": {"test": "fcntl01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "233": {"test": "fcntl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "234": {"test": "fcntl02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "235": {"test": "fcntl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "236": {"test": "fcntl03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "237": {"test": "fcntl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "238": {"test": "fcntl04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "239": {"test": "fcntl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "240": {"test": "fcntl05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "241": {"test": "fcntl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "242": {"test": "fcntl07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "243": {"test": "fcntl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "244": {"test": "fcntl08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "245": {"test": "fcntl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "246": {"test": "fcntl09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "247": {"test": "fcntl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "248": {"test": "fcntl10_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "249": {"test": "fcntl11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "250": {"test": "fcntl11_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "251": {"test": "fcntl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "252": {"test": "fcntl12_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "253": {"test": "fcntl13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "254": {"test": "fcntl13_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "255": {"test": "fcntl14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "256": {"test": "fcntl14_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "257": {"test": "fcntl15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "258": {"test": "fcntl15_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "259": {"test": "fcntl16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "260": {"test": "fcntl16_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "261": {"test": "fcntl17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "262": {"test": "fcntl17_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "263": {"test": "fcntl18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "264": {"test": "fcntl18_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "265": {"test": "fcntl19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "266": {"test": "fcntl19_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "267": {"test": "fcntl20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "268": {"test": "fcntl20_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "269": {"test": "fcntl21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "270": {"test": "fcntl21_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "271": {"test": "fcntl22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "272": {"test": "fcntl22_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "273": {"test": "fcntl23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "274": {"test": "fcntl23_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "275": {"test": "fcntl24", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "276": {"test": "fcntl24_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "277": {"test": "fcntl25", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "278": {"test": "fcntl25_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "279": {"test": "fcntl26", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "280": {"test": "fcntl26_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "281": {"test": "fcntl27", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "282": {"test": "fcntl27_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "283": {"test": "fcntl29", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "284": {"test": "fcntl29_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "285": {"test": "fcntl30", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "286": {"test": "fcntl30_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "287": {"test": "fcntl31", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "288": {"test": "fcntl31_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "289": {"test": "fcntl32", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "290": {"test": "fcntl32_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "291": {"test": "fcntl33", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "292": {"test": "fcntl33_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "293": {"test": "fcntl34", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "294": {"test": "fcntl34_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "295": {"test": "fcntl35", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "296": {"test": "fcntl35_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "297": {"test": "fcntl36", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "298": {"test": "fcntl36_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "299": {"test": "fcntl37", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "300": {"test": "fcntl37_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "301": {"test": "fcntl38", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "302": {"test": "fcntl38_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "303": {"test": "fcntl39", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "304": {"test": "fcntl39_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "305": {"test": "fdatasync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "306": {"test": "fdatasync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "307": {"test": "fdatasync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "308": {"test": "fgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "309": {"test": "fgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "310": {"test": "fgetxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "311": {"test": "finit_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "312": {"test": "finit_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "313": {"test": "flistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "314": {"test": "flistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "315": {"test": "flistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "316": {"test": "flock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "317": {"test": "flock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "318": {"test": "flock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "319": {"test": "flock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "320": {"test": "flock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "321": {"test": "fmtmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "322": {"test": "fork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "323": {"test": "fork03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "324": {"test": "fork04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "325": {"test": "fork05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "326": {"test": "fork06", "status": "pass", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0}, "327": {"test": "fork07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "328": {"test": "fork08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "329": {"test": "fork09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "330": {"test": "fork10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "331": {"test": "fork11", "status": "pass", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0}, "332": {"test": "fork13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "333": {"test": "fork14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "334": {"test": "fpathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "335": {"test": "fremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "336": {"test": "fremovexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "337": {"test": "fsconfig01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "338": {"test": "fsconfig02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "339": {"test": "fsconfig03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "340": {"test": "fsmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "341": {"test": "fsmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "342": {"test": "fsopen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "343": {"test": "fsopen02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "344": {"test": "fspick01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "345": {"test": "fspick02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "346": {"test": "fstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "347": {"test": "fstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "348": {"test": "fstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "349": {"test": "fstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "350": {"test": "fstatat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "351": {"test": "fstatfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "352": {"test": "fstatfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "353": {"test": "fstatfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "354": {"test": "fstatfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "355": {"test": "fsync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "356": {"test": "fsync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "357": {"test": "fsync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "358": {"test": "fsync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "359": {"test": "ftruncate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "360": {"test": "ftruncate01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "361": {"test": "ftruncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "362": {"test": "ftruncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "363": {"test": "ftruncate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "364": {"test": "ftruncate04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "365": {"test": "futimesat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "366": {"test": "getcontext01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "367": {"test": "getcpu01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "368": {"test": "getcpu02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "369": {"test": "getcwd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "370": {"test": "getcwd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "371": {"test": "getcwd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "372": {"test": "getcwd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "373": {"test": "getdents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "374": {"test": "getdents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "375": {"test": "getdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "376": {"test": "getegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "377": {"test": "getegid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "378": {"test": "getegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "379": {"test": "getegid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "380": {"test": "geteuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "381": {"test": "geteuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "382": {"test": "geteuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "383": {"test": "geteuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "384": {"test": "getgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "385": {"test": "getgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "386": {"test": "getgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "387": {"test": "getgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "388": {"test": "getgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "389": {"test": "getgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "390": {"test": "getgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "391": {"test": "getgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "392": {"test": "gethostbyname_r01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "393": {"test": "gethostid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "394": {"test": "gethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "395": {"test": "gethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "396": {"test": "getitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "397": {"test": "getitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "398": {"test": "getpagesize01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "399": {"test": "getpeername01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "400": {"test": "getpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "401": {"test": "getpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "402": {"test": "getpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "403": {"test": "getpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "404": {"test": "getpid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "405": {"test": "getppid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "406": {"test": "getppid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "407": {"test": "getpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "408": {"test": "getpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "409": {"test": "getrandom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "410": {"test": "getrandom02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "411": {"test": "getrandom03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "412": {"test": "getrandom04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "413": {"test": "getrandom05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "414": {"test": "getresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "415": {"test": "getresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "416": {"test": "getresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "417": {"test": "getresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "418": {"test": "getresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "419": {"test": "getresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "420": {"test": "getresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "421": {"test": "getresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "422": {"test": "getresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "423": {"test": "getresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "424": {"test": "getresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "425": {"test": "getresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "426": {"test": "getrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "427": {"test": "getrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "428": {"test": "getrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "429": {"test": "get_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "430": {"test": "get_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "431": {"test": "get_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "432": {"test": "getrusage01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "433": {"test": "getrusage02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "434": {"test": "getrusage03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "435": {"test": "getrusage04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "436": {"test": "getsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "437": {"test": "getsid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "438": {"test": "getsockname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "439": {"test": "getsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "440": {"test": "getsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "441": {"test": "gettid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "442": {"test": "gettid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "443": {"test": "gettimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "444": {"test": "gettimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "445": {"test": "getuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "446": {"test": "getuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "447": {"test": "getuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "448": {"test": "getuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "449": {"test": "getxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "450": {"test": "getxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "451": {"test": "getxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "452": {"test": "getxattr04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "453": {"test": "getxattr05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "454": {"test": "init_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "455": {"test": "init_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "456": {"test": "ioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "457": {"test": "ioctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "458": {"test": "ioctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "459": {"test": "ioctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "460": {"test": "ioctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "461": {"test": "ioctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "462": {"test": "ioctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "463": {"test": "ioctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "464": {"test": "ioctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "465": {"test": "ioctl_loop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "466": {"test": "ioctl_loop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "467": {"test": "ioctl_loop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "468": {"test": "ioctl_loop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "469": {"test": "ioctl_loop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "470": {"test": "ioctl_loop06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "471": {"test": "ioctl_loop07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "472": {"test": "ioctl_ns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "473": {"test": "ioctl_ns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "474": {"test": "ioctl_ns03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "475": {"test": "ioctl_ns04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "476": {"test": "ioctl_ns05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "477": {"test": "ioctl_ns06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "478": {"test": "ioctl_ns07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "479": {"test": "ioctl_sg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "480": {"test": "ioctl_ficlone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "481": {"test": "ioctl_ficlone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "482": {"test": "ioctl_ficlone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "483": {"test": "ioctl_ficlonerange01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "484": {"test": "ioctl_ficlonerange02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "485": {"test": "inotify_init1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "486": {"test": "inotify_init1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "487": {"test": "inotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "488": {"test": "inotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "489": {"test": "inotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "490": {"test": "inotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "491": {"test": "inotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "492": {"test": "inotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "493": {"test": "inotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "494": {"test": "inotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "495": {"test": "inotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "496": {"test": "inotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "497": {"test": "inotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "498": {"test": "inotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "499": {"test": "fanotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "500": {"test": "fanotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "501": {"test": "fanotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "502": {"test": "fanotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "503": {"test": "fanotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "504": {"test": "fanotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "505": {"test": "fanotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "506": {"test": "fanotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "507": {"test": "fanotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "508": {"test": "fanotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "509": {"test": "fanotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "510": {"test": "fanotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "511": {"test": "fanotify13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "512": {"test": "fanotify14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "513": {"test": "fanotify15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "514": {"test": "fanotify16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "515": {"test": "fanotify17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "516": {"test": "fanotify18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "517": {"test": "fanotify19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "518": {"test": "fanotify20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "519": {"test": "fanotify21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "520": {"test": "fanotify22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "521": {"test": "fanotify23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "522": {"test": "ioperm01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "523": {"test": "ioperm02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "524": {"test": "iopl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "525": {"test": "iopl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "526": {"test": "ioprio_get01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "527": {"test": "ioprio_set01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "528": {"test": "ioprio_set02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "529": {"test": "ioprio_set03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "530": {"test": "io_cancel01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "531": {"test": "io_cancel02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "532": {"test": "io_destroy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "533": {"test": "io_destroy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "534": {"test": "io_getevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "535": {"test": "io_getevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "536": {"test": "io_pgetevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "537": {"test": "io_pgetevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "538": {"test": "io_setup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "539": {"test": "io_setup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "540": {"test": "io_submit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "541": {"test": "io_submit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "542": {"test": "io_submit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "543": {"test": "keyctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "544": {"test": "keyctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "545": {"test": "keyctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "546": {"test": "keyctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "547": {"test": "keyctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "548": {"test": "keyctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "549": {"test": "keyctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "550": {"test": "keyctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "551": {"test": "keyctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "552": {"test": "kcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "553": {"test": "kcmp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "554": {"test": "kcmp03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "555": {"test": "kill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "556": {"test": "kill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "557": {"test": "kill05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "558": {"test": "kill06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "559": {"test": "kill07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "560": {"test": "kill08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "561": {"test": "kill09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "562": {"test": "kill10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "563": {"test": "kill11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "564": {"test": "kill12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "565": {"test": "kill13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "566": {"test": "landlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "567": {"test": "landlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "568": {"test": "landlock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "569": {"test": "landlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "570": {"test": "landlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "571": {"test": "landlock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "572": {"test": "landlock07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "573": {"test": "landlock08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "574": {"test": "lchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "575": {"test": "lchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "576": {"test": "lchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "577": {"test": "lchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "578": {"test": "lchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "579": {"test": "lchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "580": {"test": "lgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "581": {"test": "lgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "582": {"test": "link01", "status": "pass", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0}, "583": {"test": "link02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "584": {"test": "link04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "585": {"test": "link05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "586": {"test": "link08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "587": {"test": "linkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "588": {"test": "linkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "589": {"test": "listen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "590": {"test": "listmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "591": {"test": "listmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "592": {"test": "listmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "593": {"test": "listmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "594": {"test": "listxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "595": {"test": "listxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "596": {"test": "listxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "597": {"test": "llistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "598": {"test": "llistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "599": {"test": "llistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "600": {"test": "llseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "601": {"test": "llseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "602": {"test": "llseek03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "603": {"test": "lremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "604": {"test": "lseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "605": {"test": "lseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "606": {"test": "lseek07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "607": {"test": "lseek11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "608": {"test": "lstat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "609": {"test": "lstat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "610": {"test": "lstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "611": {"test": "lstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "612": {"test": "lstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "613": {"test": "lstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "614": {"test": "mallinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "615": {"test": "mallinfo2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "616": {"test": "mallopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "617": {"test": "mbind01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "618": {"test": "mbind02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "619": {"test": "mbind03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "620": {"test": "mbind04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "621": {"test": "memset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "622": {"test": "memcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "623": {"test": "memcpy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "624": {"test": "migrate_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "625": {"test": "migrate_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "626": {"test": "migrate_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "627": {"test": "mlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "628": {"test": "mlockall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "629": {"test": "mlockall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "630": {"test": "mkdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "631": {"test": "mkdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "632": {"test": "mkdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "633": {"test": "mkdir05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "634": {"test": "mkdir09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "635": {"test": "mkdirat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "636": {"test": "mkdirat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "637": {"test": "mknod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "638": {"test": "mknod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "639": {"test": "mknod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "640": {"test": "mknod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "641": {"test": "mknod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "642": {"test": "mknod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "643": {"test": "mknod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "644": {"test": "mknod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "645": {"test": "mknod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "646": {"test": "mknodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "647": {"test": "mknodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "648": {"test": "mlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "649": {"test": "mlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "650": {"test": "mlock03", "status": "pass", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0}, "651": {"test": "mlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "652": {"test": "mlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "653": {"test": "mlock201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "654": {"test": "mlock202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "655": {"test": "mlock203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "656": {"test": "qmm01", "status": "pass", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0}, "657": {"test": "mmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "658": {"test": "mmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "659": {"test": "mmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "660": {"test": "mmap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "661": {"test": "mmap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "662": {"test": "mmap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "663": {"test": "mmap08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "664": {"test": "mmap09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "665": {"test": "mmap12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "666": {"test": "mmap13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "667": {"test": "mmap14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "668": {"test": "mmap15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "669": {"test": "mmap16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "670": {"test": "mmap17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "671": {"test": "mmap18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "672": {"test": "mmap19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "673": {"test": "mmap20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "674": {"test": "modify_ldt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "675": {"test": "modify_ldt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "676": {"test": "modify_ldt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "677": {"test": "mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "678": {"test": "mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "679": {"test": "mount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "680": {"test": "mount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "681": {"test": "mount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "682": {"test": "mount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "683": {"test": "mount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "684": {"test": "mount_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "685": {"test": "move_mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "686": {"test": "move_mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "687": {"test": "move_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "688": {"test": "move_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "689": {"test": "move_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "690": {"test": "move_pages04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "691": {"test": "move_pages05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "692": {"test": "move_pages06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "693": {"test": "move_pages07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "694": {"test": "move_pages09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "695": {"test": "move_pages10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "696": {"test": "move_pages11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "697": {"test": "move_pages12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "698": {"test": "mprotect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "699": {"test": "mprotect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "700": {"test": "mprotect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "701": {"test": "mprotect04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "702": {"test": "mprotect05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "703": {"test": "pkey01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "704": {"test": "mq_notify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "705": {"test": "mq_notify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "706": {"test": "mq_notify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "707": {"test": "mq_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "708": {"test": "mq_timedreceive01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "709": {"test": "mq_timedsend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "710": {"test": "mq_unlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "711": {"test": "mremap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "712": {"test": "mremap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "713": {"test": "mremap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "714": {"test": "mremap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "715": {"test": "mremap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "716": {"test": "mremap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "717": {"test": "mseal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "718": {"test": "mseal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "719": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "720": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "721": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "722": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "723": {"test": "msgctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "724": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "725": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "726": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "727": {"test": "msgget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "728": {"test": "msgget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "729": {"test": "msgget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "730": {"test": "msgget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "731": {"test": "msgget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "732": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "733": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "734": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "735": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "736": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "737": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "738": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "739": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "740": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "741": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "742": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "743": {"test": "msync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "744": {"test": "msync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "745": {"test": "msync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "746": {"test": "msync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "747": {"test": "munlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "748": {"test": "munlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "749": {"test": "munlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "750": {"test": "munmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "751": {"test": "munmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "752": {"test": "munmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "753": {"test": "nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "754": {"test": "nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "755": {"test": "nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "756": {"test": "name_to_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "757": {"test": "name_to_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "758": {"test": "nftw01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "759": {"test": "nftw6401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "760": {"test": "nice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "761": {"test": "nice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "762": {"test": "nice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "763": {"test": "nice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "764": {"test": "nice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "765": {"test": "open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "766": {"test": "open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "767": {"test": "open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "768": {"test": "open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "769": {"test": "open06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "770": {"test": "open07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "771": {"test": "open08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "772": {"test": "open09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "773": {"test": "open10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "774": {"test": "open11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "775": {"test": "open12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "776": {"test": "open13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "777": {"test": "open14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "778": {"test": "open15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "779": {"test": "openat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "780": {"test": "openat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "781": {"test": "openat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "782": {"test": "openat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "783": {"test": "openat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "784": {"test": "openat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "785": {"test": "openat203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "786": {"test": "open_by_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "787": {"test": "open_by_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "788": {"test": "open_tree01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "789": {"test": "open_tree02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "790": {"test": "mincore01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "791": {"test": "mincore02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "792": {"test": "mincore03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "793": {"test": "mincore04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "794": {"test": "madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "795": {"test": "madvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "796": {"test": "madvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "797": {"test": "madvise05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "798": {"test": "madvise06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "799": {"test": "madvise07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "800": {"test": "madvise08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "801": {"test": "madvise09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "802": {"test": "madvise10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "803": {"test": "madvise11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "804": {"test": "madvise12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "805": {"test": "newuname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "806": {"test": "pathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "807": {"test": "pathconf02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "808": {"test": "pause01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "809": {"test": "pause02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "810": {"test": "pause03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "811": {"test": "personality01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "812": {"test": "personality02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "813": {"test": "pidfd_getfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "814": {"test": "pidfd_getfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "815": {"test": "pidfd_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "816": {"test": "pidfd_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "817": {"test": "pidfd_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "818": {"test": "pidfd_open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "819": {"test": "pidfd_send_signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "820": {"test": "pidfd_send_signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "821": {"test": "pidfd_send_signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "822": {"test": "pipe01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "823": {"test": "pipe02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "824": {"test": "pipe03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "825": {"test": "pipe04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "826": {"test": "pipe05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "827": {"test": "pipe06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "828": {"test": "pipe07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "829": {"test": "pipe08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "830": {"test": "pipe09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "831": {"test": "pipe10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "832": {"test": "pipe11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "833": {"test": "pipe12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "834": {"test": "pipe13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "835": {"test": "pipe14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "836": {"test": "pipe15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "837": {"test": "pipe2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "838": {"test": "pipe2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "839": {"test": "pipe2_04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "840": {"test": "pivot_root01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "841": {"test": "poll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "842": {"test": "poll02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "843": {"test": "ppoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "844": {"test": "prctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "845": {"test": "prctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "846": {"test": "prctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "847": {"test": "prctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "848": {"test": "prctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "849": {"test": "prctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "850": {"test": "prctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "851": {"test": "prctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "852": {"test": "prctl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "853": {"test": "pread01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "854": {"test": "pread01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "855": {"test": "pread02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "856": {"test": "pread02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "857": {"test": "preadv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "858": {"test": "preadv01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "859": {"test": "preadv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "860": {"test": "preadv02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "861": {"test": "preadv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "862": {"test": "preadv03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "863": {"test": "preadv201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "864": {"test": "preadv201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "865": {"test": "preadv202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "866": {"test": "preadv202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "867": {"test": "preadv203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "868": {"test": "preadv203_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "869": {"test": "profil01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "870": {"test": "process_vm_readv01", "status": "pass", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0}, "871": {"test": "process_vm_readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "872": {"test": "process_vm_readv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "873": {"test": "process_vm_writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "874": {"test": "process_vm_writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "875": {"test": "process_madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "876": {"test": "prot_hsymlinks", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "877": {"test": "dirtyc0w", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "878": {"test": "dirtyc0w_shmem", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "879": {"test": "dirtypipe", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "880": {"test": "pselect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "881": {"test": "pselect01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "882": {"test": "pselect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "883": {"test": "pselect02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "884": {"test": "pselect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "885": {"test": "pselect03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "886": {"test": "ptrace01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "887": {"test": "ptrace02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "888": {"test": "ptrace03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "889": {"test": "ptrace04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "890": {"test": "ptrace05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "891": {"test": "ptrace06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "892": {"test": "ptrace07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "893": {"test": "ptrace08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "894": {"test": "ptrace09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "895": {"test": "ptrace10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "896": {"test": "ptrace11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "897": {"test": "pwrite01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "898": {"test": "pwrite02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "899": {"test": "pwrite03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "900": {"test": "pwrite04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "901": {"test": "pwrite01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "902": {"test": "pwrite02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "903": {"test": "pwrite03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "904": {"test": "pwrite04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "905": {"test": "pwritev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "906": {"test": "pwritev01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "907": {"test": "pwritev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "908": {"test": "pwritev02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "909": {"test": "pwritev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "910": {"test": "pwritev03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "911": {"test": "pwritev201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "912": {"test": "pwritev201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "913": {"test": "pwritev202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "914": {"test": "pwritev202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "915": {"test": "quotactl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "916": {"test": "quotactl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "917": {"test": "quotactl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "918": {"test": "quotactl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "919": {"test": "quotactl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "920": {"test": "quotactl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "921": {"test": "quotactl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "922": {"test": "quotactl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "923": {"test": "quotactl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "924": {"test": "read01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "925": {"test": "read02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "926": {"test": "read03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "927": {"test": "read04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "928": {"test": "readahead01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "929": {"test": "readahead02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "930": {"test": "readdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "931": {"test": "readdir21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "932": {"test": "readlink01A", "status": "pass", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "933": {"test": "readlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "934": {"test": "readlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "935": {"test": "readlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "936": {"test": "readlinkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "937": {"test": "readv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "938": {"test": "readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "939": {"test": "realpath01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "940": {"test": "reboot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "941": {"test": "reboot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "942": {"test": "recv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "943": {"test": "recvfrom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "944": {"test": "recvmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "945": {"test": "recvmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "946": {"test": "recvmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "947": {"test": "recvmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "948": {"test": "remap_file_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "949": {"test": "remap_file_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "950": {"test": "removexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "951": {"test": "removexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "952": {"test": "rename01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "953": {"test": "rename01A", "status": "pass", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0}, "954": {"test": "rename03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "955": {"test": "rename04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "956": {"test": "rename05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "957": {"test": "rename06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "958": {"test": "rename07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "959": {"test": "rename08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "960": {"test": "rename09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "961": {"test": "rename10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "962": {"test": "rename11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "963": {"test": "rename12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "964": {"test": "rename13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "965": {"test": "rename14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "966": {"test": "rename15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "967": {"test": "renameat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "968": {"test": "renameat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "969": {"test": "renameat202", "status": "pass", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0}, "970": {"test": "request_key01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "971": {"test": "request_key02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "972": {"test": "request_key03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "973": {"test": "request_key04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "974": {"test": "request_key05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "975": {"test": "request_key06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "976": {"test": "rmdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "977": {"test": "rmdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "978": {"test": "rmdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "979": {"test": "rmdir03A", "status": "pass", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0}, "980": {"test": "rt_sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "981": {"test": "rt_sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "982": {"test": "rt_sigaction03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "983": {"test": "rt_sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "984": {"test": "rt_sigprocmask02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "985": {"test": "rt_sigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "986": {"test": "rt_sigqueueinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "987": {"test": "rt_sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "988": {"test": "rt_sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "989": {"test": "rt_tgsigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "990": {"test": "sbrk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "991": {"test": "sbrk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "992": {"test": "sbrk03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "993": {"test": "sched_get_priority_max01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "994": {"test": "sched_get_priority_max02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "995": {"test": "sched_get_priority_min01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "996": {"test": "sched_get_priority_min02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "997": {"test": "sched_getparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "998": {"test": "sched_getparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "999": {"test": "sched_rr_get_interval01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1000": {"test": "sched_rr_get_interval02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1001": {"test": "sched_rr_get_interval03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1002": {"test": "sched_setparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1003": {"test": "sched_setparam02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1004": {"test": "sched_setparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1005": {"test": "sched_setparam04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1006": {"test": "sched_setparam05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1007": {"test": "sched_getscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1008": {"test": "sched_getscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1009": {"test": "sched_setscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1010": {"test": "sched_setscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1011": {"test": "sched_setscheduler03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1012": {"test": "sched_setscheduler04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1013": {"test": "sched_yield01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1014": {"test": "sched_setaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1015": {"test": "sched_getaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1016": {"test": "sched_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1017": {"test": "sched_getattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1018": {"test": "sched_getattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1019": {"test": "seccomp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1020": {"test": "select01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1021": {"test": "select02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1022": {"test": "select03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1023": {"test": "select04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1024": {"test": "semctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1025": {"test": "semctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1026": {"test": "semctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1027": {"test": "semctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1028": {"test": "semctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1029": {"test": "semctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1030": {"test": "semctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1031": {"test": "semctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1032": {"test": "semctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1033": {"test": "semget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1034": {"test": "semget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1035": {"test": "semget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1036": {"test": "semop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1037": {"test": "semop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1038": {"test": "semop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1039": {"test": "semop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1040": {"test": "semop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1041": {"test": "send01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1042": {"test": "send02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1043": {"test": "sendfile02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1044": {"test": "sendfile02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1045": {"test": "sendfile03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1046": {"test": "sendfile03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1047": {"test": "sendfile04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1048": {"test": "sendfile04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1049": {"test": "sendfile05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1050": {"test": "sendfile05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1051": {"test": "sendfile06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1052": {"test": "sendfile06_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1053": {"test": "sendfile07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1054": {"test": "sendfile07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1055": {"test": "sendfile08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1056": {"test": "sendfile08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1057": {"test": "sendfile09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1058": {"test": "sendfile09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1059": {"test": "sendmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1060": {"test": "sendmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1061": {"test": "sendmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1062": {"test": "sendmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1063": {"test": "sendmmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1064": {"test": "sendto01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1065": {"test": "sendto02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1066": {"test": "sendto03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1067": {"test": "set_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1068": {"test": "set_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1069": {"test": "set_mempolicy03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1070": {"test": "set_mempolicy04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1071": {"test": "set_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1072": {"test": "set_thread_area01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1073": {"test": "set_tid_address01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1074": {"test": "setdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1075": {"test": "setdomainname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1076": {"test": "setdomainname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1077": {"test": "setfsgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1078": {"test": "setfsgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1079": {"test": "setfsgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1080": {"test": "setfsgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1081": {"test": "setfsgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1082": {"test": "setfsgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1083": {"test": "setfsuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1084": {"test": "setfsuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1085": {"test": "setfsuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1086": {"test": "setfsuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1087": {"test": "setfsuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1088": {"test": "setfsuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1089": {"test": "setfsuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1090": {"test": "setfsuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1091": {"test": "setgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1092": {"test": "setgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1093": {"test": "setgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1094": {"test": "setgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1095": {"test": "setgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1096": {"test": "setgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1097": {"test": "setegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1098": {"test": "setegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1099": {"test": "sgetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1100": {"test": "setgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1101": {"test": "setgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1102": {"test": "setgroups02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1103": {"test": "setgroups02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1104": {"test": "setgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1105": {"test": "setgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1106": {"test": "sethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1107": {"test": "sethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1108": {"test": "sethostname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1109": {"test": "setitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1110": {"test": "setitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1111": {"test": "setns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1112": {"test": "setns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1113": {"test": "setpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1114": {"test": "setpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1115": {"test": "setpgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1116": {"test": "setpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1117": {"test": "setpgrp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1118": {"test": "setpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1119": {"test": "setpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1120": {"test": "setregid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1121": {"test": "setregid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1122": {"test": "setregid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1123": {"test": "setregid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1124": {"test": "setregid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1125": {"test": "setregid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1126": {"test": "setregid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1127": {"test": "setregid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1128": {"test": "setresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1129": {"test": "setresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1130": {"test": "setresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1131": {"test": "setresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1132": {"test": "setresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1133": {"test": "setresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1134": {"test": "setresgid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1135": {"test": "setresgid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1136": {"test": "setresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1137": {"test": "setresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1138": {"test": "setresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1139": {"test": "setresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1140": {"test": "setresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1141": {"test": "setresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1142": {"test": "setresuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1143": {"test": "setresuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1144": {"test": "setresuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1145": {"test": "setresuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1146": {"test": "setreuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1147": {"test": "setreuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1148": {"test": "setreuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1149": {"test": "setreuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1150": {"test": "setreuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1151": {"test": "setreuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1152": {"test": "setreuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1153": {"test": "setreuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1154": {"test": "setreuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1155": {"test": "setreuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1156": {"test": "setreuid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1157": {"test": "setreuid06_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1158": {"test": "setreuid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1159": {"test": "setreuid07_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1160": {"test": "setrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1161": {"test": "setrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1162": {"test": "setrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1163": {"test": "setrlimit04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1164": {"test": "setrlimit05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1165": {"test": "setrlimit06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1166": {"test": "setsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1167": {"test": "setsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1168": {"test": "setsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1169": {"test": "setsockopt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1170": {"test": "setsockopt04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1171": {"test": "setsockopt05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1172": {"test": "setsockopt06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1173": {"test": "setsockopt07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1174": {"test": "setsockopt08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1175": {"test": "setsockopt09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1176": {"test": "setsockopt10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1177": {"test": "settimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1178": {"test": "settimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1179": {"test": "setuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1180": {"test": "setuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1181": {"test": "setuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1182": {"test": "setuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1183": {"test": "setuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1184": {"test": "setuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1185": {"test": "setxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1186": {"test": "setxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1187": {"test": "setxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1188": {"test": "shmat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1189": {"test": "shmat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1190": {"test": "shmat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1191": {"test": "shmat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1192": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1193": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1194": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1195": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1196": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1197": {"test": "shmctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1198": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1199": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1200": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1201": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1202": {"test": "shmget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1203": {"test": "shmget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1204": {"test": "shmget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1205": {"test": "shmget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1206": {"test": "shmget06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1207": {"test": "shutdown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1208": {"test": "shutdown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1209": {"test": "sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1210": {"test": "sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1211": {"test": "sigaltstack01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1212": {"test": "sigaltstack02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1213": {"test": "sighold02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1214": {"test": "signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1215": {"test": "signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1216": {"test": "signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1217": {"test": "signal04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1218": {"test": "signal05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1219": {"test": "signal06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1220": {"test": "signalfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1221": {"test": "signalfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1222": {"test": "signalfd4_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1223": {"test": "signalfd4_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1224": {"test": "sigpending02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1225": {"test": "sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1226": {"test": "sigrelse01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1227": {"test": "sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1228": {"test": "sigsuspend02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1229": {"test": "sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1230": {"test": "sigwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1231": {"test": "sigwaitinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1232": {"test": "socket01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1233": {"test": "socket02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1234": {"test": "socketcall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1235": {"test": "socketcall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1236": {"test": "socketcall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1237": {"test": "socketpair01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1238": {"test": "socketpair02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1239": {"test": "sockioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1240": {"test": "splice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1241": {"test": "splice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1242": {"test": "splice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1243": {"test": "splice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1244": {"test": "splice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1245": {"test": "splice06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1246": {"test": "splice07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1247": {"test": "splice08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1248": {"test": "splice09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1249": {"test": "tee01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1250": {"test": "tee02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1251": {"test": "ssetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1252": {"test": "stat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1253": {"test": "stat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1254": {"test": "stat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1255": {"test": "stat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1256": {"test": "stat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1257": {"test": "stat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1258": {"test": "stat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1259": {"test": "stat04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1260": {"test": "statmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1261": {"test": "statmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1262": {"test": "statmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1263": {"test": "statmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1264": {"test": "statmount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1265": {"test": "statmount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1266": {"test": "statmount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1267": {"test": "statmount08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1268": {"test": "statfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1269": {"test": "statfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1270": {"test": "statfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1271": {"test": "statfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1272": {"test": "statfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1273": {"test": "statfs03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1274": {"test": "statvfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1275": {"test": "statvfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1276": {"test": "stime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1277": {"test": "stime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1278": {"test": "string01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1279": {"test": "swapoff01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1280": {"test": "swapoff02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1281": {"test": "swapon01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1282": {"test": "swapon02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1283": {"test": "swapon03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1284": {"test": "switch01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1285": {"test": "symlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1286": {"test": "symlink02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1287": {"test": "symlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1288": {"test": "symlink04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1289": {"test": "symlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1290": {"test": "sync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1291": {"test": "syncfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1292": {"test": "sync_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1293": {"test": "sync_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1294": {"test": "syscall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1295": {"test": "sysconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1296": {"test": "sysctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1297": {"test": "sysctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1298": {"test": "sysctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1299": {"test": "sysfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1300": {"test": "sysfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1301": {"test": "sysfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1302": {"test": "sysfs04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1303": {"test": "sysfs05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1304": {"test": "sysinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1305": {"test": "sysinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1306": {"test": "sysinfo03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1307": {"test": "syslog11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1308": {"test": "syslog12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1309": {"test": "tgkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1310": {"test": "tgkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1311": {"test": "tgkill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1312": {"test": "time01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1313": {"test": "times01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1314": {"test": "times03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1315": {"test": "timerfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1316": {"test": "timerfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1317": {"test": "timerfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1318": {"test": "timerfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1319": {"test": "timerfd_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1320": {"test": "timerfd_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1321": {"test": "timerfd_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1322": {"test": "timer_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1323": {"test": "timer_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1324": {"test": "timer_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1325": {"test": "timer_delete01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1326": {"test": "timer_delete02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1327": {"test": "timer_getoverrun01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1328": {"test": "timer_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1329": {"test": "timer_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1330": {"test": "timer_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1331": {"test": "timer_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1332": {"test": "tkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1333": {"test": "tkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1334": {"test": "truncate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1335": {"test": "truncate02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1336": {"test": "truncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1337": {"test": "truncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1338": {"test": "ulimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1339": {"test": "umask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1340": {"test": "uname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1341": {"test": "uname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1342": {"test": "uname04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1343": {"test": "unlink01", "status": "pass", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "1344": {"test": "unlink05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1345": {"test": "unlink07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1346": {"test": "unlink08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1347": {"test": "unlink09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1348": {"test": "unlink10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1349": {"test": "unlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1350": {"test": "unshare01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1351": {"test": "unshare02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1352": {"test": "umount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1353": {"test": "umount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1354": {"test": "umount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1355": {"test": "umount2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1356": {"test": "umount2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1357": {"test": "userfaultfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1358": {"test": "ustat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1359": {"test": "ustat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1360": {"test": "utime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1361": {"test": "utime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1362": {"test": "utime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1363": {"test": "utime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1364": {"test": "utime05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1365": {"test": "utime06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1366": {"test": "utime07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1367": {"test": "utimes01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1368": {"test": "utimensat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1369": {"test": "vfork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1370": {"test": "vfork02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1371": {"test": "vhangup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1372": {"test": "vhangup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1373": {"test": "vmsplice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1374": {"test": "vmsplice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1375": {"test": "vmsplice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1376": {"test": "vmsplice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1377": {"test": "wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1378": {"test": "wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1379": {"test": "wait401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1380": {"test": "wait402", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1381": {"test": "wait403", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1382": {"test": "waitpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1383": {"test": "waitpid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1384": {"test": "waitpid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1385": {"test": "waitpid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1386": {"test": "waitpid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1387": {"test": "waitpid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1388": {"test": "waitpid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1389": {"test": "waitpid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1390": {"test": "waitpid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1391": {"test": "waitpid12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1392": {"test": "waitpid13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1393": {"test": "waitid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1394": {"test": "waitid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1395": {"test": "waitid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1396": {"test": "waitid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1397": {"test": "waitid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1398": {"test": "waitid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1399": {"test": "waitid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1400": {"test": "waitid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1401": {"test": "waitid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1402": {"test": "waitid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1403": {"test": "waitid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1404": {"test": "write01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1405": {"test": "write02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1406": {"test": "write03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1407": {"test": "write04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1408": {"test": "write05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1409": {"test": "write06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1410": {"test": "writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1411": {"test": "writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1412": {"test": "writev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1413": {"test": "writev05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1414": {"test": "writev06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1415": {"test": "writev07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1416": {"test": "perf_event_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1417": {"test": "perf_event_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1418": {"test": "futex_cmp_requeue01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1419": {"test": "futex_cmp_requeue02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1420": {"test": "futex_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1421": {"test": "futex_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1422": {"test": "futex_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1423": {"test": "futex_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1424": {"test": "futex_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1425": {"test": "futex_waitv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1426": {"test": "futex_waitv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1427": {"test": "futex_waitv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1428": {"test": "futex_wake01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1429": {"test": "futex_wake02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1430": {"test": "futex_wake03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1431": {"test": "futex_wake04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1432": {"test": "futex_wait_bitset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1433": {"test": "memfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1434": {"test": "memfd_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1435": {"test": "memfd_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1436": {"test": "memfd_create04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1437": {"test": "copy_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1438": {"test": "copy_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1439": {"test": "copy_file_range03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1440": {"test": "statx01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1441": {"test": "statx02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1442": {"test": "statx03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1443": {"test": "statx04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1444": {"test": "statx05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1445": {"test": "statx06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1446": {"test": "statx07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1447": {"test": "statx08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1448": {"test": "statx09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1449": {"test": "statx10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1450": {"test": "statx11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1451": {"test": "statx12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1452": {"test": "membarrier01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1453": {"test": "io_uring01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1454": {"test": "io_uring02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1455": {"test": "perf_event_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "summary": {"passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}}} 2026-07-04 18:22:29.674007 2026-07-04 18:23:49.684076 +489 13 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 90 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-04_18:23:49.json {"tool": "kirk", "test_type": {}, "time": {"duration_sec": 16.38}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboOogIvT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09245800971984863}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0876014232635498}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acchDCYbZ as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 55905\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0916447639465332}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09051012992858887}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 39691\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 34049\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46263\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10838079452514648}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accsARBqA as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5422351360321045}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accRU4yuF as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.25950193405151367}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10205602645874023}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accONGDaZ as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accONGDaZ/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1319425106048584}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accP5kLpU as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accP5kLpU/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14469623565673828}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accvSTxpl as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1860699653625488}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08699607849121094}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08954524993896484}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19431805610656738}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14031052589416504}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.129645586013794}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20372462272644043}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2215263843536377}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1635892391204834}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1801457405090332}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2417135238647461}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.1845862865448}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1806089878082275}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.187391519546509}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17890191078186035}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bincMMeyR as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18371367454528809}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2051093578338623}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binTxYPrW as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1937108039855957}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin8NALBr as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3059229850769043}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bineIxHA0 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2719137668609619}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "36": {"test": "bpf_prog05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "37": {"test": "bpf_prog06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "38": {"test": "bpf_prog07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "39": {"test": "brk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "40": {"test": "brk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "41": {"test": "capget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "42": {"test": "capget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "43": {"test": "capset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "44": {"test": "capset02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "45": {"test": "capset03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "46": {"test": "capset04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "47": {"test": "cacheflush01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "48": {"test": "cachestat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "49": {"test": "cachestat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "50": {"test": "cachestat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "51": {"test": "cachestat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "52": {"test": "chdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "53": {"test": "chdir01A", "status": "pass", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0}, "54": {"test": "chdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "55": {"test": "chmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "56": {"test": "chmod01A", "status": "pass", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0}, "57": {"test": "chmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "58": {"test": "chmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "59": {"test": "chmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "60": {"test": "chmod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "61": {"test": "chmod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "62": {"test": "chmod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "63": {"test": "chown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "64": {"test": "chown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "65": {"test": "chown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "66": {"test": "chown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "67": {"test": "chown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "68": {"test": "chown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "69": {"test": "chown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "70": {"test": "chown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "71": {"test": "chown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "72": {"test": "chown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "73": {"test": "chroot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "74": {"test": "chroot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "75": {"test": "chroot03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "76": {"test": "chroot04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "77": {"test": "clock_adjtime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "78": {"test": "clock_adjtime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "79": {"test": "clock_getres01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "80": {"test": "clock_nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "81": {"test": "clock_nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "82": {"test": "clock_nanosleep03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "83": {"test": "clock_nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "84": {"test": "clock_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "85": {"test": "clock_gettime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "86": {"test": "clock_gettime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "87": {"test": "clock_gettime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "88": {"test": "leapsec01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "89": {"test": "clock_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "90": {"test": "clock_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "91": {"test": "clock_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "92": {"test": "clone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "93": {"test": "clone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "94": {"test": "clone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "95": {"test": "clone04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "96": {"test": "clone05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "97": {"test": "clone06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "98": {"test": "clone07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "99": {"test": "clone08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "100": {"test": "clone09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "101": {"test": "clone301", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "102": {"test": "clone302", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "103": {"test": "clone303", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "104": {"test": "close01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "105": {"test": "close02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "106": {"test": "close_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "107": {"test": "close_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "108": {"test": "confstr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "109": {"test": "connect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "110": {"test": "connect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "111": {"test": "creat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "112": {"test": "creat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "113": {"test": "creat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "114": {"test": "creat05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "115": {"test": "creat06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "116": {"test": "creat07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "117": {"test": "creat08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "118": {"test": "creat09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "119": {"test": "delete_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "120": {"test": "delete_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "121": {"test": "delete_module03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "122": {"test": "dup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "123": {"test": "dup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "124": {"test": "dup03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "125": {"test": "dup04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "126": {"test": "dup05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "127": {"test": "dup06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "128": {"test": "dup07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "129": {"test": "dup201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "130": {"test": "dup202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "131": {"test": "dup203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "132": {"test": "dup204", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "133": {"test": "dup205", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "134": {"test": "dup206", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "135": {"test": "dup207", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "136": {"test": "dup3_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "137": {"test": "dup3_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "138": {"test": "epoll_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "139": {"test": "epoll_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "140": {"test": "epoll_create1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "141": {"test": "epoll_create1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "142": {"test": "epoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "143": {"test": "epoll_ctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "144": {"test": "epoll_ctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "145": {"test": "epoll_ctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "146": {"test": "epoll_ctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "147": {"test": "epoll_ctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "148": {"test": "epoll_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "149": {"test": "epoll_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "150": {"test": "epoll_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "151": {"test": "epoll_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "152": {"test": "epoll_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "153": {"test": "epoll_wait06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "154": {"test": "epoll_wait07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "155": {"test": "epoll_pwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "156": {"test": "epoll_pwait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "157": {"test": "epoll_pwait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "158": {"test": "epoll_pwait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "159": {"test": "epoll_pwait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "160": {"test": "eventfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "161": {"test": "eventfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "162": {"test": "eventfd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "163": {"test": "eventfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "164": {"test": "eventfd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "165": {"test": "eventfd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "166": {"test": "eventfd2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "167": {"test": "eventfd2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "168": {"test": "eventfd2_03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "169": {"test": "execl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "170": {"test": "execle01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "171": {"test": "execlp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "172": {"test": "execv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "173": {"test": "execve01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "174": {"test": "execve02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "175": {"test": "execve03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "176": {"test": "execve04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "177": {"test": "execve05", "status": "pass", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0}, "178": {"test": "execve06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "179": {"test": "execvp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "180": {"test": "execveat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "181": {"test": "execveat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "182": {"test": "execveat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "183": {"test": "exit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "184": {"test": "exit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "185": {"test": "exit_group01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "186": {"test": "faccessat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "187": {"test": "faccessat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "188": {"test": "faccessat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "189": {"test": "faccessat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "190": {"test": "fallocate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "191": {"test": "fallocate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "192": {"test": "fallocate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "193": {"test": "fallocate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "194": {"test": "fallocate05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "195": {"test": "fallocate06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "196": {"test": "fsetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "197": {"test": "fsetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "198": {"test": "posix_fadvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "199": {"test": "posix_fadvise01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "200": {"test": "posix_fadvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "201": {"test": "posix_fadvise02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "202": {"test": "posix_fadvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "203": {"test": "posix_fadvise03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "204": {"test": "posix_fadvise04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "205": {"test": "posix_fadvise04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "206": {"test": "fchdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "207": {"test": "fchdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "208": {"test": "fchdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "209": {"test": "fchmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "210": {"test": "fchmod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "211": {"test": "fchmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "212": {"test": "fchmod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "213": {"test": "fchmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "214": {"test": "fchmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "215": {"test": "fchmodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "216": {"test": "fchmodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "217": {"test": "fchmodat2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "218": {"test": "fchmodat2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "219": {"test": "fchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "220": {"test": "fchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "221": {"test": "fchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "222": {"test": "fchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "223": {"test": "fchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "224": {"test": "fchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "225": {"test": "fchown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "226": {"test": "fchown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "227": {"test": "fchown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "228": {"test": "fchown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "229": {"test": "fchownat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "230": {"test": "fchownat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "231": {"test": "fcntl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "232": {"test": "fcntl01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "233": {"test": "fcntl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "234": {"test": "fcntl02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "235": {"test": "fcntl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "236": {"test": "fcntl03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "237": {"test": "fcntl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "238": {"test": "fcntl04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "239": {"test": "fcntl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "240": {"test": "fcntl05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "241": {"test": "fcntl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "242": {"test": "fcntl07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "243": {"test": "fcntl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "244": {"test": "fcntl08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "245": {"test": "fcntl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "246": {"test": "fcntl09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "247": {"test": "fcntl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "248": {"test": "fcntl10_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "249": {"test": "fcntl11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "250": {"test": "fcntl11_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "251": {"test": "fcntl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "252": {"test": "fcntl12_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "253": {"test": "fcntl13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "254": {"test": "fcntl13_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "255": {"test": "fcntl14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "256": {"test": "fcntl14_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "257": {"test": "fcntl15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "258": {"test": "fcntl15_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "259": {"test": "fcntl16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "260": {"test": "fcntl16_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "261": {"test": "fcntl17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "262": {"test": "fcntl17_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "263": {"test": "fcntl18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "264": {"test": "fcntl18_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "265": {"test": "fcntl19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "266": {"test": "fcntl19_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "267": {"test": "fcntl20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "268": {"test": "fcntl20_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "269": {"test": "fcntl21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "270": {"test": "fcntl21_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "271": {"test": "fcntl22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "272": {"test": "fcntl22_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "273": {"test": "fcntl23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "274": {"test": "fcntl23_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "275": {"test": "fcntl24", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "276": {"test": "fcntl24_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "277": {"test": "fcntl25", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "278": {"test": "fcntl25_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "279": {"test": "fcntl26", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "280": {"test": "fcntl26_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "281": {"test": "fcntl27", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "282": {"test": "fcntl27_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "283": {"test": "fcntl29", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "284": {"test": "fcntl29_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "285": {"test": "fcntl30", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "286": {"test": "fcntl30_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "287": {"test": "fcntl31", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "288": {"test": "fcntl31_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "289": {"test": "fcntl32", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "290": {"test": "fcntl32_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "291": {"test": "fcntl33", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "292": {"test": "fcntl33_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "293": {"test": "fcntl34", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "294": {"test": "fcntl34_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "295": {"test": "fcntl35", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "296": {"test": "fcntl35_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "297": {"test": "fcntl36", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "298": {"test": "fcntl36_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "299": {"test": "fcntl37", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "300": {"test": "fcntl37_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "301": {"test": "fcntl38", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "302": {"test": "fcntl38_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "303": {"test": "fcntl39", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "304": {"test": "fcntl39_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "305": {"test": "fdatasync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "306": {"test": "fdatasync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "307": {"test": "fdatasync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "308": {"test": "fgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "309": {"test": "fgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "310": {"test": "fgetxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "311": {"test": "finit_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "312": {"test": "finit_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "313": {"test": "flistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "314": {"test": "flistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "315": {"test": "flistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "316": {"test": "flock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "317": {"test": "flock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "318": {"test": "flock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "319": {"test": "flock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "320": {"test": "flock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "321": {"test": "fmtmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "322": {"test": "fork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "323": {"test": "fork03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "324": {"test": "fork04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "325": {"test": "fork05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "326": {"test": "fork06", "status": "pass", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0}, "327": {"test": "fork07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "328": {"test": "fork08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "329": {"test": "fork09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "330": {"test": "fork10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "331": {"test": "fork11", "status": "pass", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0}, "332": {"test": "fork13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "333": {"test": "fork14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "334": {"test": "fpathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "335": {"test": "fremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "336": {"test": "fremovexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "337": {"test": "fsconfig01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "338": {"test": "fsconfig02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "339": {"test": "fsconfig03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "340": {"test": "fsmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "341": {"test": "fsmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "342": {"test": "fsopen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "343": {"test": "fsopen02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "344": {"test": "fspick01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "345": {"test": "fspick02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "346": {"test": "fstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "347": {"test": "fstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "348": {"test": "fstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "349": {"test": "fstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "350": {"test": "fstatat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "351": {"test": "fstatfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "352": {"test": "fstatfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "353": {"test": "fstatfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "354": {"test": "fstatfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "355": {"test": "fsync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "356": {"test": "fsync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "357": {"test": "fsync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "358": {"test": "fsync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "359": {"test": "ftruncate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "360": {"test": "ftruncate01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "361": {"test": "ftruncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "362": {"test": "ftruncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "363": {"test": "ftruncate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "364": {"test": "ftruncate04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "365": {"test": "futimesat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "366": {"test": "getcontext01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "367": {"test": "getcpu01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "368": {"test": "getcpu02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "369": {"test": "getcwd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "370": {"test": "getcwd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "371": {"test": "getcwd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "372": {"test": "getcwd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "373": {"test": "getdents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "374": {"test": "getdents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "375": {"test": "getdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "376": {"test": "getegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "377": {"test": "getegid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "378": {"test": "getegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "379": {"test": "getegid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "380": {"test": "geteuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "381": {"test": "geteuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "382": {"test": "geteuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "383": {"test": "geteuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "384": {"test": "getgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "385": {"test": "getgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "386": {"test": "getgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "387": {"test": "getgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "388": {"test": "getgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "389": {"test": "getgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "390": {"test": "getgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "391": {"test": "getgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "392": {"test": "gethostbyname_r01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "393": {"test": "gethostid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "394": {"test": "gethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "395": {"test": "gethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "396": {"test": "getitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "397": {"test": "getitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "398": {"test": "getpagesize01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "399": {"test": "getpeername01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "400": {"test": "getpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "401": {"test": "getpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "402": {"test": "getpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "403": {"test": "getpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "404": {"test": "getpid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "405": {"test": "getppid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "406": {"test": "getppid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "407": {"test": "getpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "408": {"test": "getpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "409": {"test": "getrandom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "410": {"test": "getrandom02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "411": {"test": "getrandom03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "412": {"test": "getrandom04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "413": {"test": "getrandom05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "414": {"test": "getresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "415": {"test": "getresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "416": {"test": "getresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "417": {"test": "getresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "418": {"test": "getresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "419": {"test": "getresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "420": {"test": "getresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "421": {"test": "getresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "422": {"test": "getresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "423": {"test": "getresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "424": {"test": "getresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "425": {"test": "getresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "426": {"test": "getrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "427": {"test": "getrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "428": {"test": "getrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "429": {"test": "get_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "430": {"test": "get_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "431": {"test": "get_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "432": {"test": "getrusage01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "433": {"test": "getrusage02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "434": {"test": "getrusage03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "435": {"test": "getrusage04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "436": {"test": "getsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "437": {"test": "getsid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "438": {"test": "getsockname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "439": {"test": "getsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "440": {"test": "getsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "441": {"test": "gettid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "442": {"test": "gettid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "443": {"test": "gettimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "444": {"test": "gettimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "445": {"test": "getuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "446": {"test": "getuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "447": {"test": "getuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "448": {"test": "getuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "449": {"test": "getxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "450": {"test": "getxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "451": {"test": "getxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "452": {"test": "getxattr04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "453": {"test": "getxattr05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "454": {"test": "init_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "455": {"test": "init_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "456": {"test": "ioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "457": {"test": "ioctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "458": {"test": "ioctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "459": {"test": "ioctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "460": {"test": "ioctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "461": {"test": "ioctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "462": {"test": "ioctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "463": {"test": "ioctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "464": {"test": "ioctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "465": {"test": "ioctl_loop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "466": {"test": "ioctl_loop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "467": {"test": "ioctl_loop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "468": {"test": "ioctl_loop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "469": {"test": "ioctl_loop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "470": {"test": "ioctl_loop06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "471": {"test": "ioctl_loop07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "472": {"test": "ioctl_ns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "473": {"test": "ioctl_ns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "474": {"test": "ioctl_ns03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "475": {"test": "ioctl_ns04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "476": {"test": "ioctl_ns05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "477": {"test": "ioctl_ns06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "478": {"test": "ioctl_ns07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "479": {"test": "ioctl_sg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "480": {"test": "ioctl_ficlone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "481": {"test": "ioctl_ficlone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "482": {"test": "ioctl_ficlone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "483": {"test": "ioctl_ficlonerange01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "484": {"test": "ioctl_ficlonerange02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "485": {"test": "inotify_init1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "486": {"test": "inotify_init1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "487": {"test": "inotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "488": {"test": "inotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "489": {"test": "inotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "490": {"test": "inotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "491": {"test": "inotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "492": {"test": "inotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "493": {"test": "inotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "494": {"test": "inotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "495": {"test": "inotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "496": {"test": "inotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "497": {"test": "inotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "498": {"test": "inotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "499": {"test": "fanotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "500": {"test": "fanotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "501": {"test": "fanotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "502": {"test": "fanotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "503": {"test": "fanotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "504": {"test": "fanotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "505": {"test": "fanotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "506": {"test": "fanotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "507": {"test": "fanotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "508": {"test": "fanotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "509": {"test": "fanotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "510": {"test": "fanotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "511": {"test": "fanotify13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "512": {"test": "fanotify14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "513": {"test": "fanotify15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "514": {"test": "fanotify16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "515": {"test": "fanotify17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "516": {"test": "fanotify18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "517": {"test": "fanotify19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "518": {"test": "fanotify20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "519": {"test": "fanotify21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "520": {"test": "fanotify22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "521": {"test": "fanotify23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "522": {"test": "ioperm01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "523": {"test": "ioperm02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "524": {"test": "iopl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "525": {"test": "iopl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "526": {"test": "ioprio_get01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "527": {"test": "ioprio_set01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "528": {"test": "ioprio_set02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "529": {"test": "ioprio_set03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "530": {"test": "io_cancel01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "531": {"test": "io_cancel02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "532": {"test": "io_destroy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "533": {"test": "io_destroy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "534": {"test": "io_getevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "535": {"test": "io_getevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "536": {"test": "io_pgetevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "537": {"test": "io_pgetevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "538": {"test": "io_setup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "539": {"test": "io_setup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "540": {"test": "io_submit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "541": {"test": "io_submit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "542": {"test": "io_submit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "543": {"test": "keyctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "544": {"test": "keyctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "545": {"test": "keyctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "546": {"test": "keyctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "547": {"test": "keyctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "548": {"test": "keyctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "549": {"test": "keyctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "550": {"test": "keyctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "551": {"test": "keyctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "552": {"test": "kcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "553": {"test": "kcmp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "554": {"test": "kcmp03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "555": {"test": "kill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "556": {"test": "kill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "557": {"test": "kill05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "558": {"test": "kill06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "559": {"test": "kill07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "560": {"test": "kill08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "561": {"test": "kill09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "562": {"test": "kill10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "563": {"test": "kill11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "564": {"test": "kill12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "565": {"test": "kill13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "566": {"test": "landlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "567": {"test": "landlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "568": {"test": "landlock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "569": {"test": "landlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "570": {"test": "landlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "571": {"test": "landlock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "572": {"test": "landlock07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "573": {"test": "landlock08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "574": {"test": "lchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "575": {"test": "lchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "576": {"test": "lchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "577": {"test": "lchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "578": {"test": "lchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "579": {"test": "lchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "580": {"test": "lgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "581": {"test": "lgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "582": {"test": "link01", "status": "pass", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0}, "583": {"test": "link02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "584": {"test": "link04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "585": {"test": "link05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "586": {"test": "link08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "587": {"test": "linkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "588": {"test": "linkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "589": {"test": "listen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "590": {"test": "listmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "591": {"test": "listmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "592": {"test": "listmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "593": {"test": "listmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "594": {"test": "listxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "595": {"test": "listxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "596": {"test": "listxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "597": {"test": "llistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "598": {"test": "llistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "599": {"test": "llistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "600": {"test": "llseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "601": {"test": "llseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "602": {"test": "llseek03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "603": {"test": "lremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "604": {"test": "lseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "605": {"test": "lseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "606": {"test": "lseek07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "607": {"test": "lseek11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "608": {"test": "lstat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "609": {"test": "lstat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "610": {"test": "lstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "611": {"test": "lstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "612": {"test": "lstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "613": {"test": "lstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "614": {"test": "mallinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "615": {"test": "mallinfo2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "616": {"test": "mallopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "617": {"test": "mbind01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "618": {"test": "mbind02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "619": {"test": "mbind03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "620": {"test": "mbind04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "621": {"test": "memset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "622": {"test": "memcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "623": {"test": "memcpy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "624": {"test": "migrate_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "625": {"test": "migrate_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "626": {"test": "migrate_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "627": {"test": "mlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "628": {"test": "mlockall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "629": {"test": "mlockall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "630": {"test": "mkdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "631": {"test": "mkdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "632": {"test": "mkdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "633": {"test": "mkdir05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "634": {"test": "mkdir09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "635": {"test": "mkdirat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "636": {"test": "mkdirat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "637": {"test": "mknod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "638": {"test": "mknod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "639": {"test": "mknod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "640": {"test": "mknod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "641": {"test": "mknod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "642": {"test": "mknod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "643": {"test": "mknod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "644": {"test": "mknod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "645": {"test": "mknod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "646": {"test": "mknodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "647": {"test": "mknodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "648": {"test": "mlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "649": {"test": "mlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "650": {"test": "mlock03", "status": "pass", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0}, "651": {"test": "mlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "652": {"test": "mlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "653": {"test": "mlock201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "654": {"test": "mlock202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "655": {"test": "mlock203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "656": {"test": "qmm01", "status": "pass", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0}, "657": {"test": "mmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "658": {"test": "mmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "659": {"test": "mmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "660": {"test": "mmap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "661": {"test": "mmap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "662": {"test": "mmap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "663": {"test": "mmap08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "664": {"test": "mmap09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "665": {"test": "mmap12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "666": {"test": "mmap13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "667": {"test": "mmap14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "668": {"test": "mmap15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "669": {"test": "mmap16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "670": {"test": "mmap17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "671": {"test": "mmap18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "672": {"test": "mmap19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "673": {"test": "mmap20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "674": {"test": "modify_ldt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "675": {"test": "modify_ldt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "676": {"test": "modify_ldt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "677": {"test": "mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "678": {"test": "mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "679": {"test": "mount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "680": {"test": "mount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "681": {"test": "mount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "682": {"test": "mount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "683": {"test": "mount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "684": {"test": "mount_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "685": {"test": "move_mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "686": {"test": "move_mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "687": {"test": "move_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "688": {"test": "move_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "689": {"test": "move_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "690": {"test": "move_pages04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "691": {"test": "move_pages05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "692": {"test": "move_pages06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "693": {"test": "move_pages07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "694": {"test": "move_pages09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "695": {"test": "move_pages10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "696": {"test": "move_pages11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "697": {"test": "move_pages12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "698": {"test": "mprotect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "699": {"test": "mprotect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "700": {"test": "mprotect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "701": {"test": "mprotect04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "702": {"test": "mprotect05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "703": {"test": "pkey01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "704": {"test": "mq_notify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "705": {"test": "mq_notify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "706": {"test": "mq_notify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "707": {"test": "mq_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "708": {"test": "mq_timedreceive01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "709": {"test": "mq_timedsend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "710": {"test": "mq_unlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "711": {"test": "mremap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "712": {"test": "mremap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "713": {"test": "mremap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "714": {"test": "mremap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "715": {"test": "mremap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "716": {"test": "mremap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "717": {"test": "mseal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "718": {"test": "mseal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "719": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "720": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "721": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "722": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "723": {"test": "msgctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "724": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "725": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "726": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "727": {"test": "msgget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "728": {"test": "msgget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "729": {"test": "msgget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "730": {"test": "msgget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "731": {"test": "msgget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "732": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "733": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "734": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "735": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "736": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "737": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "738": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "739": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "740": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "741": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "742": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "743": {"test": "msync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "744": {"test": "msync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "745": {"test": "msync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "746": {"test": "msync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "747": {"test": "munlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "748": {"test": "munlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "749": {"test": "munlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "750": {"test": "munmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "751": {"test": "munmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "752": {"test": "munmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "753": {"test": "nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "754": {"test": "nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "755": {"test": "nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "756": {"test": "name_to_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "757": {"test": "name_to_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "758": {"test": "nftw01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "759": {"test": "nftw6401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "760": {"test": "nice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "761": {"test": "nice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "762": {"test": "nice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "763": {"test": "nice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "764": {"test": "nice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "765": {"test": "open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "766": {"test": "open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "767": {"test": "open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "768": {"test": "open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "769": {"test": "open06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "770": {"test": "open07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "771": {"test": "open08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "772": {"test": "open09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "773": {"test": "open10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "774": {"test": "open11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "775": {"test": "open12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "776": {"test": "open13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "777": {"test": "open14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "778": {"test": "open15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "779": {"test": "openat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "780": {"test": "openat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "781": {"test": "openat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "782": {"test": "openat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "783": {"test": "openat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "784": {"test": "openat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "785": {"test": "openat203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "786": {"test": "open_by_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "787": {"test": "open_by_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "788": {"test": "open_tree01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "789": {"test": "open_tree02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "790": {"test": "mincore01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "791": {"test": "mincore02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "792": {"test": "mincore03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "793": {"test": "mincore04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "794": {"test": "madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "795": {"test": "madvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "796": {"test": "madvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "797": {"test": "madvise05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "798": {"test": "madvise06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "799": {"test": "madvise07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "800": {"test": "madvise08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "801": {"test": "madvise09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "802": {"test": "madvise10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "803": {"test": "madvise11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "804": {"test": "madvise12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "805": {"test": "newuname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "806": {"test": "pathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "807": {"test": "pathconf02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "808": {"test": "pause01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "809": {"test": "pause02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "810": {"test": "pause03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "811": {"test": "personality01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "812": {"test": "personality02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "813": {"test": "pidfd_getfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "814": {"test": "pidfd_getfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "815": {"test": "pidfd_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "816": {"test": "pidfd_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "817": {"test": "pidfd_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "818": {"test": "pidfd_open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "819": {"test": "pidfd_send_signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "820": {"test": "pidfd_send_signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "821": {"test": "pidfd_send_signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "822": {"test": "pipe01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "823": {"test": "pipe02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "824": {"test": "pipe03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "825": {"test": "pipe04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "826": {"test": "pipe05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "827": {"test": "pipe06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "828": {"test": "pipe07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "829": {"test": "pipe08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "830": {"test": "pipe09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "831": {"test": "pipe10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "832": {"test": "pipe11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "833": {"test": "pipe12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "834": {"test": "pipe13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "835": {"test": "pipe14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "836": {"test": "pipe15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "837": {"test": "pipe2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "838": {"test": "pipe2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "839": {"test": "pipe2_04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "840": {"test": "pivot_root01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "841": {"test": "poll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "842": {"test": "poll02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "843": {"test": "ppoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "844": {"test": "prctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "845": {"test": "prctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "846": {"test": "prctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "847": {"test": "prctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "848": {"test": "prctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "849": {"test": "prctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "850": {"test": "prctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "851": {"test": "prctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "852": {"test": "prctl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "853": {"test": "pread01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "854": {"test": "pread01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "855": {"test": "pread02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "856": {"test": "pread02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "857": {"test": "preadv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "858": {"test": "preadv01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "859": {"test": "preadv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "860": {"test": "preadv02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "861": {"test": "preadv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "862": {"test": "preadv03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "863": {"test": "preadv201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "864": {"test": "preadv201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "865": {"test": "preadv202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "866": {"test": "preadv202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "867": {"test": "preadv203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "868": {"test": "preadv203_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "869": {"test": "profil01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "870": {"test": "process_vm_readv01", "status": "pass", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0}, "871": {"test": "process_vm_readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "872": {"test": "process_vm_readv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "873": {"test": "process_vm_writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "874": {"test": "process_vm_writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "875": {"test": "process_madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "876": {"test": "prot_hsymlinks", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "877": {"test": "dirtyc0w", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "878": {"test": "dirtyc0w_shmem", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "879": {"test": "dirtypipe", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "880": {"test": "pselect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "881": {"test": "pselect01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "882": {"test": "pselect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "883": {"test": "pselect02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "884": {"test": "pselect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "885": {"test": "pselect03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "886": {"test": "ptrace01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "887": {"test": "ptrace02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "888": {"test": "ptrace03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "889": {"test": "ptrace04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "890": {"test": "ptrace05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "891": {"test": "ptrace06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "892": {"test": "ptrace07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "893": {"test": "ptrace08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "894": {"test": "ptrace09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "895": {"test": "ptrace10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "896": {"test": "ptrace11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "897": {"test": "pwrite01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "898": {"test": "pwrite02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "899": {"test": "pwrite03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "900": {"test": "pwrite04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "901": {"test": "pwrite01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "902": {"test": "pwrite02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "903": {"test": "pwrite03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "904": {"test": "pwrite04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "905": {"test": "pwritev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "906": {"test": "pwritev01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "907": {"test": "pwritev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "908": {"test": "pwritev02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "909": {"test": "pwritev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "910": {"test": "pwritev03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "911": {"test": "pwritev201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "912": {"test": "pwritev201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "913": {"test": "pwritev202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "914": {"test": "pwritev202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "915": {"test": "quotactl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "916": {"test": "quotactl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "917": {"test": "quotactl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "918": {"test": "quotactl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "919": {"test": "quotactl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "920": {"test": "quotactl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "921": {"test": "quotactl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "922": {"test": "quotactl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "923": {"test": "quotactl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "924": {"test": "read01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "925": {"test": "read02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "926": {"test": "read03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "927": {"test": "read04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "928": {"test": "readahead01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "929": {"test": "readahead02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "930": {"test": "readdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "931": {"test": "readdir21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "932": {"test": "readlink01A", "status": "pass", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "933": {"test": "readlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "934": {"test": "readlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "935": {"test": "readlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "936": {"test": "readlinkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "937": {"test": "readv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "938": {"test": "readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "939": {"test": "realpath01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "940": {"test": "reboot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "941": {"test": "reboot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "942": {"test": "recv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "943": {"test": "recvfrom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "944": {"test": "recvmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "945": {"test": "recvmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "946": {"test": "recvmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "947": {"test": "recvmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "948": {"test": "remap_file_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "949": {"test": "remap_file_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "950": {"test": "removexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "951": {"test": "removexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "952": {"test": "rename01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "953": {"test": "rename01A", "status": "pass", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0}, "954": {"test": "rename03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "955": {"test": "rename04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "956": {"test": "rename05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "957": {"test": "rename06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "958": {"test": "rename07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "959": {"test": "rename08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "960": {"test": "rename09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "961": {"test": "rename10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "962": {"test": "rename11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "963": {"test": "rename12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "964": {"test": "rename13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "965": {"test": "rename14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "966": {"test": "rename15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "967": {"test": "renameat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "968": {"test": "renameat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "969": {"test": "renameat202", "status": "pass", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0}, "970": {"test": "request_key01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "971": {"test": "request_key02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "972": {"test": "request_key03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "973": {"test": "request_key04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "974": {"test": "request_key05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "975": {"test": "request_key06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "976": {"test": "rmdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "977": {"test": "rmdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "978": {"test": "rmdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "979": {"test": "rmdir03A", "status": "pass", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0}, "980": {"test": "rt_sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "981": {"test": "rt_sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "982": {"test": "rt_sigaction03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "983": {"test": "rt_sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "984": {"test": "rt_sigprocmask02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "985": {"test": "rt_sigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "986": {"test": "rt_sigqueueinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "987": {"test": "rt_sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "988": {"test": "rt_sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "989": {"test": "rt_tgsigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "990": {"test": "sbrk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "991": {"test": "sbrk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "992": {"test": "sbrk03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "993": {"test": "sched_get_priority_max01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "994": {"test": "sched_get_priority_max02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "995": {"test": "sched_get_priority_min01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "996": {"test": "sched_get_priority_min02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "997": {"test": "sched_getparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "998": {"test": "sched_getparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "999": {"test": "sched_rr_get_interval01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1000": {"test": "sched_rr_get_interval02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1001": {"test": "sched_rr_get_interval03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1002": {"test": "sched_setparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1003": {"test": "sched_setparam02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1004": {"test": "sched_setparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1005": {"test": "sched_setparam04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1006": {"test": "sched_setparam05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1007": {"test": "sched_getscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1008": {"test": "sched_getscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1009": {"test": "sched_setscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1010": {"test": "sched_setscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1011": {"test": "sched_setscheduler03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1012": {"test": "sched_setscheduler04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1013": {"test": "sched_yield01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1014": {"test": "sched_setaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1015": {"test": "sched_getaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1016": {"test": "sched_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1017": {"test": "sched_getattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1018": {"test": "sched_getattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1019": {"test": "seccomp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1020": {"test": "select01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1021": {"test": "select02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1022": {"test": "select03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1023": {"test": "select04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1024": {"test": "semctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1025": {"test": "semctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1026": {"test": "semctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1027": {"test": "semctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1028": {"test": "semctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1029": {"test": "semctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1030": {"test": "semctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1031": {"test": "semctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1032": {"test": "semctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1033": {"test": "semget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1034": {"test": "semget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1035": {"test": "semget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1036": {"test": "semop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1037": {"test": "semop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1038": {"test": "semop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1039": {"test": "semop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1040": {"test": "semop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1041": {"test": "send01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1042": {"test": "send02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1043": {"test": "sendfile02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1044": {"test": "sendfile02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1045": {"test": "sendfile03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1046": {"test": "sendfile03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1047": {"test": "sendfile04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1048": {"test": "sendfile04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1049": {"test": "sendfile05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1050": {"test": "sendfile05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1051": {"test": "sendfile06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1052": {"test": "sendfile06_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1053": {"test": "sendfile07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1054": {"test": "sendfile07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1055": {"test": "sendfile08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1056": {"test": "sendfile08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1057": {"test": "sendfile09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1058": {"test": "sendfile09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1059": {"test": "sendmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1060": {"test": "sendmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1061": {"test": "sendmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1062": {"test": "sendmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1063": {"test": "sendmmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1064": {"test": "sendto01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1065": {"test": "sendto02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1066": {"test": "sendto03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1067": {"test": "set_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1068": {"test": "set_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1069": {"test": "set_mempolicy03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1070": {"test": "set_mempolicy04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1071": {"test": "set_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1072": {"test": "set_thread_area01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1073": {"test": "set_tid_address01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1074": {"test": "setdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1075": {"test": "setdomainname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1076": {"test": "setdomainname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1077": {"test": "setfsgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1078": {"test": "setfsgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1079": {"test": "setfsgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1080": {"test": "setfsgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1081": {"test": "setfsgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1082": {"test": "setfsgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1083": {"test": "setfsuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1084": {"test": "setfsuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1085": {"test": "setfsuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1086": {"test": "setfsuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1087": {"test": "setfsuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1088": {"test": "setfsuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1089": {"test": "setfsuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1090": {"test": "setfsuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1091": {"test": "setgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1092": {"test": "setgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1093": {"test": "setgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1094": {"test": "setgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1095": {"test": "setgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1096": {"test": "setgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1097": {"test": "setegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1098": {"test": "setegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1099": {"test": "sgetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1100": {"test": "setgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1101": {"test": "setgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1102": {"test": "setgroups02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1103": {"test": "setgroups02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1104": {"test": "setgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1105": {"test": "setgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1106": {"test": "sethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1107": {"test": "sethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1108": {"test": "sethostname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1109": {"test": "setitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1110": {"test": "setitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1111": {"test": "setns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1112": {"test": "setns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1113": {"test": "setpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1114": {"test": "setpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1115": {"test": "setpgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1116": {"test": "setpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1117": {"test": "setpgrp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1118": {"test": "setpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1119": {"test": "setpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1120": {"test": "setregid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1121": {"test": "setregid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1122": {"test": "setregid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1123": {"test": "setregid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1124": {"test": "setregid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1125": {"test": "setregid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1126": {"test": "setregid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1127": {"test": "setregid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1128": {"test": "setresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1129": {"test": "setresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1130": {"test": "setresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1131": {"test": "setresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1132": {"test": "setresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1133": {"test": "setresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1134": {"test": "setresgid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1135": {"test": "setresgid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1136": {"test": "setresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1137": {"test": "setresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1138": {"test": "setresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1139": {"test": "setresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1140": {"test": "setresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1141": {"test": "setresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1142": {"test": "setresuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1143": {"test": "setresuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1144": {"test": "setresuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1145": {"test": "setresuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1146": {"test": "setreuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1147": {"test": "setreuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1148": {"test": "setreuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1149": {"test": "setreuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1150": {"test": "setreuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1151": {"test": "setreuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1152": {"test": "setreuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1153": {"test": "setreuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1154": {"test": "setreuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1155": {"test": "setreuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1156": {"test": "setreuid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1157": {"test": "setreuid06_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1158": {"test": "setreuid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1159": {"test": "setreuid07_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1160": {"test": "setrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1161": {"test": "setrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1162": {"test": "setrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1163": {"test": "setrlimit04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1164": {"test": "setrlimit05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1165": {"test": "setrlimit06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1166": {"test": "setsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1167": {"test": "setsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1168": {"test": "setsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1169": {"test": "setsockopt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1170": {"test": "setsockopt04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1171": {"test": "setsockopt05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1172": {"test": "setsockopt06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1173": {"test": "setsockopt07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1174": {"test": "setsockopt08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1175": {"test": "setsockopt09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1176": {"test": "setsockopt10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1177": {"test": "settimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1178": {"test": "settimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1179": {"test": "setuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1180": {"test": "setuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1181": {"test": "setuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1182": {"test": "setuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1183": {"test": "setuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1184": {"test": "setuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1185": {"test": "setxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1186": {"test": "setxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1187": {"test": "setxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1188": {"test": "shmat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1189": {"test": "shmat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1190": {"test": "shmat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1191": {"test": "shmat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1192": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1193": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1194": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1195": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1196": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1197": {"test": "shmctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1198": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1199": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1200": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1201": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1202": {"test": "shmget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1203": {"test": "shmget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1204": {"test": "shmget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1205": {"test": "shmget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1206": {"test": "shmget06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1207": {"test": "shutdown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1208": {"test": "shutdown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1209": {"test": "sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1210": {"test": "sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1211": {"test": "sigaltstack01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1212": {"test": "sigaltstack02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1213": {"test": "sighold02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1214": {"test": "signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1215": {"test": "signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1216": {"test": "signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1217": {"test": "signal04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1218": {"test": "signal05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1219": {"test": "signal06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1220": {"test": "signalfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1221": {"test": "signalfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1222": {"test": "signalfd4_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1223": {"test": "signalfd4_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1224": {"test": "sigpending02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1225": {"test": "sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1226": {"test": "sigrelse01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1227": {"test": "sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1228": {"test": "sigsuspend02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1229": {"test": "sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1230": {"test": "sigwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1231": {"test": "sigwaitinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1232": {"test": "socket01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1233": {"test": "socket02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1234": {"test": "socketcall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1235": {"test": "socketcall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1236": {"test": "socketcall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1237": {"test": "socketpair01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1238": {"test": "socketpair02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1239": {"test": "sockioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1240": {"test": "splice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1241": {"test": "splice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1242": {"test": "splice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1243": {"test": "splice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1244": {"test": "splice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1245": {"test": "splice06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1246": {"test": "splice07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1247": {"test": "splice08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1248": {"test": "splice09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1249": {"test": "tee01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1250": {"test": "tee02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1251": {"test": "ssetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1252": {"test": "stat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1253": {"test": "stat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1254": {"test": "stat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1255": {"test": "stat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1256": {"test": "stat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1257": {"test": "stat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1258": {"test": "stat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1259": {"test": "stat04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1260": {"test": "statmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1261": {"test": "statmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1262": {"test": "statmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1263": {"test": "statmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1264": {"test": "statmount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1265": {"test": "statmount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1266": {"test": "statmount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1267": {"test": "statmount08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1268": {"test": "statfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1269": {"test": "statfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1270": {"test": "statfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1271": {"test": "statfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1272": {"test": "statfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1273": {"test": "statfs03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1274": {"test": "statvfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1275": {"test": "statvfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1276": {"test": "stime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1277": {"test": "stime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1278": {"test": "string01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1279": {"test": "swapoff01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1280": {"test": "swapoff02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1281": {"test": "swapon01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1282": {"test": "swapon02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1283": {"test": "swapon03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1284": {"test": "switch01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1285": {"test": "symlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1286": {"test": "symlink02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1287": {"test": "symlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1288": {"test": "symlink04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1289": {"test": "symlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1290": {"test": "sync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1291": {"test": "syncfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1292": {"test": "sync_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1293": {"test": "sync_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1294": {"test": "syscall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1295": {"test": "sysconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1296": {"test": "sysctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1297": {"test": "sysctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1298": {"test": "sysctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1299": {"test": "sysfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1300": {"test": "sysfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1301": {"test": "sysfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1302": {"test": "sysfs04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1303": {"test": "sysfs05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1304": {"test": "sysinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1305": {"test": "sysinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1306": {"test": "sysinfo03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1307": {"test": "syslog11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1308": {"test": "syslog12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1309": {"test": "tgkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1310": {"test": "tgkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1311": {"test": "tgkill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1312": {"test": "time01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1313": {"test": "times01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1314": {"test": "times03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1315": {"test": "timerfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1316": {"test": "timerfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1317": {"test": "timerfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1318": {"test": "timerfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1319": {"test": "timerfd_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1320": {"test": "timerfd_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1321": {"test": "timerfd_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1322": {"test": "timer_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1323": {"test": "timer_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1324": {"test": "timer_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1325": {"test": "timer_delete01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1326": {"test": "timer_delete02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1327": {"test": "timer_getoverrun01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1328": {"test": "timer_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1329": {"test": "timer_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1330": {"test": "timer_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1331": {"test": "timer_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1332": {"test": "tkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1333": {"test": "tkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1334": {"test": "truncate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1335": {"test": "truncate02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1336": {"test": "truncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1337": {"test": "truncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1338": {"test": "ulimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1339": {"test": "umask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1340": {"test": "uname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1341": {"test": "uname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1342": {"test": "uname04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1343": {"test": "unlink01", "status": "pass", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "1344": {"test": "unlink05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1345": {"test": "unlink07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1346": {"test": "unlink08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1347": {"test": "unlink09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1348": {"test": "unlink10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1349": {"test": "unlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1350": {"test": "unshare01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1351": {"test": "unshare02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1352": {"test": "umount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1353": {"test": "umount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1354": {"test": "umount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1355": {"test": "umount2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1356": {"test": "umount2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1357": {"test": "userfaultfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1358": {"test": "ustat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1359": {"test": "ustat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1360": {"test": "utime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1361": {"test": "utime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1362": {"test": "utime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1363": {"test": "utime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1364": {"test": "utime05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1365": {"test": "utime06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1366": {"test": "utime07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1367": {"test": "utimes01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1368": {"test": "utimensat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1369": {"test": "vfork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1370": {"test": "vfork02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1371": {"test": "vhangup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1372": {"test": "vhangup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1373": {"test": "vmsplice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1374": {"test": "vmsplice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1375": {"test": "vmsplice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1376": {"test": "vmsplice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1377": {"test": "wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1378": {"test": "wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1379": {"test": "wait401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1380": {"test": "wait402", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1381": {"test": "wait403", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1382": {"test": "waitpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1383": {"test": "waitpid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1384": {"test": "waitpid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1385": {"test": "waitpid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1386": {"test": "waitpid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1387": {"test": "waitpid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1388": {"test": "waitpid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1389": {"test": "waitpid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1390": {"test": "waitpid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1391": {"test": "waitpid12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1392": {"test": "waitpid13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1393": {"test": "waitid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1394": {"test": "waitid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1395": {"test": "waitid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1396": {"test": "waitid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1397": {"test": "waitid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1398": {"test": "waitid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1399": {"test": "waitid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1400": {"test": "waitid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1401": {"test": "waitid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1402": {"test": "waitid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1403": {"test": "waitid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1404": {"test": "write01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1405": {"test": "write02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1406": {"test": "write03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1407": {"test": "write04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1408": {"test": "write05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1409": {"test": "write06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1410": {"test": "writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1411": {"test": "writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1412": {"test": "writev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1413": {"test": "writev05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1414": {"test": "writev06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1415": {"test": "writev07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1416": {"test": "perf_event_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1417": {"test": "perf_event_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1418": {"test": "futex_cmp_requeue01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1419": {"test": "futex_cmp_requeue02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1420": {"test": "futex_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1421": {"test": "futex_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1422": {"test": "futex_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1423": {"test": "futex_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1424": {"test": "futex_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1425": {"test": "futex_waitv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1426": {"test": "futex_waitv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1427": {"test": "futex_waitv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1428": {"test": "futex_wake01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1429": {"test": "futex_wake02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1430": {"test": "futex_wake03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1431": {"test": "futex_wake04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1432": {"test": "futex_wait_bitset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1433": {"test": "memfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1434": {"test": "memfd_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1435": {"test": "memfd_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1436": {"test": "memfd_create04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1437": {"test": "copy_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1438": {"test": "copy_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1439": {"test": "copy_file_range03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1440": {"test": "statx01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1441": {"test": "statx02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1442": {"test": "statx03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1443": {"test": "statx04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1444": {"test": "statx05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1445": {"test": "statx06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1446": {"test": "statx07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1447": {"test": "statx08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1448": {"test": "statx09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1449": {"test": "statx10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1450": {"test": "statx11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1451": {"test": "statx12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1452": {"test": "membarrier01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1453": {"test": "io_uring01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1454": {"test": "io_uring02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1455": {"test": "perf_event_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "summary": {"passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}}} 2026-07-04 18:23:49.696379 2026-07-04 18:25:09.706606 +280 11 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 234881024, "io_kbytes": 229376, "bw_bytes": 46789048, "bw": 45692, "iops": 22.310757, "runtime": 5020, "total_ios": 112, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 623983, "max": 14182374, "mean": 1175047.830357, "stddev": 1250354.373493, "N": 112}, "clat_ns": {"min": 508038, "max": 74748997, "mean": 43551985.419643, "stddev": 17284214.007887, "N": 112, "percentile": {"1.000000": 528384, "5.000000": 561152, "10.000000": 13565952, "20.000000": 34865152, "30.000000": 43778048, "40.000000": 50069504, "50.000000": 51118080, "60.000000": 51642368, "70.000000": 51642368, "80.000000": 53215232, "90.000000": 56360960, "95.000000": 59506688, "99.000000": 70778880, "99.500000": 74973184, "99.900000": 74973184, "99.950000": 74973184, "99.990000": 74973184}}, "lat_ns": {"min": 1473585, "max": 75620602, "mean": 44727033.25, "stddev": 17386391.902346, "N": 112}, "bw_min": 38950, "bw_max": 53301, "bw_agg": 99.541653, "bw_mean": 45483.8, "bw_dev": 5690.211349, "bw_samples": 5, "iops_min": 19, "iops_max": 26, "iops_mean": 22.2, "iops_stddev": 2.774887, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.318789, "sys_cpu": 3.267583, "ctx": 113, "majf": 0, "minf": 557, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 8.928571, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 4.464286, "50": 25.0, "100": 61.607143, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:42:06.506219 2026-07-04 11:58:54.193208 +281 11 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.03}, "metrics": {"read": {"io_bytes": 335544320, "io_kbytes": 327680, "bw_bytes": 66721877, "bw": 65158, "iops": 31.81547, "runtime": 5029, "total_ios": 160, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 546663, "max": 12878599, "mean": 1159369.5375, "stddev": 970270.376158, "N": 160}, "clat_ns": {"min": 73703, "max": 83932947, "mean": 30191942.93125, "stddev": 26687530.945718, "N": 160, "percentile": {"1.000000": 103936, "5.000000": 419840, "10.000000": 505856, "20.000000": 585728, "30.000000": 643072, "40.000000": 15532032, "50.000000": 30015488, "60.000000": 43778048, "70.000000": 51642368, "80.000000": 58458112, "90.000000": 65273856, "95.000000": 68681728, "99.000000": 82313216, "99.500000": 84410368, "99.900000": 84410368, "99.950000": 84410368, "99.990000": 84410368}}, "lat_ns": {"min": 1040163, "max": 85004501, "mean": 31351312.46875, "stddev": 26556545.231465, "N": 160}, "bw_min": 53248, "bw_max": 79872, "bw_agg": 99.987595, "bw_mean": 65150.0, "bw_dev": 11964.313332, "bw_samples": 5, "iops_min": 26, "iops_max": 39, "iops_mean": 31.8, "iops_stddev": 5.848077, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.477232, "sys_cpu": 4.474051, "ctx": 157, "majf": 0, "minf": 558, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.625, "250": 0.625, "500": 7.5, "750": 26.25, "1000": 1.25}, "latency_ms": {"2": 0.0, "4": 0.625, "10": 0.0, "20": 5.0, "50": 25.0, "100": 33.125, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:43:18.502262 2026-07-04 11:58:54.193208 +282 11 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.31}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 394264576, "io_kbytes": 385024, "bw_bytes": 74179600, "bw": 72441, "iops": 35.37159, "runtime": 5315, "total_ios": 188, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 571211, "max": 1676249, "mean": 855224.154255, "stddev": 214020.345896, "N": 188}, "clat_ns": {"min": 527165, "max": 2502874415, "mean": 27355038.882979, "stddev": 192929149.260861, "N": 188, "percentile": {"1.000000": 593920, "5.000000": 692224, "10.000000": 741376, "20.000000": 782336, "30.000000": 823296, "40.000000": 856064, "50.000000": 929792, "60.000000": 1003520, "70.000000": 1138688, "80.000000": 1531904, "90.000000": 12910592, "95.000000": 65273856, "99.000000": 692060160, "99.500000": 2499805184, "99.900000": 2499805184, "99.950000": 2499805184, "99.990000": 2499805184}}, "lat_ns": {"min": 1246494, "max": 2504347870, "mean": 28210263.037234, "stddev": 192990145.834366, "N": 188}, "bw_min": 29873, "bw_max": 217088, "bw_agg": 100.0, "bw_mean": 96689.666667, "bw_dev": 104477.79816, "bw_samples": 3, "iops_min": 14, "iops_max": 106, "iops_mean": 47.0, "iops_stddev": 51.215232, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.940911, "sys_cpu": 2.578096, "ctx": 206, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 11.170213, "1000": 48.404255}, "latency_ms": {"2": 22.87234, "4": 3.723404, "10": 2.659574, "20": 4.255319, "50": 1.595745, "100": 0.531915, "250": 2.659574, "500": 1.06383, "750": 0.531915, "1000": 0.0, "2000": 0.0, ">=2000": 0.531915}}} 2026-07-04 16:44:24.793113 2026-07-04 11:58:54.193208 +283 11 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1405MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 7.58}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4194304, "io_kbytes": 4096, "bw_bytes": 553046, "bw": 540, "iops": 0.131857, "runtime": 7584, "total_ios": 1, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1918991, "max": 1918991, "mean": 1918991.0, "stddev": 0.0, "N": 1}, "clat_ns": {"min": 7578478128, "max": 7578478128, "mean": 7578478128.0, "stddev": 0.0, "N": 1, "percentile": {"1.000000": 7549747200, "5.000000": 7549747200, "10.000000": 7549747200, "20.000000": 7549747200, "30.000000": 7549747200, "40.000000": 7549747200, "50.000000": 7549747200, "60.000000": 7549747200, "70.000000": 7549747200, "80.000000": 7549747200, "90.000000": 7549747200, "95.000000": 7549747200, "99.000000": 7549747200, "99.500000": 7549747200, "99.900000": 7549747200, "99.950000": 7549747200, "99.990000": 7549747200}}, "lat_ns": {"min": 7580397119, "max": 7580397119, "mean": 7580397119.0, "stddev": 0.0, "N": 1}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.026375, "sys_cpu": 0.039562, "ctx": 1, "majf": 0, "minf": 34, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-04 16:44:31.339558 2026-07-04 11:58:54.193208 +490 13 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 100 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-04_18:25:09.json {"tool": "kirk", "test_type": {}, "time": {"duration_sec": 16.23}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aborByKY2 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09321117401123047}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08608341217041016}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accX7Vnhp as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 36491\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0923616886138916}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08876538276672363}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 33159\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 40965\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46417\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1086280345916748}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accwjTFZS as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5820538997650146}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accWmr3GT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2655937671661377}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10382366180419922}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accc6t03O as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accc6t03O/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12873077392578125}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accgDzoae as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accgDzoae/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14661812782287598}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accuaGhiJ as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1953954696655273}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08968591690063477}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09454607963562012}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2135775089263916}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15217828750610352}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0947580337524414}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16652274131774902}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.24694132804870605}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16972064971923828}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14537572860717773}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16248631477355957}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.1684818267822266}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1975479125976562}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.202589511871338}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17646360397338867}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binc1tPeC as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18441128730773926}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18090081214904785}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bincwGqMk as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17157578468322754}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binsgot7z as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2992396354675293}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binMAGaDW as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.219132661819458}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "36": {"test": "bpf_prog05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "37": {"test": "bpf_prog06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "38": {"test": "bpf_prog07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "39": {"test": "brk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "40": {"test": "brk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "41": {"test": "capget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "42": {"test": "capget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "43": {"test": "capset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "44": {"test": "capset02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "45": {"test": "capset03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "46": {"test": "capset04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "47": {"test": "cacheflush01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "48": {"test": "cachestat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "49": {"test": "cachestat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "50": {"test": "cachestat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "51": {"test": "cachestat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "52": {"test": "chdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "53": {"test": "chdir01A", "status": "pass", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0}, "54": {"test": "chdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "55": {"test": "chmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "56": {"test": "chmod01A", "status": "pass", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0}, "57": {"test": "chmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "58": {"test": "chmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "59": {"test": "chmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "60": {"test": "chmod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "61": {"test": "chmod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "62": {"test": "chmod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "63": {"test": "chown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "64": {"test": "chown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "65": {"test": "chown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "66": {"test": "chown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "67": {"test": "chown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "68": {"test": "chown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "69": {"test": "chown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "70": {"test": "chown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "71": {"test": "chown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "72": {"test": "chown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "73": {"test": "chroot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "74": {"test": "chroot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "75": {"test": "chroot03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "76": {"test": "chroot04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "77": {"test": "clock_adjtime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "78": {"test": "clock_adjtime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "79": {"test": "clock_getres01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "80": {"test": "clock_nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "81": {"test": "clock_nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "82": {"test": "clock_nanosleep03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "83": {"test": "clock_nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "84": {"test": "clock_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "85": {"test": "clock_gettime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "86": {"test": "clock_gettime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "87": {"test": "clock_gettime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "88": {"test": "leapsec01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "89": {"test": "clock_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "90": {"test": "clock_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "91": {"test": "clock_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "92": {"test": "clone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "93": {"test": "clone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "94": {"test": "clone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "95": {"test": "clone04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "96": {"test": "clone05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "97": {"test": "clone06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "98": {"test": "clone07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "99": {"test": "clone08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "100": {"test": "clone09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "101": {"test": "clone301", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "102": {"test": "clone302", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "103": {"test": "clone303", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "104": {"test": "close01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "105": {"test": "close02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "106": {"test": "close_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "107": {"test": "close_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "108": {"test": "confstr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "109": {"test": "connect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "110": {"test": "connect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "111": {"test": "creat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "112": {"test": "creat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "113": {"test": "creat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "114": {"test": "creat05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "115": {"test": "creat06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "116": {"test": "creat07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "117": {"test": "creat08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "118": {"test": "creat09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "119": {"test": "delete_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "120": {"test": "delete_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "121": {"test": "delete_module03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "122": {"test": "dup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "123": {"test": "dup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "124": {"test": "dup03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "125": {"test": "dup04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "126": {"test": "dup05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "127": {"test": "dup06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "128": {"test": "dup07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "129": {"test": "dup201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "130": {"test": "dup202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "131": {"test": "dup203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "132": {"test": "dup204", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "133": {"test": "dup205", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "134": {"test": "dup206", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "135": {"test": "dup207", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "136": {"test": "dup3_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "137": {"test": "dup3_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "138": {"test": "epoll_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "139": {"test": "epoll_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "140": {"test": "epoll_create1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "141": {"test": "epoll_create1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "142": {"test": "epoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "143": {"test": "epoll_ctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "144": {"test": "epoll_ctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "145": {"test": "epoll_ctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "146": {"test": "epoll_ctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "147": {"test": "epoll_ctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "148": {"test": "epoll_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "149": {"test": "epoll_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "150": {"test": "epoll_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "151": {"test": "epoll_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "152": {"test": "epoll_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "153": {"test": "epoll_wait06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "154": {"test": "epoll_wait07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "155": {"test": "epoll_pwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "156": {"test": "epoll_pwait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "157": {"test": "epoll_pwait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "158": {"test": "epoll_pwait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "159": {"test": "epoll_pwait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "160": {"test": "eventfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "161": {"test": "eventfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "162": {"test": "eventfd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "163": {"test": "eventfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "164": {"test": "eventfd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "165": {"test": "eventfd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "166": {"test": "eventfd2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "167": {"test": "eventfd2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "168": {"test": "eventfd2_03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "169": {"test": "execl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "170": {"test": "execle01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "171": {"test": "execlp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "172": {"test": "execv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "173": {"test": "execve01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "174": {"test": "execve02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "175": {"test": "execve03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "176": {"test": "execve04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "177": {"test": "execve05", "status": "pass", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0}, "178": {"test": "execve06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "179": {"test": "execvp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "180": {"test": "execveat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "181": {"test": "execveat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "182": {"test": "execveat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "183": {"test": "exit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "184": {"test": "exit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "185": {"test": "exit_group01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "186": {"test": "faccessat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "187": {"test": "faccessat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "188": {"test": "faccessat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "189": {"test": "faccessat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "190": {"test": "fallocate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "191": {"test": "fallocate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "192": {"test": "fallocate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "193": {"test": "fallocate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "194": {"test": "fallocate05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "195": {"test": "fallocate06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "196": {"test": "fsetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "197": {"test": "fsetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "198": {"test": "posix_fadvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "199": {"test": "posix_fadvise01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "200": {"test": "posix_fadvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "201": {"test": "posix_fadvise02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "202": {"test": "posix_fadvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "203": {"test": "posix_fadvise03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "204": {"test": "posix_fadvise04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "205": {"test": "posix_fadvise04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "206": {"test": "fchdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "207": {"test": "fchdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "208": {"test": "fchdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "209": {"test": "fchmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "210": {"test": "fchmod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "211": {"test": "fchmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "212": {"test": "fchmod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "213": {"test": "fchmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "214": {"test": "fchmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "215": {"test": "fchmodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "216": {"test": "fchmodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "217": {"test": "fchmodat2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "218": {"test": "fchmodat2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "219": {"test": "fchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "220": {"test": "fchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "221": {"test": "fchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "222": {"test": "fchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "223": {"test": "fchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "224": {"test": "fchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "225": {"test": "fchown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "226": {"test": "fchown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "227": {"test": "fchown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "228": {"test": "fchown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "229": {"test": "fchownat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "230": {"test": "fchownat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "231": {"test": "fcntl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "232": {"test": "fcntl01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "233": {"test": "fcntl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "234": {"test": "fcntl02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "235": {"test": "fcntl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "236": {"test": "fcntl03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "237": {"test": "fcntl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "238": {"test": "fcntl04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "239": {"test": "fcntl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "240": {"test": "fcntl05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "241": {"test": "fcntl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "242": {"test": "fcntl07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "243": {"test": "fcntl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "244": {"test": "fcntl08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "245": {"test": "fcntl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "246": {"test": "fcntl09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "247": {"test": "fcntl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "248": {"test": "fcntl10_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "249": {"test": "fcntl11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "250": {"test": "fcntl11_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "251": {"test": "fcntl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "252": {"test": "fcntl12_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "253": {"test": "fcntl13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "254": {"test": "fcntl13_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "255": {"test": "fcntl14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "256": {"test": "fcntl14_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "257": {"test": "fcntl15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "258": {"test": "fcntl15_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "259": {"test": "fcntl16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "260": {"test": "fcntl16_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "261": {"test": "fcntl17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "262": {"test": "fcntl17_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "263": {"test": "fcntl18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "264": {"test": "fcntl18_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "265": {"test": "fcntl19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "266": {"test": "fcntl19_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "267": {"test": "fcntl20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "268": {"test": "fcntl20_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "269": {"test": "fcntl21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "270": {"test": "fcntl21_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "271": {"test": "fcntl22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "272": {"test": "fcntl22_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "273": {"test": "fcntl23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "274": {"test": "fcntl23_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "275": {"test": "fcntl24", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "276": {"test": "fcntl24_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "277": {"test": "fcntl25", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "278": {"test": "fcntl25_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "279": {"test": "fcntl26", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "280": {"test": "fcntl26_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "281": {"test": "fcntl27", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "282": {"test": "fcntl27_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "283": {"test": "fcntl29", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "284": {"test": "fcntl29_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "285": {"test": "fcntl30", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "286": {"test": "fcntl30_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "287": {"test": "fcntl31", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "288": {"test": "fcntl31_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "289": {"test": "fcntl32", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "290": {"test": "fcntl32_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "291": {"test": "fcntl33", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "292": {"test": "fcntl33_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "293": {"test": "fcntl34", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "294": {"test": "fcntl34_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "295": {"test": "fcntl35", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "296": {"test": "fcntl35_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "297": {"test": "fcntl36", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "298": {"test": "fcntl36_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "299": {"test": "fcntl37", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "300": {"test": "fcntl37_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "301": {"test": "fcntl38", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "302": {"test": "fcntl38_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "303": {"test": "fcntl39", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "304": {"test": "fcntl39_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "305": {"test": "fdatasync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "306": {"test": "fdatasync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "307": {"test": "fdatasync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "308": {"test": "fgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "309": {"test": "fgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "310": {"test": "fgetxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "311": {"test": "finit_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "312": {"test": "finit_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "313": {"test": "flistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "314": {"test": "flistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "315": {"test": "flistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "316": {"test": "flock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "317": {"test": "flock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "318": {"test": "flock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "319": {"test": "flock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "320": {"test": "flock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "321": {"test": "fmtmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "322": {"test": "fork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "323": {"test": "fork03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "324": {"test": "fork04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "325": {"test": "fork05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "326": {"test": "fork06", "status": "pass", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0}, "327": {"test": "fork07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "328": {"test": "fork08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "329": {"test": "fork09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "330": {"test": "fork10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "331": {"test": "fork11", "status": "pass", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0}, "332": {"test": "fork13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "333": {"test": "fork14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "334": {"test": "fpathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "335": {"test": "fremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "336": {"test": "fremovexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "337": {"test": "fsconfig01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "338": {"test": "fsconfig02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "339": {"test": "fsconfig03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "340": {"test": "fsmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "341": {"test": "fsmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "342": {"test": "fsopen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "343": {"test": "fsopen02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "344": {"test": "fspick01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "345": {"test": "fspick02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "346": {"test": "fstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "347": {"test": "fstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "348": {"test": "fstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "349": {"test": "fstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "350": {"test": "fstatat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "351": {"test": "fstatfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "352": {"test": "fstatfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "353": {"test": "fstatfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "354": {"test": "fstatfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "355": {"test": "fsync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "356": {"test": "fsync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "357": {"test": "fsync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "358": {"test": "fsync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "359": {"test": "ftruncate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "360": {"test": "ftruncate01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "361": {"test": "ftruncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "362": {"test": "ftruncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "363": {"test": "ftruncate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "364": {"test": "ftruncate04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "365": {"test": "futimesat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "366": {"test": "getcontext01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "367": {"test": "getcpu01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "368": {"test": "getcpu02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "369": {"test": "getcwd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "370": {"test": "getcwd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "371": {"test": "getcwd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "372": {"test": "getcwd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "373": {"test": "getdents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "374": {"test": "getdents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "375": {"test": "getdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "376": {"test": "getegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "377": {"test": "getegid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "378": {"test": "getegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "379": {"test": "getegid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "380": {"test": "geteuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "381": {"test": "geteuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "382": {"test": "geteuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "383": {"test": "geteuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "384": {"test": "getgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "385": {"test": "getgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "386": {"test": "getgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "387": {"test": "getgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "388": {"test": "getgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "389": {"test": "getgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "390": {"test": "getgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "391": {"test": "getgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "392": {"test": "gethostbyname_r01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "393": {"test": "gethostid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "394": {"test": "gethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "395": {"test": "gethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "396": {"test": "getitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "397": {"test": "getitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "398": {"test": "getpagesize01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "399": {"test": "getpeername01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "400": {"test": "getpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "401": {"test": "getpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "402": {"test": "getpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "403": {"test": "getpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "404": {"test": "getpid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "405": {"test": "getppid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "406": {"test": "getppid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "407": {"test": "getpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "408": {"test": "getpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "409": {"test": "getrandom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "410": {"test": "getrandom02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "411": {"test": "getrandom03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "412": {"test": "getrandom04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "413": {"test": "getrandom05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "414": {"test": "getresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "415": {"test": "getresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "416": {"test": "getresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "417": {"test": "getresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "418": {"test": "getresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "419": {"test": "getresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "420": {"test": "getresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "421": {"test": "getresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "422": {"test": "getresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "423": {"test": "getresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "424": {"test": "getresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "425": {"test": "getresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "426": {"test": "getrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "427": {"test": "getrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "428": {"test": "getrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "429": {"test": "get_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "430": {"test": "get_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "431": {"test": "get_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "432": {"test": "getrusage01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "433": {"test": "getrusage02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "434": {"test": "getrusage03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "435": {"test": "getrusage04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "436": {"test": "getsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "437": {"test": "getsid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "438": {"test": "getsockname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "439": {"test": "getsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "440": {"test": "getsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "441": {"test": "gettid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "442": {"test": "gettid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "443": {"test": "gettimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "444": {"test": "gettimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "445": {"test": "getuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "446": {"test": "getuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "447": {"test": "getuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "448": {"test": "getuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "449": {"test": "getxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "450": {"test": "getxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "451": {"test": "getxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "452": {"test": "getxattr04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "453": {"test": "getxattr05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "454": {"test": "init_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "455": {"test": "init_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "456": {"test": "ioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "457": {"test": "ioctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "458": {"test": "ioctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "459": {"test": "ioctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "460": {"test": "ioctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "461": {"test": "ioctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "462": {"test": "ioctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "463": {"test": "ioctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "464": {"test": "ioctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "465": {"test": "ioctl_loop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "466": {"test": "ioctl_loop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "467": {"test": "ioctl_loop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "468": {"test": "ioctl_loop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "469": {"test": "ioctl_loop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "470": {"test": "ioctl_loop06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "471": {"test": "ioctl_loop07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "472": {"test": "ioctl_ns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "473": {"test": "ioctl_ns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "474": {"test": "ioctl_ns03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "475": {"test": "ioctl_ns04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "476": {"test": "ioctl_ns05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "477": {"test": "ioctl_ns06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "478": {"test": "ioctl_ns07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "479": {"test": "ioctl_sg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "480": {"test": "ioctl_ficlone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "481": {"test": "ioctl_ficlone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "482": {"test": "ioctl_ficlone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "483": {"test": "ioctl_ficlonerange01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "484": {"test": "ioctl_ficlonerange02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "485": {"test": "inotify_init1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "486": {"test": "inotify_init1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "487": {"test": "inotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "488": {"test": "inotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "489": {"test": "inotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "490": {"test": "inotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "491": {"test": "inotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "492": {"test": "inotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "493": {"test": "inotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "494": {"test": "inotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "495": {"test": "inotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "496": {"test": "inotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "497": {"test": "inotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "498": {"test": "inotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "499": {"test": "fanotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "500": {"test": "fanotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "501": {"test": "fanotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "502": {"test": "fanotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "503": {"test": "fanotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "504": {"test": "fanotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "505": {"test": "fanotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "506": {"test": "fanotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "507": {"test": "fanotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "508": {"test": "fanotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "509": {"test": "fanotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "510": {"test": "fanotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "511": {"test": "fanotify13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "512": {"test": "fanotify14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "513": {"test": "fanotify15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "514": {"test": "fanotify16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "515": {"test": "fanotify17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "516": {"test": "fanotify18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "517": {"test": "fanotify19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "518": {"test": "fanotify20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "519": {"test": "fanotify21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "520": {"test": "fanotify22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "521": {"test": "fanotify23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "522": {"test": "ioperm01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "523": {"test": "ioperm02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "524": {"test": "iopl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "525": {"test": "iopl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "526": {"test": "ioprio_get01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "527": {"test": "ioprio_set01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "528": {"test": "ioprio_set02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "529": {"test": "ioprio_set03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "530": {"test": "io_cancel01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "531": {"test": "io_cancel02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "532": {"test": "io_destroy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "533": {"test": "io_destroy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "534": {"test": "io_getevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "535": {"test": "io_getevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "536": {"test": "io_pgetevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "537": {"test": "io_pgetevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "538": {"test": "io_setup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "539": {"test": "io_setup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "540": {"test": "io_submit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "541": {"test": "io_submit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "542": {"test": "io_submit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "543": {"test": "keyctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "544": {"test": "keyctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "545": {"test": "keyctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "546": {"test": "keyctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "547": {"test": "keyctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "548": {"test": "keyctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "549": {"test": "keyctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "550": {"test": "keyctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "551": {"test": "keyctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "552": {"test": "kcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "553": {"test": "kcmp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "554": {"test": "kcmp03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "555": {"test": "kill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "556": {"test": "kill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "557": {"test": "kill05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "558": {"test": "kill06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "559": {"test": "kill07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "560": {"test": "kill08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "561": {"test": "kill09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "562": {"test": "kill10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "563": {"test": "kill11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "564": {"test": "kill12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "565": {"test": "kill13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "566": {"test": "landlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "567": {"test": "landlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "568": {"test": "landlock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "569": {"test": "landlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "570": {"test": "landlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "571": {"test": "landlock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "572": {"test": "landlock07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "573": {"test": "landlock08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "574": {"test": "lchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "575": {"test": "lchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "576": {"test": "lchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "577": {"test": "lchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "578": {"test": "lchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "579": {"test": "lchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "580": {"test": "lgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "581": {"test": "lgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "582": {"test": "link01", "status": "pass", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0}, "583": {"test": "link02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "584": {"test": "link04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "585": {"test": "link05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "586": {"test": "link08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "587": {"test": "linkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "588": {"test": "linkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "589": {"test": "listen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "590": {"test": "listmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "591": {"test": "listmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "592": {"test": "listmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "593": {"test": "listmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "594": {"test": "listxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "595": {"test": "listxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "596": {"test": "listxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "597": {"test": "llistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "598": {"test": "llistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "599": {"test": "llistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "600": {"test": "llseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "601": {"test": "llseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "602": {"test": "llseek03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "603": {"test": "lremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "604": {"test": "lseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "605": {"test": "lseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "606": {"test": "lseek07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "607": {"test": "lseek11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "608": {"test": "lstat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "609": {"test": "lstat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "610": {"test": "lstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "611": {"test": "lstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "612": {"test": "lstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "613": {"test": "lstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "614": {"test": "mallinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "615": {"test": "mallinfo2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "616": {"test": "mallopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "617": {"test": "mbind01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "618": {"test": "mbind02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "619": {"test": "mbind03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "620": {"test": "mbind04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "621": {"test": "memset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "622": {"test": "memcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "623": {"test": "memcpy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "624": {"test": "migrate_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "625": {"test": "migrate_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "626": {"test": "migrate_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "627": {"test": "mlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "628": {"test": "mlockall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "629": {"test": "mlockall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "630": {"test": "mkdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "631": {"test": "mkdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "632": {"test": "mkdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "633": {"test": "mkdir05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "634": {"test": "mkdir09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "635": {"test": "mkdirat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "636": {"test": "mkdirat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "637": {"test": "mknod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "638": {"test": "mknod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "639": {"test": "mknod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "640": {"test": "mknod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "641": {"test": "mknod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "642": {"test": "mknod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "643": {"test": "mknod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "644": {"test": "mknod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "645": {"test": "mknod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "646": {"test": "mknodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "647": {"test": "mknodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "648": {"test": "mlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "649": {"test": "mlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "650": {"test": "mlock03", "status": "pass", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0}, "651": {"test": "mlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "652": {"test": "mlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "653": {"test": "mlock201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "654": {"test": "mlock202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "655": {"test": "mlock203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "656": {"test": "qmm01", "status": "pass", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0}, "657": {"test": "mmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "658": {"test": "mmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "659": {"test": "mmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "660": {"test": "mmap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "661": {"test": "mmap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "662": {"test": "mmap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "663": {"test": "mmap08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "664": {"test": "mmap09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "665": {"test": "mmap12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "666": {"test": "mmap13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "667": {"test": "mmap14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "668": {"test": "mmap15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "669": {"test": "mmap16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "670": {"test": "mmap17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "671": {"test": "mmap18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "672": {"test": "mmap19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "673": {"test": "mmap20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "674": {"test": "modify_ldt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "675": {"test": "modify_ldt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "676": {"test": "modify_ldt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "677": {"test": "mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "678": {"test": "mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "679": {"test": "mount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "680": {"test": "mount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "681": {"test": "mount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "682": {"test": "mount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "683": {"test": "mount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "684": {"test": "mount_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "685": {"test": "move_mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "686": {"test": "move_mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "687": {"test": "move_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "688": {"test": "move_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "689": {"test": "move_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "690": {"test": "move_pages04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "691": {"test": "move_pages05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "692": {"test": "move_pages06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "693": {"test": "move_pages07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "694": {"test": "move_pages09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "695": {"test": "move_pages10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "696": {"test": "move_pages11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "697": {"test": "move_pages12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "698": {"test": "mprotect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "699": {"test": "mprotect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "700": {"test": "mprotect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "701": {"test": "mprotect04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "702": {"test": "mprotect05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "703": {"test": "pkey01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "704": {"test": "mq_notify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "705": {"test": "mq_notify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "706": {"test": "mq_notify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "707": {"test": "mq_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "708": {"test": "mq_timedreceive01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "709": {"test": "mq_timedsend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "710": {"test": "mq_unlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "711": {"test": "mremap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "712": {"test": "mremap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "713": {"test": "mremap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "714": {"test": "mremap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "715": {"test": "mremap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "716": {"test": "mremap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "717": {"test": "mseal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "718": {"test": "mseal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "719": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "720": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "721": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "722": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "723": {"test": "msgctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "724": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "725": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "726": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "727": {"test": "msgget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "728": {"test": "msgget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "729": {"test": "msgget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "730": {"test": "msgget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "731": {"test": "msgget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "732": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "733": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "734": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "735": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "736": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "737": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "738": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "739": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "740": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "741": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "742": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "743": {"test": "msync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "744": {"test": "msync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "745": {"test": "msync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "746": {"test": "msync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "747": {"test": "munlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "748": {"test": "munlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "749": {"test": "munlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "750": {"test": "munmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "751": {"test": "munmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "752": {"test": "munmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "753": {"test": "nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "754": {"test": "nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "755": {"test": "nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "756": {"test": "name_to_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "757": {"test": "name_to_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "758": {"test": "nftw01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "759": {"test": "nftw6401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "760": {"test": "nice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "761": {"test": "nice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "762": {"test": "nice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "763": {"test": "nice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "764": {"test": "nice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "765": {"test": "open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "766": {"test": "open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "767": {"test": "open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "768": {"test": "open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "769": {"test": "open06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "770": {"test": "open07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "771": {"test": "open08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "772": {"test": "open09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "773": {"test": "open10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "774": {"test": "open11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "775": {"test": "open12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "776": {"test": "open13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "777": {"test": "open14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "778": {"test": "open15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "779": {"test": "openat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "780": {"test": "openat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "781": {"test": "openat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "782": {"test": "openat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "783": {"test": "openat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "784": {"test": "openat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "785": {"test": "openat203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "786": {"test": "open_by_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "787": {"test": "open_by_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "788": {"test": "open_tree01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "789": {"test": "open_tree02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "790": {"test": "mincore01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "791": {"test": "mincore02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "792": {"test": "mincore03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "793": {"test": "mincore04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "794": {"test": "madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "795": {"test": "madvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "796": {"test": "madvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "797": {"test": "madvise05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "798": {"test": "madvise06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "799": {"test": "madvise07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "800": {"test": "madvise08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "801": {"test": "madvise09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "802": {"test": "madvise10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "803": {"test": "madvise11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "804": {"test": "madvise12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "805": {"test": "newuname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "806": {"test": "pathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "807": {"test": "pathconf02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "808": {"test": "pause01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "809": {"test": "pause02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "810": {"test": "pause03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "811": {"test": "personality01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "812": {"test": "personality02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "813": {"test": "pidfd_getfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "814": {"test": "pidfd_getfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "815": {"test": "pidfd_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "816": {"test": "pidfd_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "817": {"test": "pidfd_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "818": {"test": "pidfd_open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "819": {"test": "pidfd_send_signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "820": {"test": "pidfd_send_signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "821": {"test": "pidfd_send_signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "822": {"test": "pipe01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "823": {"test": "pipe02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "824": {"test": "pipe03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "825": {"test": "pipe04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "826": {"test": "pipe05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "827": {"test": "pipe06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "828": {"test": "pipe07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "829": {"test": "pipe08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "830": {"test": "pipe09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "831": {"test": "pipe10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "832": {"test": "pipe11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "833": {"test": "pipe12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "834": {"test": "pipe13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "835": {"test": "pipe14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "836": {"test": "pipe15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "837": {"test": "pipe2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "838": {"test": "pipe2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "839": {"test": "pipe2_04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "840": {"test": "pivot_root01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "841": {"test": "poll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "842": {"test": "poll02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "843": {"test": "ppoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "844": {"test": "prctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "845": {"test": "prctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "846": {"test": "prctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "847": {"test": "prctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "848": {"test": "prctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "849": {"test": "prctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "850": {"test": "prctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "851": {"test": "prctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "852": {"test": "prctl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "853": {"test": "pread01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "854": {"test": "pread01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "855": {"test": "pread02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "856": {"test": "pread02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "857": {"test": "preadv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "858": {"test": "preadv01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "859": {"test": "preadv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "860": {"test": "preadv02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "861": {"test": "preadv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "862": {"test": "preadv03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "863": {"test": "preadv201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "864": {"test": "preadv201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "865": {"test": "preadv202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "866": {"test": "preadv202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "867": {"test": "preadv203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "868": {"test": "preadv203_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "869": {"test": "profil01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "870": {"test": "process_vm_readv01", "status": "pass", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0}, "871": {"test": "process_vm_readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "872": {"test": "process_vm_readv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "873": {"test": "process_vm_writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "874": {"test": "process_vm_writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "875": {"test": "process_madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "876": {"test": "prot_hsymlinks", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "877": {"test": "dirtyc0w", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "878": {"test": "dirtyc0w_shmem", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "879": {"test": "dirtypipe", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "880": {"test": "pselect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "881": {"test": "pselect01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "882": {"test": "pselect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "883": {"test": "pselect02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "884": {"test": "pselect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "885": {"test": "pselect03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "886": {"test": "ptrace01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "887": {"test": "ptrace02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "888": {"test": "ptrace03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "889": {"test": "ptrace04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "890": {"test": "ptrace05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "891": {"test": "ptrace06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "892": {"test": "ptrace07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "893": {"test": "ptrace08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "894": {"test": "ptrace09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "895": {"test": "ptrace10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "896": {"test": "ptrace11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "897": {"test": "pwrite01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "898": {"test": "pwrite02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "899": {"test": "pwrite03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "900": {"test": "pwrite04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "901": {"test": "pwrite01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "902": {"test": "pwrite02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "903": {"test": "pwrite03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "904": {"test": "pwrite04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "905": {"test": "pwritev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "906": {"test": "pwritev01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "907": {"test": "pwritev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "908": {"test": "pwritev02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "909": {"test": "pwritev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "910": {"test": "pwritev03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "911": {"test": "pwritev201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "912": {"test": "pwritev201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "913": {"test": "pwritev202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "914": {"test": "pwritev202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "915": {"test": "quotactl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "916": {"test": "quotactl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "917": {"test": "quotactl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "918": {"test": "quotactl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "919": {"test": "quotactl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "920": {"test": "quotactl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "921": {"test": "quotactl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "922": {"test": "quotactl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "923": {"test": "quotactl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "924": {"test": "read01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "925": {"test": "read02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "926": {"test": "read03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "927": {"test": "read04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "928": {"test": "readahead01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "929": {"test": "readahead02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "930": {"test": "readdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "931": {"test": "readdir21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "932": {"test": "readlink01A", "status": "pass", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "933": {"test": "readlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "934": {"test": "readlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "935": {"test": "readlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "936": {"test": "readlinkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "937": {"test": "readv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "938": {"test": "readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "939": {"test": "realpath01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "940": {"test": "reboot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "941": {"test": "reboot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "942": {"test": "recv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "943": {"test": "recvfrom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "944": {"test": "recvmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "945": {"test": "recvmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "946": {"test": "recvmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "947": {"test": "recvmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "948": {"test": "remap_file_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "949": {"test": "remap_file_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "950": {"test": "removexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "951": {"test": "removexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "952": {"test": "rename01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "953": {"test": "rename01A", "status": "pass", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0}, "954": {"test": "rename03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "955": {"test": "rename04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "956": {"test": "rename05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "957": {"test": "rename06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "958": {"test": "rename07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "959": {"test": "rename08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "960": {"test": "rename09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "961": {"test": "rename10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "962": {"test": "rename11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "963": {"test": "rename12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "964": {"test": "rename13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "965": {"test": "rename14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "966": {"test": "rename15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "967": {"test": "renameat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "968": {"test": "renameat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "969": {"test": "renameat202", "status": "pass", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0}, "970": {"test": "request_key01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "971": {"test": "request_key02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "972": {"test": "request_key03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "973": {"test": "request_key04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "974": {"test": "request_key05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "975": {"test": "request_key06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "976": {"test": "rmdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "977": {"test": "rmdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "978": {"test": "rmdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "979": {"test": "rmdir03A", "status": "pass", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0}, "980": {"test": "rt_sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "981": {"test": "rt_sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "982": {"test": "rt_sigaction03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "983": {"test": "rt_sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "984": {"test": "rt_sigprocmask02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "985": {"test": "rt_sigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "986": {"test": "rt_sigqueueinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "987": {"test": "rt_sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "988": {"test": "rt_sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "989": {"test": "rt_tgsigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "990": {"test": "sbrk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "991": {"test": "sbrk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "992": {"test": "sbrk03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "993": {"test": "sched_get_priority_max01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "994": {"test": "sched_get_priority_max02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "995": {"test": "sched_get_priority_min01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "996": {"test": "sched_get_priority_min02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "997": {"test": "sched_getparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "998": {"test": "sched_getparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "999": {"test": "sched_rr_get_interval01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1000": {"test": "sched_rr_get_interval02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1001": {"test": "sched_rr_get_interval03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1002": {"test": "sched_setparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1003": {"test": "sched_setparam02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1004": {"test": "sched_setparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1005": {"test": "sched_setparam04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1006": {"test": "sched_setparam05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1007": {"test": "sched_getscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1008": {"test": "sched_getscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1009": {"test": "sched_setscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1010": {"test": "sched_setscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1011": {"test": "sched_setscheduler03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1012": {"test": "sched_setscheduler04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1013": {"test": "sched_yield01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1014": {"test": "sched_setaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1015": {"test": "sched_getaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1016": {"test": "sched_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1017": {"test": "sched_getattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1018": {"test": "sched_getattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1019": {"test": "seccomp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1020": {"test": "select01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1021": {"test": "select02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1022": {"test": "select03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1023": {"test": "select04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1024": {"test": "semctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1025": {"test": "semctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1026": {"test": "semctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1027": {"test": "semctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1028": {"test": "semctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1029": {"test": "semctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1030": {"test": "semctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1031": {"test": "semctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1032": {"test": "semctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1033": {"test": "semget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1034": {"test": "semget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1035": {"test": "semget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1036": {"test": "semop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1037": {"test": "semop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1038": {"test": "semop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1039": {"test": "semop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1040": {"test": "semop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1041": {"test": "send01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1042": {"test": "send02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1043": {"test": "sendfile02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1044": {"test": "sendfile02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1045": {"test": "sendfile03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1046": {"test": "sendfile03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1047": {"test": "sendfile04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1048": {"test": "sendfile04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1049": {"test": "sendfile05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1050": {"test": "sendfile05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1051": {"test": "sendfile06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1052": {"test": "sendfile06_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1053": {"test": "sendfile07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1054": {"test": "sendfile07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1055": {"test": "sendfile08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1056": {"test": "sendfile08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1057": {"test": "sendfile09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1058": {"test": "sendfile09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1059": {"test": "sendmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1060": {"test": "sendmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1061": {"test": "sendmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1062": {"test": "sendmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1063": {"test": "sendmmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1064": {"test": "sendto01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1065": {"test": "sendto02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1066": {"test": "sendto03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1067": {"test": "set_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1068": {"test": "set_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1069": {"test": "set_mempolicy03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1070": {"test": "set_mempolicy04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1071": {"test": "set_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1072": {"test": "set_thread_area01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1073": {"test": "set_tid_address01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1074": {"test": "setdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1075": {"test": "setdomainname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1076": {"test": "setdomainname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1077": {"test": "setfsgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1078": {"test": "setfsgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1079": {"test": "setfsgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1080": {"test": "setfsgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1081": {"test": "setfsgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1082": {"test": "setfsgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1083": {"test": "setfsuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1084": {"test": "setfsuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1085": {"test": "setfsuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1086": {"test": "setfsuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1087": {"test": "setfsuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1088": {"test": "setfsuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1089": {"test": "setfsuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1090": {"test": "setfsuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1091": {"test": "setgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1092": {"test": "setgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1093": {"test": "setgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1094": {"test": "setgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1095": {"test": "setgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1096": {"test": "setgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1097": {"test": "setegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1098": {"test": "setegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1099": {"test": "sgetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1100": {"test": "setgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1101": {"test": "setgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1102": {"test": "setgroups02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1103": {"test": "setgroups02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1104": {"test": "setgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1105": {"test": "setgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1106": {"test": "sethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1107": {"test": "sethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1108": {"test": "sethostname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1109": {"test": "setitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1110": {"test": "setitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1111": {"test": "setns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1112": {"test": "setns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1113": {"test": "setpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1114": {"test": "setpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1115": {"test": "setpgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1116": {"test": "setpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1117": {"test": "setpgrp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1118": {"test": "setpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1119": {"test": "setpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1120": {"test": "setregid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1121": {"test": "setregid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1122": {"test": "setregid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1123": {"test": "setregid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1124": {"test": "setregid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1125": {"test": "setregid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1126": {"test": "setregid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1127": {"test": "setregid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1128": {"test": "setresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1129": {"test": "setresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1130": {"test": "setresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1131": {"test": "setresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1132": {"test": "setresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1133": {"test": "setresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1134": {"test": "setresgid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1135": {"test": "setresgid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1136": {"test": "setresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1137": {"test": "setresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1138": {"test": "setresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1139": {"test": "setresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1140": {"test": "setresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1141": {"test": "setresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1142": {"test": "setresuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1143": {"test": "setresuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1144": {"test": "setresuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1145": {"test": "setresuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1146": {"test": "setreuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1147": {"test": "setreuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1148": {"test": "setreuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1149": {"test": "setreuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1150": {"test": "setreuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1151": {"test": "setreuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1152": {"test": "setreuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1153": {"test": "setreuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1154": {"test": "setreuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1155": {"test": "setreuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1156": {"test": "setreuid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1157": {"test": "setreuid06_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1158": {"test": "setreuid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1159": {"test": "setreuid07_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1160": {"test": "setrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1161": {"test": "setrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1162": {"test": "setrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1163": {"test": "setrlimit04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1164": {"test": "setrlimit05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1165": {"test": "setrlimit06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1166": {"test": "setsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1167": {"test": "setsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1168": {"test": "setsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1169": {"test": "setsockopt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1170": {"test": "setsockopt04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1171": {"test": "setsockopt05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1172": {"test": "setsockopt06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1173": {"test": "setsockopt07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1174": {"test": "setsockopt08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1175": {"test": "setsockopt09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1176": {"test": "setsockopt10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1177": {"test": "settimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1178": {"test": "settimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1179": {"test": "setuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1180": {"test": "setuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1181": {"test": "setuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1182": {"test": "setuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1183": {"test": "setuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1184": {"test": "setuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1185": {"test": "setxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1186": {"test": "setxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1187": {"test": "setxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1188": {"test": "shmat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1189": {"test": "shmat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1190": {"test": "shmat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1191": {"test": "shmat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1192": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1193": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1194": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1195": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1196": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1197": {"test": "shmctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1198": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1199": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1200": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1201": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1202": {"test": "shmget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1203": {"test": "shmget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1204": {"test": "shmget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1205": {"test": "shmget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1206": {"test": "shmget06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1207": {"test": "shutdown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1208": {"test": "shutdown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1209": {"test": "sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1210": {"test": "sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1211": {"test": "sigaltstack01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1212": {"test": "sigaltstack02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1213": {"test": "sighold02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1214": {"test": "signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1215": {"test": "signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1216": {"test": "signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1217": {"test": "signal04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1218": {"test": "signal05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1219": {"test": "signal06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1220": {"test": "signalfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1221": {"test": "signalfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1222": {"test": "signalfd4_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1223": {"test": "signalfd4_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1224": {"test": "sigpending02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1225": {"test": "sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1226": {"test": "sigrelse01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1227": {"test": "sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1228": {"test": "sigsuspend02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1229": {"test": "sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1230": {"test": "sigwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1231": {"test": "sigwaitinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1232": {"test": "socket01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1233": {"test": "socket02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1234": {"test": "socketcall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1235": {"test": "socketcall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1236": {"test": "socketcall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1237": {"test": "socketpair01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1238": {"test": "socketpair02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1239": {"test": "sockioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1240": {"test": "splice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1241": {"test": "splice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1242": {"test": "splice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1243": {"test": "splice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1244": {"test": "splice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1245": {"test": "splice06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1246": {"test": "splice07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1247": {"test": "splice08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1248": {"test": "splice09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1249": {"test": "tee01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1250": {"test": "tee02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1251": {"test": "ssetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1252": {"test": "stat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1253": {"test": "stat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1254": {"test": "stat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1255": {"test": "stat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1256": {"test": "stat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1257": {"test": "stat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1258": {"test": "stat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1259": {"test": "stat04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1260": {"test": "statmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1261": {"test": "statmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1262": {"test": "statmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1263": {"test": "statmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1264": {"test": "statmount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1265": {"test": "statmount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1266": {"test": "statmount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1267": {"test": "statmount08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1268": {"test": "statfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1269": {"test": "statfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1270": {"test": "statfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1271": {"test": "statfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1272": {"test": "statfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1273": {"test": "statfs03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1274": {"test": "statvfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1275": {"test": "statvfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1276": {"test": "stime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1277": {"test": "stime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1278": {"test": "string01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1279": {"test": "swapoff01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1280": {"test": "swapoff02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1281": {"test": "swapon01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1282": {"test": "swapon02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1283": {"test": "swapon03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1284": {"test": "switch01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1285": {"test": "symlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1286": {"test": "symlink02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1287": {"test": "symlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1288": {"test": "symlink04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1289": {"test": "symlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1290": {"test": "sync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1291": {"test": "syncfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1292": {"test": "sync_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1293": {"test": "sync_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1294": {"test": "syscall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1295": {"test": "sysconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1296": {"test": "sysctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1297": {"test": "sysctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1298": {"test": "sysctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1299": {"test": "sysfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1300": {"test": "sysfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1301": {"test": "sysfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1302": {"test": "sysfs04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1303": {"test": "sysfs05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1304": {"test": "sysinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1305": {"test": "sysinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1306": {"test": "sysinfo03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1307": {"test": "syslog11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1308": {"test": "syslog12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1309": {"test": "tgkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1310": {"test": "tgkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1311": {"test": "tgkill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1312": {"test": "time01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1313": {"test": "times01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1314": {"test": "times03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1315": {"test": "timerfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1316": {"test": "timerfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1317": {"test": "timerfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1318": {"test": "timerfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1319": {"test": "timerfd_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1320": {"test": "timerfd_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1321": {"test": "timerfd_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1322": {"test": "timer_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1323": {"test": "timer_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1324": {"test": "timer_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1325": {"test": "timer_delete01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1326": {"test": "timer_delete02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1327": {"test": "timer_getoverrun01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1328": {"test": "timer_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1329": {"test": "timer_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1330": {"test": "timer_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1331": {"test": "timer_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1332": {"test": "tkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1333": {"test": "tkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1334": {"test": "truncate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1335": {"test": "truncate02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1336": {"test": "truncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1337": {"test": "truncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1338": {"test": "ulimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1339": {"test": "umask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1340": {"test": "uname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1341": {"test": "uname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1342": {"test": "uname04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1343": {"test": "unlink01", "status": "pass", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "1344": {"test": "unlink05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1345": {"test": "unlink07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1346": {"test": "unlink08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1347": {"test": "unlink09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1348": {"test": "unlink10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1349": {"test": "unlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1350": {"test": "unshare01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1351": {"test": "unshare02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1352": {"test": "umount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1353": {"test": "umount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1354": {"test": "umount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1355": {"test": "umount2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1356": {"test": "umount2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1357": {"test": "userfaultfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1358": {"test": "ustat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1359": {"test": "ustat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1360": {"test": "utime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1361": {"test": "utime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1362": {"test": "utime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1363": {"test": "utime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1364": {"test": "utime05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1365": {"test": "utime06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1366": {"test": "utime07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1367": {"test": "utimes01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1368": {"test": "utimensat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1369": {"test": "vfork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1370": {"test": "vfork02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1371": {"test": "vhangup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1372": {"test": "vhangup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1373": {"test": "vmsplice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1374": {"test": "vmsplice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1375": {"test": "vmsplice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1376": {"test": "vmsplice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1377": {"test": "wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1378": {"test": "wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1379": {"test": "wait401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1380": {"test": "wait402", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1381": {"test": "wait403", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1382": {"test": "waitpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1383": {"test": "waitpid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1384": {"test": "waitpid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1385": {"test": "waitpid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1386": {"test": "waitpid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1387": {"test": "waitpid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1388": {"test": "waitpid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1389": {"test": "waitpid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1390": {"test": "waitpid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1391": {"test": "waitpid12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1392": {"test": "waitpid13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1393": {"test": "waitid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1394": {"test": "waitid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1395": {"test": "waitid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1396": {"test": "waitid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1397": {"test": "waitid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1398": {"test": "waitid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1399": {"test": "waitid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1400": {"test": "waitid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1401": {"test": "waitid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1402": {"test": "waitid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1403": {"test": "waitid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1404": {"test": "write01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1405": {"test": "write02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1406": {"test": "write03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1407": {"test": "write04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1408": {"test": "write05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1409": {"test": "write06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1410": {"test": "writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1411": {"test": "writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1412": {"test": "writev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1413": {"test": "writev05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1414": {"test": "writev06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1415": {"test": "writev07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1416": {"test": "perf_event_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1417": {"test": "perf_event_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1418": {"test": "futex_cmp_requeue01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1419": {"test": "futex_cmp_requeue02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1420": {"test": "futex_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1421": {"test": "futex_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1422": {"test": "futex_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1423": {"test": "futex_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1424": {"test": "futex_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1425": {"test": "futex_waitv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1426": {"test": "futex_waitv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1427": {"test": "futex_waitv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1428": {"test": "futex_wake01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1429": {"test": "futex_wake02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1430": {"test": "futex_wake03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1431": {"test": "futex_wake04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1432": {"test": "futex_wait_bitset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1433": {"test": "memfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1434": {"test": "memfd_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1435": {"test": "memfd_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1436": {"test": "memfd_create04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1437": {"test": "copy_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1438": {"test": "copy_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1439": {"test": "copy_file_range03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1440": {"test": "statx01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1441": {"test": "statx02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1442": {"test": "statx03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1443": {"test": "statx04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1444": {"test": "statx05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1445": {"test": "statx06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1446": {"test": "statx07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1447": {"test": "statx08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1448": {"test": "statx09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1449": {"test": "statx10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1450": {"test": "statx11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1451": {"test": "statx12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1452": {"test": "membarrier01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1453": {"test": "io_uring01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1454": {"test": "io_uring02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1455": {"test": "perf_event_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "summary": {"passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}}} 2026-07-04 18:25:09.725804 2026-07-04 18:26:29.735935 +491 13 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 18:26:30.17788 2026-07-04 18:26:30.177883 +492 13 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:18:54' --until '2026-07-04 18:26:29' 0 OOM records 2026-07-04 18:18:54.171511 2026-07-04 18:26:29.749362 +493 13 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:18:54' --until '2026-07-04 18:26:29' 0 systemd errors records 2026-07-04 18:18:54.171511 2026-07-04 18:26:29.749362 +657 24 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-12 15:17:03.53762 2026-07-12 15:17:03.537623 +284 11 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1405MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.06}, "metrics": {"read": {"io_bytes": 239075328, "io_kbytes": 233472, "bw_bytes": 47238752, "bw": 46131, "iops": 11.262596, "runtime": 5061, "total_ios": 57, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1055672, "max": 20461401, "mean": 2165562.070175, "stddev": 2716025.402, "N": 57}, "clat_ns": {"min": 27647944, "max": 115878612, "mean": 86482817.526316, "stddev": 18690865.202, "N": 57, "percentile": {"1.000000": 27656192, "5.000000": 43253760, "10.000000": 61079552, "20.000000": 72876032, "30.000000": 81264640, "40.000000": 90701824, "50.000000": 94896128, "60.000000": 98041856, "70.000000": 99090432, "80.000000": 100139008, "90.000000": 101187584, "95.000000": 101187584, "99.000000": 115867648, "99.500000": 115867648, "99.900000": 115867648, "99.950000": 115867648, "99.990000": 115867648}}, "lat_ns": {"min": 29652240, "max": 116970054, "mean": 88648379.596491, "stddev": 18414066.370435, "N": 57}, "bw_min": 40919, "bw_max": 57344, "bw_agg": 99.465456, "bw_mean": 45885.0, "bw_dev": 7332.713925, "bw_samples": 5, "iops_min": 9, "iops_max": 14, "iops_mean": 11.0, "iops_stddev": 2.0, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.217391, "sys_cpu": 2.727273, "ctx": 60, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 7.017544, "100": 77.192982, "250": 15.789474, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:44:39.877765 2026-07-04 11:58:54.193208 +285 11 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1405MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 381681664, "io_kbytes": 372736, "bw_bytes": 76153564, "bw": 74368, "iops": 18.156425, "runtime": 5012, "total_ios": 91, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 969255, "max": 17998953, "mean": 1757061.0, "stddev": 1749066.851039, "N": 91}, "clat_ns": {"min": 657679, "max": 156509102, "mean": 53211148.120879, "stddev": 51305579.916056, "N": 91, "percentile": {"1.000000": 659456, "5.000000": 765952, "10.000000": 880640, "20.000000": 1011712, "30.000000": 1105920, "40.000000": 3063808, "50.000000": 45350912, "60.000000": 81264640, "70.000000": 100139008, "80.000000": 108527616, "90.000000": 116916224, "95.000000": 126353408, "99.000000": 156237824, "99.500000": 156237824, "99.900000": 156237824, "99.950000": 156237824, "99.990000": 156237824}}, "lat_ns": {"min": 1697260, "max": 157704366, "mean": 54968209.120879, "stddev": 51152838.805314, "N": 91}, "bw_min": 69701, "bw_max": 77824, "bw_agg": 99.173423, "bw_mean": 73754.6, "bw_dev": 4042.177297, "bw_samples": 5, "iops_min": 17, "iops_max": 19, "iops_mean": 17.8, "iops_stddev": 0.83666, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.319298, "sys_cpu": 3.612053, "ctx": 94, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 4.395604, "1000": 14.285714}, "latency_ms": {"2": 20.879121, "4": 1.098901, "10": 1.098901, "20": 1.098901, "50": 8.791209, "100": 16.483516, "250": 31.868132, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:45:33.858777 2026-07-04 11:58:54.193208 +286 11 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1405MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-163515Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1405MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.09}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 536870912, "io_kbytes": 524288, "bw_bytes": 105351434, "bw": 102882, "iops": 25.117739, "runtime": 5096, "total_ios": 128, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1316720, "max": 3011325, "mean": 1833591.382812, "stddev": 371325.159979, "N": 128}, "clat_ns": {"min": 1030243, "max": 672824533, "mean": 37894028.140625, "stddev": 97423900.820637, "N": 128, "percentile": {"1.000000": 1122304, "5.000000": 1269760, "10.000000": 1318912, "20.000000": 1384448, "30.000000": 1466368, "40.000000": 1531904, "50.000000": 1646592, "60.000000": 1728512, "70.000000": 1957888, "80.000000": 3817472, "90.000000": 154140672, "95.000000": 242221056, "99.000000": 442499072, "99.500000": 675282944, "99.900000": 675282944, "99.950000": 675282944, "99.990000": 675282944}}, "lat_ns": {"min": 2610054, "max": 674489691, "mean": 39727619.523438, "stddev": 97492660.075562, "N": 128}, "bw_min": 16400, "bw_max": 429650, "bw_agg": 100.0, "bw_mean": 103960.2, "bw_dev": 182100.616543, "bw_samples": 5, "iops_min": 4, "iops_max": 104, "iops_mean": 25.0, "iops_stddev": 44.170126, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.354269, "sys_cpu": 3.729146, "ctx": 148, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 71.09375, "4": 9.375, "10": 0.0, "20": 0.0, "50": 3.90625, "100": 0.78125, "250": 10.9375, "500": 3.125, "750": 0.78125, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:46:32.853335 2026-07-04 11:58:54.193208 +287 11 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 16:46:53.561484 2026-07-04 16:46:53.561488 +288 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:11:21' --until '2026-07-04 16:46:39' 0 OOM records 2026-07-04 16:11:21.322325 2026-07-04 16:46:39.884503 +289 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:11:21' --until '2026-07-04 16:46:39' 0 systemd errors records 2026-07-04 16:11:21.322325 2026-07-04 16:46:39.884503 +290 11 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 280MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260704-164658Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260704-164658Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260704-164658Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260704-164658Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260704-164658Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_512b", "detailed": {"size": "280MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 16.12}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 285184, "io_kbytes": 278, "bw_bytes": 17741, "bw": 17, "iops": 34.652233, "runtime": 16074, "total_ios": 557, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 352285, "max": 11201229085, "mean": 27769720.105925, "stddev": 476083344.835032, "N": 557}, "clat_ns": {"min": 30880, "max": 332421654, "mean": 677546.470377, "stddev": 14089837.521368, "N": 557, "percentile": {"1.000000": 31360, "5.000000": 33024, "10.000000": 33536, "20.000000": 35072, "30.000000": 36096, "40.000000": 37632, "50.000000": 40704, "60.000000": 46848, "70.000000": 51456, "80.000000": 58624, "90.000000": 70144, "95.000000": 114176, "99.000000": 305152, "99.500000": 7897088, "99.900000": 333447168, "99.950000": 333447168, "99.990000": 333447168}}, "lat_ns": {"min": 385670, "max": 11201291537, "mean": 28447266.576302, "stddev": 476274975.091838, "N": 557}, "bw_min": 7, "bw_max": 216, "bw_agg": 100.0, "bw_mean": 55.2, "bw_dev": 90.579799, "bw_samples": 5, "iops_min": 14, "iops_max": 433, "iops_mean": 111.0, "iops_stddev": 181.412513, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.42086, "sys_cpu": 5.441459, "ctx": 567, "majf": 0, "minf": 39, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 67.684022, "100": 26.750449, "250": 3.949731, "500": 1.077199, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.359066, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.179533, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:46:59.190744 2026-07-04 11:58:54.193208 +658 24 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-12 15:16:48' --until '2026-07-12 15:17:03' 0 OOM records 2026-07-12 15:16:48.272379 2026-07-12 15:17:03.113655 +291 11 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 280MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260704-164658Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260704-164658Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260704-164658Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260704-164658Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260704-164658Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "280MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 16.11}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 250609664, "io_kbytes": 244736, "bw_bytes": 15596817, "bw": 15231, "iops": 14.874284, "runtime": 16068, "total_ios": 239, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 399426, "max": 159916666, "mean": 1755576.380753, "stddev": 10952706.503204, "N": 239}, "clat_ns": {"min": 42963, "max": 11142419620, "mean": 63881061.196653, "stddev": 722503676.351894, "N": 239, "percentile": {"1.000000": 518144, "5.000000": 634880, "10.000000": 708608, "20.000000": 765952, "30.000000": 823296, "40.000000": 872448, "50.000000": 929792, "60.000000": 1003520, "70.000000": 1122304, "80.000000": 1269760, "90.000000": 34865152, "95.000000": 91750400, "99.000000": 375390208, "99.500000": 541065216, "99.900000": 11207180288, "99.950000": 11207180288, "99.990000": 11207180288}}, "lat_ns": {"min": 1032808, "max": 11201613984, "mean": 65636637.577406, "stddev": 726282722.893321, "N": 239}, "bw_min": 1024, "bw_max": 183417, "bw_agg": 100.0, "bw_mean": 39442.0, "bw_dev": 71268.324344, "bw_samples": 6, "iops_min": 1, "iops_max": 179, "iops_mean": 38.333333, "iops_stddev": 69.626623, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.943013, "sys_cpu": 3.451487, "ctx": 258, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.41841, "100": 0.0, "250": 0.0, "500": 0.41841, "750": 15.899582, "1000": 43.096234}, "latency_ms": {"2": 22.175732, "4": 0.0, "10": 3.34728, "20": 2.51046, "50": 5.439331, "100": 2.09205, "250": 1.67364, "500": 2.09205, "750": 0.41841, "1000": 0.0, "2000": 0.0, ">=2000": 0.41841}}} 2026-07-04 16:46:59.201446 2026-07-04 11:58:54.193208 +292 11 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 280MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260704-164658Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260704-164658Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "280MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 16.11}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 336592896, "io_kbytes": 328704, "bw_bytes": 20948026, "bw": 20457, "iops": 19.977595, "runtime": 16068, "total_ios": 321, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 354849, "max": 246760054, "mean": 1367731.489097, "stddev": 13747922.084884, "N": 321}, "clat_ns": {"min": 34877, "max": 11200386597, "mean": 47505011.595016, "stddev": 626597707.606889, "N": 321, "percentile": {"1.000000": 460800, "5.000000": 528384, "10.000000": 569344, "20.000000": 610304, "30.000000": 643072, "40.000000": 692224, "50.000000": 749568, "60.000000": 880640, "70.000000": 987136, "80.000000": 1171456, "90.000000": 16318464, "95.000000": 69730304, "99.000000": 320864256, "99.500000": 541065216, "99.900000": 11207180288, "99.950000": 11207180288, "99.990000": 11207180288}}, "lat_ns": {"min": 821758, "max": 11200796634, "mean": 48872743.084112, "stddev": 626682728.921437, "N": 321}, "bw_min": 1022, "bw_max": 229483, "bw_agg": 100.0, "bw_mean": 52229.666667, "bw_dev": 88124.552893, "bw_samples": 6, "iops_min": 0, "iops_max": 225, "iops_mean": 50.5, "iops_stddev": 86.7335, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.284996, "sys_cpu": 4.388851, "ctx": 338, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.311526, "100": 0.0, "250": 0.0, "500": 2.180685, "750": 46.728972, "1000": 22.429907}, "latency_ms": {"2": 13.084112, "4": 0.623053, "10": 3.115265, "20": 2.492212, "50": 3.115265, "100": 2.803738, "250": 1.246106, "500": 1.246106, "750": 0.311526, "1000": 0.0, "2000": 0.0, ">=2000": 0.311526}}} 2026-07-04 16:46:59.212684 2026-07-04 11:58:54.193208 +293 11 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 280MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260704-164658Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260704-164658Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260704-164658Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260704-164658Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260704-164658Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "280MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 14.07}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 540016640, "io_kbytes": 527360, "bw_bytes": 38369805, "bw": 37470, "iops": 146.369191, "runtime": 14074, "total_ios": 2060, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 144692, "max": 22058766, "mean": 374098.00534, "stddev": 665259.96713, "N": 2060}, "clat_ns": {"min": 31191, "max": 564799105, "mean": 6414122.400485, "stddev": 24369451.861598, "N": 2060, "percentile": {"1.000000": 47360, "5.000000": 264192, "10.000000": 305152, "20.000000": 337920, "30.000000": 358400, "40.000000": 382976, "50.000000": 411648, "60.000000": 452608, "70.000000": 514048, "80.000000": 593920, "90.000000": 12910592, "95.000000": 49545216, "99.000000": 93847552, "99.500000": 133693440, "99.900000": 208666624, "99.950000": 229638144, "99.990000": 566231040}}, "lat_ns": {"min": 343448, "max": 565433608, "mean": 6788220.405825, "stddev": 24454976.328917, "N": 2060}, "bw_min": 9993, "bw_max": 221952, "bw_agg": 100.0, "bw_mean": 38856.461538, "bw_dev": 55710.498778, "bw_samples": 13, "iops_min": 39, "iops_max": 867, "iops_mean": 151.384615, "iops_stddev": 217.744322, "iops_samples": 13}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.479926, "sys_cpu": 5.734385, "ctx": 2102, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.116505, "100": 1.116505, "250": 2.184466, "500": 63.300971, "750": 19.223301, "1000": 1.941748}, "latency_ms": {"2": 0.679612, "4": 0.097087, "10": 0.194175, "20": 1.359223, "50": 3.932039, "100": 3.883495, "250": 0.92233, "500": 0.0, "750": 0.048544, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:47:16.742536 2026-07-04 11:58:54.193208 +294 11 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 280MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260704-164658Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260704-164658Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "280MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 14.02}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 376176640, "io_kbytes": 367360, "bw_bytes": 26831429, "bw": 26202, "iops": 102.35378, "runtime": 14020, "total_ios": 1435, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 164269, "max": 560667983, "mean": 1059006.404181, "stddev": 14918838.307665, "N": 1435}, "clat_ns": {"min": 41641, "max": 299245834, "mean": 8637581.70453, "stddev": 26130878.052722, "N": 1435, "percentile": {"1.000000": 54016, "5.000000": 321536, "10.000000": 362496, "20.000000": 407552, "30.000000": 444416, "40.000000": 481280, "50.000000": 522240, "60.000000": 569344, "70.000000": 626688, "80.000000": 741376, "90.000000": 37486592, "95.000000": 56885248, "99.000000": 130547712, "99.500000": 152043520, "99.900000": 242221056, "99.950000": 299892736, "99.990000": 299892736}}, "lat_ns": {"min": 408073, "max": 562621040, "mean": 9696588.108711, "stddev": 30033641.362654, "N": 1435}, "bw_min": 7168, "bw_max": 121494, "bw_agg": 93.712191, "bw_mean": 24555.615385, "bw_dev": 29520.720188, "bw_samples": 13, "iops_min": 28, "iops_max": 475, "iops_mean": 95.461538, "iops_stddev": 115.569327, "iops_samples": 13}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.432413, "sys_cpu": 10.214709, "ctx": 1479, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.487805, "100": 1.254355, "250": 0.348432, "500": 42.508711, "750": 35.818815, "1000": 4.738676}, "latency_ms": {"2": 1.254355, "4": 0.069686, "10": 0.139373, "20": 1.324042, "50": 5.365854, "100": 5.156794, "250": 1.463415, "500": 0.069686, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:47:16.764585 2026-07-04 11:58:54.193208 +568 16 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 90% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 17.54}, "metrics": {"0": {"bogo_ops": 2086, "real_time_secs": 11.09, "usr_time_secs": 1.82, "sys_time_secs": 4.63, "bogo_ops_s_real_time": 188.15, "bogo_ops_s_usr_sys_time": 323.49, "cpu_used_per_instance": 14.54, "rss_max_kb": 2252, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-06 10:10:59.05709 2026-07-06 10:07:12.467987 +295 11 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 280MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260704-164658Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260704-164658Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260704-164658Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260704-164658Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260704-164658Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "280MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 14045184, "io_kbytes": 13716, "bw_bytes": 1003155, "bw": 979, "iops": 244.911078, "runtime": 14001, "total_ios": 3429, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 132959, "max": 27490767, "mean": 270540.871683, "stddev": 485858.432315, "N": 3429}, "clat_ns": {"min": 29858, "max": 245868099, "mean": 3766255.871391, "stddev": 17046704.469837, "N": 3429, "percentile": {"1.000000": 39168, "5.000000": 197632, "10.000000": 205824, "20.000000": 230400, "30.000000": 250880, "40.000000": 276480, "50.000000": 305152, "60.000000": 342016, "70.000000": 399360, "80.000000": 485376, "90.000000": 643072, "95.000000": 21102592, "99.000000": 85458944, "99.500000": 113770496, "99.900000": 204472320, "99.950000": 208666624, "99.990000": 246415360}}, "lat_ns": {"min": 330552, "max": 246079701, "mean": 4036796.743074, "stddev": 17065989.217335, "N": 3429}, "bw_min": 152, "bw_max": 4671, "bw_agg": 97.688592, "bw_mean": 957.538462, "bw_dev": 1384.370171, "bw_samples": 13, "iops_min": 38, "iops_max": 1167, "iops_mean": 238.923077, "iops_stddev": 345.953143, "iops_samples": 13}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.571429, "sys_cpu": 10.228571, "ctx": 3462, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.428988, "100": 0.554097, "250": 27.909011, "500": 51.764363, "750": 10.761155, "1000": 1.137358}, "latency_ms": {"2": 0.524934, "4": 0.029163, "10": 0.058326, "20": 0.758239, "50": 2.303879, "100": 2.128901, "250": 0.641586, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:47:16.647999 2026-07-04 11:58:54.193208 +296 11 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 280MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260704-164658Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260704-164658Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260704-164658Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260704-164658Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260704-164658Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_512b", "detailed": {"size": "280MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 7332864, "io_kbytes": 7161, "bw_bytes": 523738, "bw": 511, "iops": 1022.926934, "runtime": 14001, "total_ios": 14322, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76028, "max": 9993048, "mean": 139099.691244, "stddev": 107000.710251, "N": 14322}, "clat_ns": {"min": 27935, "max": 52796705, "mean": 810961.91321, "stddev": 2525822.727834, "N": 14322, "percentile": {"1.000000": 35072, "5.000000": 79360, "10.000000": 86528, "20.000000": 94720, "30.000000": 108032, "40.000000": 119296, "50.000000": 142336, "60.000000": 179200, "70.000000": 240640, "80.000000": 419840, "90.000000": 501760, "95.000000": 8028160, "99.000000": 11993088, "99.500000": 12648448, "99.900000": 15269888, "99.950000": 19005440, "99.990000": 47448064}}, "lat_ns": {"min": 147397, "max": 52936517, "mean": 950061.604455, "stddev": 2533234.670652, "N": 14322}, "bw_min": 165, "bw_max": 1404, "bw_agg": 99.909497, "bw_mean": 511.357143, "bw_dev": 483.624076, "bw_samples": 14, "iops_min": 330, "iops_max": 2808, "iops_mean": 1023.357143, "iops_stddev": 967.048293, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 11.014286, "sys_cpu": 19.6, "ctx": 4747, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.716101, "100": 21.889401, "250": 46.864963, "500": 18.34241, "750": 3.498115, "1000": 0.202486}, "latency_ms": {"2": 0.160592, "4": 0.167574, "10": 3.155984, "20": 2.953498, "50": 0.041894, "100": 0.01, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:47:32.829257 2026-07-04 11:58:54.193208 +297 11 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 280MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260704-164658Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260704-164658Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_1M", "detailed": {"size": "280MB", "rw": "read", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 9358540800, "io_kbytes": 9139200, "bw_bytes": 668419455, "bw": 652753, "iops": 637.454468, "runtime": 14001, "total_ios": 8925, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 237582, "max": 6642674, "mean": 332487.583641, "stddev": 111753.611011, "N": 8925}, "clat_ns": {"min": 29738, "max": 124551388, "mean": 1212624.41042, "stddev": 6962340.623516, "N": 8925, "percentile": {"1.000000": 37120, "5.000000": 234496, "10.000000": 246784, "20.000000": 264192, "30.000000": 276480, "40.000000": 288768, "50.000000": 296960, "60.000000": 309248, "70.000000": 329728, "80.000000": 350208, "90.000000": 391168, "95.000000": 448512, "99.000000": 47448064, "99.500000": 59506688, "99.900000": 76021760, "99.950000": 78118912, "99.990000": 124256256}}, "lat_ns": {"min": 449604, "max": 125048364, "mean": 1545111.994062, "stddev": 6990762.363645, "N": 8925}, "bw_min": 14336, "bw_max": 1741106, "bw_agg": 99.955822, "bw_mean": 652465.928571, "bw_dev": 752274.34544, "bw_samples": 14, "iops_min": 14, "iops_max": 1700, "iops_mean": 637.0, "iops_stddev": 734.57366, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 5.907143, "sys_cpu": 27.007143, "ctx": 8339, "majf": 0, "minf": 302, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.72549, "100": 0.22409, "250": 10.330532, "500": 84.302521, "750": 1.322129, "1000": 0.10084}, "latency_ms": {"2": 0.044818, "4": 0.011204, "10": 0.033613, "20": 0.190476, "50": 0.896359, "100": 0.806723, "250": 0.011204, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:47:32.338085 2026-07-04 11:58:54.193208 +298 11 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 280MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260704-164658Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260704-164658Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260704-164658Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260704-164658Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260704-164658Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_1M", "detailed": {"size": "280MB", "rw": "read", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 4664066048, "io_kbytes": 4554752, "bw_bytes": 333123780, "bw": 325316, "iops": 317.691593, "runtime": 14001, "total_ios": 4448, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 298901, "max": 7007193, "mean": 438745.204586, "stddev": 151854.219098, "N": 4448}, "clat_ns": {"min": 32603, "max": 122522954, "mean": 2683247.463804, "stddev": 10569729.863423, "N": 4448, "percentile": {"1.000000": 39168, "5.000000": 296960, "10.000000": 309248, "20.000000": 321536, "30.000000": 333824, "40.000000": 346112, "50.000000": 358400, "60.000000": 374784, "70.000000": 399360, "80.000000": 436224, "90.000000": 536576, "95.000000": 16908288, "99.000000": 58982400, "99.500000": 66846720, "99.900000": 83361792, "99.950000": 105381888, "99.990000": 122159104}}, "lat_ns": {"min": 546994, "max": 123280456, "mean": 3121992.66839, "stddev": 10607390.725077, "N": 4448}, "bw_min": 16384, "bw_max": 1330482, "bw_agg": 100.0, "bw_mean": 325529.857143, "bw_dev": 530432.975216, "bw_samples": 14, "iops_min": 16, "iops_max": 1299, "iops_mean": 317.857143, "iops_stddev": 517.926912, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.371429, "sys_cpu": 18.15, "ctx": 4228, "majf": 0, "minf": 303, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.348921, "100": 0.292266, "250": 1.124101, "500": 85.229317, "750": 5.957734, "1000": 0.202338}, "latency_ms": {"2": 0.044964, "4": 0.0, "10": 0.202338, "20": 0.899281, "50": 2.810252, "100": 1.821043, "250": 0.067446, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:47:32.323836 2026-07-04 11:58:54.193208 +533 14 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 0 --vm-method all --vm-bytes 95% --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 84.89}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 0, "real_time_secs": 38.14, "usr_time_secs": 0.01, "sys_time_secs": 0.24, "bogo_ops_s_real_time": 0.0, "bogo_ops_s_usr_sys_time": 0.0, "cpu_used_per_instance": 0.16, "rss_max_kb": 2100, "top10_slowest": null}, "1": {"stressor": "syscall", "bogo_ops": 6174, "real_time_secs": 36.36, "usr_time_secs": 1.66, "sys_time_secs": 8.48, "bogo_ops_s_real_time": 169.8, "bogo_ops_s_usr_sys_time": 608.69, "cpu_used_per_instance": 6.97, "rss_max_kb": 3584, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:50:12.583944 2026-07-04 18:12:49.185895 +299 11 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 280MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260704-164658Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260704-164658Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260704-164658Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260704-164658Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260704-164658Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_4k", "detailed": {"size": "280MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 113860608, "io_kbytes": 111192, "bw_bytes": 8132319, "bw": 7941, "iops": 1985.429612, "runtime": 14001, "total_ios": 27798, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 75657, "max": 9185297, "mean": 131340.416865, "stddev": 85263.867849, "N": 27798}, "clat_ns": {"min": 28255, "max": 30338813, "mean": 346610.749442, "stddev": 1419567.481547, "N": 27798, "percentile": {"1.000000": 34560, "5.000000": 63232, "10.000000": 81408, "20.000000": 90624, "30.000000": 96768, "40.000000": 104960, "50.000000": 113152, "60.000000": 124416, "70.000000": 148480, "80.000000": 183296, "90.000000": 272384, "95.000000": 444416, "99.000000": 10158080, "99.500000": 11599872, "99.900000": 12648448, "99.950000": 13041664, "99.990000": 22675456}}, "lat_ns": {"min": 141926, "max": 30430411, "mean": 477951.166307, "stddev": 1422839.717053, "N": 27798}, "bw_min": 2840, "bw_max": 14076, "bw_agg": 100.0, "bw_mean": 7944.285714, "bw_dev": 4712.715262, "bw_samples": 14, "iops_min": 710, "iops_max": 3519, "iops_mean": 1985.928571, "iops_stddev": 1178.244357, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 21.728571, "sys_cpu": 33.285714, "ctx": 4411, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 4.090222, "100": 30.182027, "250": 54.435571, "500": 7.734369, "750": 1.039643, "1000": 0.190661}, "latency_ms": {"2": 0.133103, "4": 0.111519, "10": 1.061227, "20": 1.003669, "50": 0.017987, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:48:35.045778 2026-07-04 11:58:54.193208 +300 11 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 280MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260704-164658Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260704-164658Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260704-164658Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_256k", "detailed": {"size": "280MB", "rw": "read", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 4572315648, "io_kbytes": 4465152, "bw_bytes": 326570648, "bw": 318916, "iops": 1245.768159, "runtime": 14001, "total_ios": 17442, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 131816, "max": 6755153, "mean": 190728.577227, "stddev": 92818.613758, "N": 17442}, "clat_ns": {"min": 29568, "max": 47788267, "mean": 590052.28053, "stddev": 2550281.549302, "N": 17442, "percentile": {"1.000000": 34560, "5.000000": 126464, "10.000000": 144384, "20.000000": 181248, "30.000000": 189440, "40.000000": 195584, "50.000000": 203776, "60.000000": 209920, "70.000000": 222208, "80.000000": 246784, "90.000000": 280576, "95.000000": 333824, "99.000000": 12517376, "99.500000": 15138816, "99.900000": 35913728, "99.950000": 40632320, "99.990000": 44302336}}, "lat_ns": {"min": 256419, "max": 48008245, "mean": 780780.857757, "stddev": 2570835.516644, "N": 17442}, "bw_min": 18706, "bw_max": 626176, "bw_agg": 100.0, "bw_mean": 319079.857143, "bw_dev": 287752.823559, "bw_samples": 14, "iops_min": 73, "iops_max": 2446, "iops_mean": 1246.214286, "iops_stddev": 1124.056198, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 9.921429, "sys_cpu": 32.3, "ctx": 14214, "majf": 0, "minf": 107, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.568513, "100": 0.126132, "250": 78.591905, "500": 15.198945, "750": 0.280931, "1000": 0.045866}, "latency_ms": {"2": 0.040133, "4": 0.246531, "10": 0.974659, "20": 1.62252, "50": 0.303864, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:48:35.050854 2026-07-04 11:58:54.193208 +301 11 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 280MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260704-164658Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260704-164658Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260704-164658Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260704-164658Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260704-164658Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_256k", "detailed": {"size": "280MB", "rw": "read", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 4310433792, "io_kbytes": 4209408, "bw_bytes": 307866137, "bw": 300650, "iops": 1174.416113, "runtime": 14001, "total_ios": 16443, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 131916, "max": 8898330, "mean": 194438.445843, "stddev": 108017.989246, "N": 16443}, "clat_ns": {"min": 29708, "max": 44459606, "mean": 636495.638935, "stddev": 2462141.750795, "N": 16443, "percentile": {"1.000000": 35072, "5.000000": 127488, "10.000000": 148480, "20.000000": 183296, "30.000000": 189440, "40.000000": 195584, "50.000000": 201728, "60.000000": 209920, "70.000000": 224256, "80.000000": 248832, "90.000000": 284672, "95.000000": 350208, "99.000000": 12910592, "99.500000": 17432576, "99.900000": 25821184, "99.950000": 28180480, "99.990000": 40108032}}, "lat_ns": {"min": 256538, "max": 44694533, "mean": 830934.084778, "stddev": 2482837.427259, "N": 16443}, "bw_min": 19200, "bw_max": 625664, "bw_agg": 99.973217, "bw_mean": 300570.714286, "bw_dev": 287197.871347, "bw_samples": 14, "iops_min": 75, "iops_max": 2444, "iops_mean": 1174.0, "iops_stddev": 1121.782304, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 8.871429, "sys_cpu": 31.314286, "ctx": 13429, "majf": 0, "minf": 105, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.615095, "100": 0.121632, "250": 77.74737, "500": 15.538527, "750": 0.15204, "1000": 0.079061}, "latency_ms": {"2": 0.085143, "4": 0.194612, "10": 1.20416, "20": 1.976525, "50": 0.285836, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:48:35.163175 2026-07-04 11:58:54.193208 +302 11 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 16:49:28.265112 2026-07-04 16:49:28.265117 +303 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:46:57' --until '2026-07-04 16:49:27' 0 OOM records 2026-07-04 16:46:57.796977 2026-07-04 16:49:27.336492 +304 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:46:57' --until '2026-07-04 16:49:27' 0 systemd errors records 2026-07-04 16:46:57.796977 2026-07-04 16:49:27.336492 +332 11 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260704-165504Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 10.25}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1310720, "io_kbytes": 1280, "bw_bytes": 127875, "bw": 124, "iops": 0.487805, "runtime": 10250, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 219677, "max": 397072, "mean": 296554.6, "stddev": 66293.330232, "N": 5}, "clat_ns": {"min": 2045659517, "max": 2055900217, "mean": 2048720109.2, "stddev": 4100399.588927, "N": 5, "percentile": {"1.000000": 2038431744, "5.000000": 2038431744, "10.000000": 2038431744, "20.000000": 2038431744, "30.000000": 2038431744, "40.000000": 2038431744, "50.000000": 2055208960, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2045879194, "max": 2056297289, "mean": 2049016663.8, "stddev": 4161861.798657, "N": 5}, "bw_min": 256, "bw_max": 256, "bw_agg": 100.0, "bw_mean": 256.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.029271, "sys_cpu": 0.039028, "ctx": 6, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-04 16:55:16.380885 2026-07-04 11:58:54.193208 +305 11 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-164931Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1493172224, "io_kbytes": 1458176, "bw_bytes": 298276512, "bw": 291285, "iops": 284.45865, "runtime": 5006, "total_ios": 1424, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3088605, "max": 52201537, "mean": 3423844.888343, "stddev": 2036139.008486, "N": 1424}, "clat_ns": {"min": 27293, "max": 5622401, "mean": 47257.13132, "stddev": 221537.530657, "N": 1424, "percentile": {"1.000000": 28032, "5.000000": 28544, "10.000000": 28544, "20.000000": 28800, "30.000000": 29056, "40.000000": 29568, "50.000000": 29824, "60.000000": 30336, "70.000000": 31616, "80.000000": 34048, "90.000000": 41216, "95.000000": 54528, "99.000000": 218112, "99.500000": 342016, "99.900000": 4751360, "99.950000": 5603328, "99.990000": 5603328}}, "lat_ns": {"min": 3116168, "max": 52239992, "mean": 3471102.019663, "stddev": 2097627.71649, "N": 1424}, "bw_min": 232448, "bw_max": 309557, "bw_agg": 100.0, "bw_mean": 291553.2, "bw_dev": 33125.218742, "bw_samples": 5, "iops_min": 227, "iops_max": 302, "iops_mean": 284.4, "iops_stddev": 32.176078, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.734026, "sys_cpu": 96.186102, "ctx": 17, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 94.171348, "100": 2.949438, "250": 2.036517, "500": 0.351124, "750": 0.280899, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.070225, "10": 0.140449, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:49:31.724309 2026-07-04 11:58:54.193208 +306 11 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-164931Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1413480448, "io_kbytes": 1380352, "bw_bytes": 282639561, "bw": 276015, "iops": 1078.184363, "runtime": 5001, "total_ios": 5392, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 774807, "max": 1879474, "mean": 878985.724592, "stddev": 72209.696094, "N": 5392}, "clat_ns": {"min": 23696, "max": 1720094, "mean": 32133.436573, "stddev": 36274.430581, "N": 5392, "percentile": {"1.000000": 24448, "5.000000": 25216, "10.000000": 25728, "20.000000": 26240, "30.000000": 26496, "40.000000": 27008, "50.000000": 27264, "60.000000": 27520, "70.000000": 28288, "80.000000": 29312, "90.000000": 33024, "95.000000": 43776, "99.000000": 132096, "99.500000": 158720, "99.900000": 268288, "99.950000": 872448, "99.990000": 1712128}}, "lat_ns": {"min": 798753, "max": 2871573, "mean": 911119.161165, "stddev": 82367.266695, "N": 5392}, "bw_min": 262649, "bw_max": 282624, "bw_agg": 100.0, "bw_mean": 276128.6, "bw_dev": 8415.863135, "bw_samples": 5, "iops_min": 1025, "iops_max": 1104, "iops_mean": 1078.4, "iops_stddev": 33.253571, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 8.08, "sys_cpu": 91.8, "ctx": 31, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 95.771513, "100": 1.928783, "250": 2.188427, "500": 0.018546, "750": 0.018546, "1000": 0.055638}, "latency_ms": {"2": 0.018546, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:49:38.293432 2026-07-04 11:58:54.193208 +307 11 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-164931Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-164931Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_64k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1156907008, "io_kbytes": 1129792, "bw_bytes": 231335134, "bw": 225913, "iops": 3529.894021, "runtime": 5001, "total_ios": 17653, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 209037, "max": 2206761, "mean": 243221.596669, "stddev": 35359.488545, "N": 17653}, "clat_ns": {"min": 22213, "max": 5975367, "mean": 27445.479069, "stddev": 47296.580583, "N": 17653, "percentile": {"1.000000": 22656, "5.000000": 23168, "10.000000": 23424, "20.000000": 23680, "30.000000": 23680, "40.000000": 23680, "50.000000": 23936, "60.000000": 24448, "70.000000": 25216, "80.000000": 25984, "90.000000": 27776, "95.000000": 33024, "99.000000": 101888, "99.500000": 116224, "99.900000": 152576, "99.950000": 183296, "99.990000": 970752}}, "lat_ns": {"min": 231591, "max": 6196036, "mean": 270667.075738, "stddev": 58955.545524, "N": 17653}, "bw_min": 216000, "bw_max": 231399, "bw_agg": 100.0, "bw_mean": 226037.2, "bw_dev": 5858.542882, "bw_samples": 5, "iops_min": 3376, "iops_max": 3615, "iops_mean": 3531.8, "iops_stddev": 90.948887, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 15.36, "sys_cpu": 84.52, "ctx": 31, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 97.014672, "100": 1.931683, "250": 1.030986, "500": 0.01133, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:49:44.53066 2026-07-04 11:58:54.193208 +308 11 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-164931Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-164931Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-164931Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-164931Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-164931Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_1M", "detailed": {"size": "100MB", "rw": "read", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 1981808640, "io_kbytes": 1935360, "bw_bytes": 330191376, "bw": 322452, "iops": 314.895035, "runtime": 6002, "total_ios": 1890, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2882965, "max": 12840134, "mean": 3119717.457672, "stddev": 274352.182997, "N": 1890}, "clat_ns": {"min": 26001, "max": 3475267, "mean": 36963.774603, "stddev": 84654.019705, "N": 1890, "percentile": {"1.000000": 26752, "5.000000": 27520, "10.000000": 27776, "20.000000": 28032, "30.000000": 28288, "40.000000": 28800, "50.000000": 29056, "60.000000": 29568, "70.000000": 30592, "80.000000": 32640, "90.000000": 39680, "95.000000": 54016, "99.000000": 158720, "99.500000": 175104, "99.900000": 970752, "99.950000": 3489792, "99.990000": 3489792}}, "lat_ns": {"min": 2908966, "max": 12892115, "mean": 3156681.232275, "stddev": 295468.632648, "N": 1890}, "bw_min": 308532, "bw_max": 329033, "bw_agg": 99.977201, "bw_mean": 322379.166667, "bw_dev": 8395.406278, "bw_samples": 6, "iops_min": 301, "iops_max": 321, "iops_mean": 314.833333, "iops_stddev": 8.06019, "iops_samples": 6}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.64945, "sys_cpu": 98.267244, "ctx": 24, "majf": 0, "minf": 302, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 93.915344, "100": 3.280423, "250": 2.698413, "500": 0.0, "750": 0.0, "1000": 0.05291}, "latency_ms": {"2": 0.0, "4": 0.05291, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:49:50.759874 2026-07-04 11:58:54.193208 +534 14 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 18:50:55.023183 2026-07-04 18:50:55.023186 +535 14 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:50:11' --until '2026-07-04 18:50:52' 0 OOM records 2026-07-04 18:50:11.558334 2026-07-04 18:50:52.718181 +536 14 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:50:11' --until '2026-07-04 18:50:52' 0 systemd errors records 2026-07-04 18:50:11.558334 2026-07-04 18:50:52.718181 +309 11 loader /usr/bin/fio --name seq_read_64k --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-164931Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-164931Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-164931Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-164931Z/read/bs_64k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-164931Z/read/bs_64k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_64k", "detailed": {"size": "100MB", "rw": "read", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 1403191296, "io_kbytes": 1370304, "bw_bytes": 233826244, "bw": 228345, "iops": 3567.905349, "runtime": 6001, "total_ios": 21411, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 198987, "max": 3321196, "mean": 240408.922096, "stddev": 51017.475382, "N": 21411}, "clat_ns": {"min": 22033, "max": 966980, "mean": 26938.917052, "stddev": 16938.619686, "N": 21411, "percentile": {"1.000000": 22656, "5.000000": 22912, "10.000000": 22912, "20.000000": 23168, "30.000000": 23168, "40.000000": 23168, "50.000000": 23424, "60.000000": 23936, "70.000000": 25216, "80.000000": 25984, "90.000000": 28032, "95.000000": 33536, "99.000000": 102912, "99.500000": 120320, "99.900000": 166912, "99.950000": 193536, "99.990000": 518144}}, "lat_ns": {"min": 221140, "max": 3376093, "mean": 267347.839148, "stddev": 54741.69922, "N": 21411}, "bw_min": 219456, "bw_max": 233193, "bw_agg": 100.0, "bw_mean": 228488.666667, "bw_dev": 5553.410256, "bw_samples": 6, "iops_min": 3430, "iops_max": 3643, "iops_mean": 3570.0, "iops_stddev": 86.271664, "iops_samples": 6}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 13.7, "sys_cpu": 86.216667, "ctx": 29, "majf": 0, "minf": 55, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 96.922143, "100": 1.947597, "250": 1.106908, "500": 0.01, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:49:58.196557 2026-07-04 11:58:54.193208 +310 11 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-164931Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_64k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1329987584, "io_kbytes": 1298816, "bw_bytes": 221627659, "bw": 216433, "iops": 3381.769705, "runtime": 6001, "total_ios": 20294, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 210709, "max": 1640509, "mean": 252577.121711, "stddev": 60470.18327, "N": 20294}, "clat_ns": {"min": 22123, "max": 978252, "mean": 27827.81088, "stddev": 17709.591538, "N": 20294, "percentile": {"1.000000": 22912, "5.000000": 23168, "10.000000": 23168, "20.000000": 23424, "30.000000": 23424, "40.000000": 23680, "50.000000": 23680, "60.000000": 24448, "70.000000": 25472, "80.000000": 26240, "90.000000": 28032, "95.000000": 42240, "99.000000": 111104, "99.500000": 132096, "99.900000": 181248, "99.950000": 252928, "99.990000": 374784}}, "lat_ns": {"min": 233493, "max": 1673673, "mean": 280404.932591, "stddev": 63972.93899, "N": 20294}, "bw_min": 210541, "bw_max": 222366, "bw_agg": 100.0, "bw_mean": 216521.833333, "bw_dev": 4591.168061, "bw_samples": 6, "iops_min": 3290, "iops_max": 3474, "iops_mean": 3383.0, "iops_stddev": 71.51783, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 17.266667, "sys_cpu": 82.633333, "ctx": 36, "majf": 0, "minf": 39, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 96.092441, "100": 2.375086, "250": 1.478269, "500": 0.049276, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:50:05.632501 2026-07-04 11:58:54.193208 +311 11 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-164931Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_16k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 739606528, "io_kbytes": 722272, "bw_bytes": 123247213, "bw": 120358, "iops": 7522.412931, "runtime": 6001, "total_ios": 45142, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78513, "max": 683820, "mean": 93224.035732, "stddev": 23392.743677, "N": 45142}, "clat_ns": {"min": 22213, "max": 872215, "mean": 25856.16632, "stddev": 12370.283217, "N": 45142, "percentile": {"1.000000": 22912, "5.000000": 23168, "10.000000": 23168, "20.000000": 23168, "30.000000": 23424, "40.000000": 23424, "50.000000": 23424, "60.000000": 23424, "70.000000": 23680, "80.000000": 24704, "90.000000": 26240, "95.000000": 31616, "99.000000": 92672, "99.500000": 104960, "99.900000": 142336, "99.950000": 168960, "99.990000": 288768}}, "lat_ns": {"min": 100896, "max": 957892, "mean": 119080.202051, "stddev": 27376.942409, "N": 45142}, "bw_min": 116784, "bw_max": 122858, "bw_agg": 100.0, "bw_mean": 120419.166667, "bw_dev": 2715.036679, "bw_samples": 6, "iops_min": 7299, "iops_max": 7678, "iops_mean": 7525.166667, "iops_stddev": 170.337802, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 27.016667, "sys_cpu": 72.9, "ctx": 36, "majf": 0, "minf": 41, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 97.742679, "100": 1.57946, "250": 0.662354, "500": 0.011076, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:50:12.868926 2026-07-04 11:58:54.193208 +312 11 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-164931Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-164931Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 259559424, "io_kbytes": 253476, "bw_bytes": 43252695, "bw": 42238, "iops": 10559.740043, "runtime": 6001, "total_ios": 63369, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 43936, "max": 3841839, "mean": 54886.558159, "stddev": 24401.152858, "N": 63369}, "clat_ns": {"min": 21652, "max": 868879, "mean": 25997.502154, "stddev": 12821.705443, "N": 63369, "percentile": {"1.000000": 22400, "5.000000": 22656, "10.000000": 22912, "20.000000": 22912, "30.000000": 23168, "40.000000": 23168, "50.000000": 23424, "60.000000": 23424, "70.000000": 23680, "80.000000": 24448, "90.000000": 26496, "95.000000": 31104, "99.000000": 95744, "99.500000": 108032, "99.900000": 134144, "99.950000": 152576, "99.990000": 226304}}, "lat_ns": {"min": 65678, "max": 3883400, "mean": 80884.060313, "stddev": 28025.374688, "N": 63369}, "bw_min": 40576, "bw_max": 43783, "bw_agg": 100.0, "bw_mean": 42266.666667, "bw_dev": 1105.637674, "bw_samples": 6, "iops_min": 10144, "iops_max": 10941, "iops_mean": 10565.666667, "iops_stddev": 275.069203, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 42.583333, "sys_cpu": 57.316667, "ctx": 40, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 97.192634, "100": 1.99151, "250": 0.806388, "500": 0.01, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:50:20.103893 2026-07-04 11:58:54.193208 +569 16 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-06 10:11:07.000261 2026-07-06 10:11:07.000263 +570 16 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-06 10:10:29' --until '2026-07-06 10:11:06' 0 OOM records 2026-07-06 10:10:29.057912 2026-07-06 10:11:06.58012 +571 16 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-06 10:10:29' --until '2026-07-06 10:11:06' 0 systemd errors records 2026-07-06 10:10:29.057912 2026-07-06 10:11:06.58012 +313 11 loader /usr/bin/fio --name rand_read_16k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-164931Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-164931Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-164931Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-164931Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-164931Z/randread/bs_16k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_16k", "detailed": {"size": "100MB", "rw": "randread", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 788512768, "io_kbytes": 770032, "bw_bytes": 131396895, "bw": 128317, "iops": 8019.830028, "runtime": 6001, "total_ios": 48127, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 71969, "max": 3461189, "mean": 85608.596277, "stddev": 28298.156576, "N": 48127}, "clat_ns": {"min": 22253, "max": 900340, "mean": 26381.892514, "stddev": 13247.74082, "N": 48127, "percentile": {"1.000000": 22656, "5.000000": 23168, "10.000000": 23168, "20.000000": 23424, "30.000000": 23424, "40.000000": 23424, "50.000000": 23680, "60.000000": 23680, "70.000000": 23936, "80.000000": 24960, "90.000000": 26496, "95.000000": 30848, "99.000000": 98816, "99.500000": 110080, "99.900000": 136192, "99.950000": 146432, "99.990000": 238592}}, "lat_ns": {"min": 94463, "max": 3529311, "mean": 111990.48879, "stddev": 31656.270704, "N": 48127}, "bw_min": 121968, "bw_max": 130467, "bw_agg": 99.964712, "bw_mean": 128272.833333, "bw_dev": 3211.50061, "bw_samples": 6, "iops_min": 7623, "iops_max": 8154, "iops_mean": 8017.0, "iops_stddev": 200.676855, "iops_samples": 6}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 32.95, "sys_cpu": 66.966667, "ctx": 37, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 97.084796, "100": 1.982255, "250": 0.924637, "500": 0.01, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:50:27.341496 2026-07-04 11:58:54.193208 +314 11 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-164931Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-164931Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-164931Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-164931Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-164931Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_4k", "detailed": {"size": "100MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 275468288, "io_kbytes": 269012, "bw_bytes": 45903730, "bw": 44827, "iops": 11206.965506, "runtime": 6001, "total_ios": 67253, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 40548, "max": 557083, "mean": 50469.466106, "stddev": 20731.476411, "N": 67253}, "clat_ns": {"min": 21482, "max": 1279106, "mean": 26028.787444, "stddev": 15317.775696, "N": 67253, "percentile": {"1.000000": 21888, "5.000000": 22400, "10.000000": 22656, "20.000000": 22656, "30.000000": 22912, "40.000000": 22912, "50.000000": 22912, "60.000000": 23168, "70.000000": 23424, "80.000000": 24192, "90.000000": 26752, "95.000000": 33536, "99.000000": 99840, "99.500000": 117248, "99.900000": 158720, "99.950000": 179200, "99.990000": 374784}}, "lat_ns": {"min": 62892, "max": 1321619, "mean": 76498.25355, "stddev": 26958.033412, "N": 67253}, "bw_min": 42608, "bw_max": 47563, "bw_agg": 100.0, "bw_mean": 44856.5, "bw_dev": 1921.574016, "bw_samples": 6, "iops_min": 10653, "iops_max": 11890, "iops_mean": 11214.166667, "iops_stddev": 479.901413, "iops_samples": 6}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 43.133333, "sys_cpu": 56.75, "ctx": 35, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 96.908688, "100": 2.087639, "250": 0.982856, "500": 0.013382, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:50:35.081936 2026-07-04 11:58:54.193208 +315 11 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 16:50:43.979013 2026-07-04 16:50:43.979025 +316 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:49:30' --until '2026-07-04 16:50:43' 0 OOM records 2026-07-04 16:49:30.989092 2026-07-04 16:50:43.55582 +317 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:49:30' --until '2026-07-04 16:50:43' 0 systemd errors records 2026-07-04 16:49:30.989092 2026-07-04 16:50:43.55582 +318 11 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-165046Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 9.01}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2778726400, "io_kbytes": 2713600, "bw_bytes": 308610217, "bw": 301377, "iops": 294.313638, "runtime": 9004, "total_ios": 2650, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3049469, "max": 65553465, "mean": 3325395.65283, "stddev": 1759655.442872, "N": 2650}, "clat_ns": {"min": 27583, "max": 8856258, "mean": 41158.478868, "stddev": 183519.676663, "N": 2650, "percentile": {"1.000000": 28544, "5.000000": 28800, "10.000000": 29056, "20.000000": 29312, "30.000000": 29568, "40.000000": 29824, "50.000000": 30080, "60.000000": 30848, "70.000000": 31872, "80.000000": 34048, "90.000000": 39168, "95.000000": 47872, "99.000000": 175104, "99.500000": 218112, "99.900000": 1662976, "99.950000": 2506752, "99.990000": 8847360}}, "lat_ns": {"min": 3078275, "max": 65602871, "mean": 3366554.131698, "stddev": 1788799.917233, "N": 2650}, "bw_min": 223008, "bw_max": 314368, "bw_agg": 99.741797, "bw_mean": 300599.333333, "bw_dev": 29276.003881, "bw_samples": 9, "iops_min": 225, "iops_max": 307, "iops_mean": 294.111111, "iops_stddev": 26.150738, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.119476, "sys_cpu": 95.769487, "ctx": 70, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 95.584906, "100": 1.54717, "250": 2.490566, "500": 0.150943, "750": 0.075472, "1000": 0.037736}, "latency_ms": {"2": 0.037736, "4": 0.037736, "10": 0.037736, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:50:46.657903 2026-07-04 11:58:54.193208 +333 11 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260704-165504Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_64k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 10.02}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 327680, "io_kbytes": 320, "bw_bytes": 32689, "bw": 31, "iops": 0.498803, "runtime": 10024, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 169469, "max": 527145, "mean": 247621.4, "stddev": 156389.981637, "N": 5}, "clat_ns": {"min": 2000755858, "max": 2007794353, "mean": 2003747153.4, "stddev": 3088674.154476, "N": 5, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2004877312, "40.000000": 2004877312, "50.000000": 2004877312, "60.000000": 2004877312, "70.000000": 2004877312, "80.000000": 2004877312, "90.000000": 2004877312, "95.000000": 2004877312, "99.000000": 2004877312, "99.500000": 2004877312, "99.900000": 2004877312, "99.950000": 2004877312, "99.990000": 2004877312}}, "lat_ns": {"min": 2000936680, "max": 2007968642, "mean": 2003994774.8, "stddev": 3083805.026824, "N": 5}, "bw_min": 64, "bw_max": 64, "bw_agg": 100.0, "bw_mean": 64.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.039908, "sys_cpu": 0.019954, "ctx": 6, "majf": 0, "minf": 39, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-04 16:55:27.627078 2026-07-04 11:58:54.193208 +319 11 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-165046Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 9.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2570321920, "io_kbytes": 2510080, "bw_bytes": 285559595, "bw": 278866, "iops": 1089.323409, "runtime": 9001, "total_ios": 9805, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 771550, "max": 3693490, "mean": 871643.549414, "stddev": 80570.766942, "N": 9805}, "clat_ns": {"min": 23495, "max": 1106060, "mean": 31166.644773, "stddev": 23608.454915, "N": 9805, "percentile": {"1.000000": 24192, "5.000000": 24704, "10.000000": 25984, "20.000000": 26496, "30.000000": 26752, "40.000000": 27008, "50.000000": 27264, "60.000000": 27520, "70.000000": 27776, "80.000000": 28544, "90.000000": 31104, "95.000000": 38656, "99.000000": 134144, "99.500000": 162816, "99.900000": 257024, "99.950000": 358400, "99.990000": 1105920}}, "lat_ns": {"min": 797119, "max": 3722427, "mean": 902810.194187, "stddev": 83757.357863, "N": 9805}, "bw_min": 249350, "bw_max": 285981, "bw_agg": 100.0, "bw_mean": 278970.111111, "bw_dev": 11378.478385, "bw_samples": 9, "iops_min": 975, "iops_max": 1117, "iops_mean": 1089.777778, "iops_stddev": 44.104359, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 6.988889, "sys_cpu": 92.911111, "ctx": 61, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 96.379398, "100": 1.285059, "250": 2.223355, "500": 0.081591, "750": 0.020398, "1000": 0.0}, "latency_ms": {"2": 0.010199, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:50:57.209788 2026-07-04 11:58:54.193208 +320 11 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-165046Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-165046Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_64k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 9.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1845362688, "io_kbytes": 1802112, "bw_bytes": 205017518, "bw": 200212, "iops": 3128.319076, "runtime": 9001, "total_ios": 28158, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 212453, "max": 4453358, "mean": 279415.338802, "stddev": 164806.908335, "N": 28158}, "clat_ns": {"min": 22334, "max": 1544974, "mean": 27383.180055, "stddev": 16629.199475, "N": 28158, "percentile": {"1.000000": 23168, "5.000000": 23168, "10.000000": 23424, "20.000000": 23424, "30.000000": 23680, "40.000000": 23680, "50.000000": 23936, "60.000000": 24704, "70.000000": 25472, "80.000000": 26240, "90.000000": 28032, "95.000000": 34560, "99.000000": 104960, "99.500000": 119296, "99.900000": 160768, "99.950000": 173056, "99.990000": 254976}}, "lat_ns": {"min": 234997, "max": 4481202, "mean": 306798.518858, "stddev": 166297.78383, "N": 28158}, "bw_min": 191104, "bw_max": 202698, "bw_agg": 100.0, "bw_mean": 200324.0, "bw_dev": 3592.91626, "bw_samples": 9, "iops_min": 2986, "iops_max": 3167, "iops_mean": 3129.888889, "iops_stddev": 56.108031, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 13.466667, "sys_cpu": 86.455556, "ctx": 43, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 96.920946, "100": 1.903544, "250": 1.164855, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:51:07.148899 2026-07-04 11:58:54.193208 +321 11 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-165046Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_64k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 10.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2280980480, "io_kbytes": 2227520, "bw_bytes": 228075240, "bw": 222729, "iops": 3480.151985, "runtime": 10001, "total_ios": 34805, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 210058, "max": 841366, "mean": 246106.63623, "stddev": 35280.904203, "N": 34805}, "clat_ns": {"min": 22393, "max": 936872, "mean": 27331.345152, "stddev": 15274.612388, "N": 34805, "percentile": {"1.000000": 23168, "5.000000": 23168, "10.000000": 23424, "20.000000": 23424, "30.000000": 23680, "40.000000": 23680, "50.000000": 23936, "60.000000": 24448, "70.000000": 25216, "80.000000": 25984, "90.000000": 28800, "95.000000": 36096, "99.000000": 102912, "99.500000": 119296, "99.900000": 173056, "99.950000": 199680, "99.990000": 321536}}, "lat_ns": {"min": 232552, "max": 1162029, "mean": 273437.981382, "stddev": 39385.306868, "N": 34805}, "bw_min": 213461, "bw_max": 227043, "bw_agg": 100.0, "bw_mean": 222827.9, "bw_dev": 5270.105279, "bw_samples": 10, "iops_min": 3335, "iops_max": 3547, "iops_mean": 3481.7, "iops_stddev": 82.2328, "iops_samples": 10}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 15.76, "sys_cpu": 84.15, "ctx": 63, "majf": 0, "minf": 38, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 96.715989, "100": 2.177848, "250": 1.086051, "500": 0.014366, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:51:17.084961 2026-07-04 11:58:54.193208 +322 11 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-165046Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_16k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 10.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1211432960, "io_kbytes": 1183040, "bw_bytes": 121131182, "bw": 118292, "iops": 7393.260674, "runtime": 10001, "total_ios": 73940, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77361, "max": 1166197, "mean": 95665.167852, "stddev": 40483.32667, "N": 73940}, "clat_ns": {"min": 21782, "max": 1027848, "mean": 25326.150703, "stddev": 11845.428017, "N": 73940, "percentile": {"1.000000": 22400, "5.000000": 22656, "10.000000": 22656, "20.000000": 22912, "30.000000": 22912, "40.000000": 22912, "50.000000": 23168, "60.000000": 23168, "70.000000": 23424, "80.000000": 24448, "90.000000": 25984, "95.000000": 29568, "99.000000": 91648, "99.500000": 105984, "99.900000": 140288, "99.950000": 158720, "99.990000": 232448}}, "lat_ns": {"min": 99444, "max": 1220803, "mean": 120991.318556, "stddev": 42692.985504, "N": 73940}, "bw_min": 104888, "bw_max": 122202, "bw_agg": 100.0, "bw_mean": 118348.7, "bw_dev": 5197.171112, "bw_samples": 10, "iops_min": 6555, "iops_max": 7637, "iops_mean": 7396.7, "iops_stddev": 324.932147, "iops_samples": 10}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 23.06, "sys_cpu": 76.86, "ctx": 45, "majf": 0, "minf": 41, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 97.910468, "100": 1.414661, "250": 0.665404, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:51:28.024638 2026-07-04 11:58:54.193208 +348 12 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 50% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 13.59}, "metrics": {"0": {"bogo_ops": 1183, "real_time_secs": 11.03, "usr_time_secs": 1.16, "sys_time_secs": 1.4, "bogo_ops_s_real_time": 107.27, "bogo_ops_s_usr_sys_time": 460.98, "cpu_used_per_instance": 5.82, "rss_max_kb": 2100, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 17:08:58.117118 2026-07-04 11:58:54.192283 +323 11 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-165046Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-165046Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 10.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 417505280, "io_kbytes": 407720, "bw_bytes": 41746353, "bw": 40767, "iops": 10191.980802, "runtime": 10001, "total_ios": 101930, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 44076, "max": 1313253, "mean": 55412.458344, "stddev": 20927.649792, "N": 101930}, "clat_ns": {"min": 22614, "max": 908706, "mean": 27355.369459, "stddev": 13923.078944, "N": 101930, "percentile": {"1.000000": 23424, "5.000000": 23680, "10.000000": 23680, "20.000000": 24192, "30.000000": 24192, "40.000000": 24448, "50.000000": 24448, "60.000000": 24704, "70.000000": 24960, "80.000000": 25728, "90.000000": 28032, "95.000000": 33024, "99.000000": 101888, "99.500000": 116224, "99.900000": 148480, "99.950000": 168960, "99.990000": 305152}}, "lat_ns": {"min": 67101, "max": 1356206, "mean": 82767.827803, "stddev": 25756.503525, "N": 101930}, "bw_min": 37584, "bw_max": 43080, "bw_agg": 100.0, "bw_mean": 40787.2, "bw_dev": 1727.983269, "bw_samples": 10, "iops_min": 9396, "iops_max": 10770, "iops_mean": 10196.4, "iops_stddev": 431.739428, "iops_samples": 10}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 44.74, "sys_cpu": 55.15, "ctx": 62, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 97.056804, "100": 1.836554, "250": 1.090945, "500": 0.012754, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:51:39.265822 2026-07-04 11:58:54.193208 +324 11 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 16:51:51.37058 2026-07-04 16:51:51.370584 +325 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:50:46' --until '2026-07-04 16:51:50' 0 OOM records 2026-07-04 16:50:46.057085 2026-07-04 16:51:50.939498 +326 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:50:46' --until '2026-07-04 16:51:50' 0 systemd errors records 2026-07-04 16:50:46.057085 2026-07-04 16:51:50.939498 +327 11 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename /dev/mapper/dust1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-dust-20260704-165220Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 57 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-dust-20260704-165220Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-dust-20260704-165220Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-dust-20260704-165220Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-dust-20260704-165220Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 57.02}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2503999488, "io_kbytes": 2445312, "bw_bytes": 43917487, "bw": 42888, "iops": 41.88298, "runtime": 57016, "total_ios": 2388, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 17983804, "max": 206734000, "mean": 22666327.078727, "stddev": 5742327.512599, "N": 2388}, "clat_ns": {"min": 65838, "max": 348217343, "mean": 1143503.634422, "stddev": 7208132.451261, "N": 2388, "percentile": {"1.000000": 222208, "5.000000": 309248, "10.000000": 382976, "20.000000": 493568, "30.000000": 602112, "40.000000": 708608, "50.000000": 847872, "60.000000": 1003520, "70.000000": 1171456, "80.000000": 1384448, "90.000000": 1679360, "95.000000": 1941504, "99.000000": 2867200, "99.500000": 4292608, "99.900000": 31588352, "99.950000": 42205184, "99.990000": 350224384}}, "lat_ns": {"min": 19078731, "max": 371033471, "mean": 23809830.713149, "stddev": 9257591.714794, "N": 2388}, "bw_min": 28700, "bw_max": 48176, "bw_agg": 100.0, "bw_mean": 42904.666667, "bw_dev": 3693.800769, "bw_samples": 57, "iops_min": 28, "iops_max": 47, "iops_mean": 41.877193, "iops_stddev": 3.591011, "iops_samples": 57}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.145293, "sys_cpu": 68.640382, "ctx": 64190, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.125628, "250": 1.716918, "500": 18.844221, "750": 22.403685, "1000": 16.666667}, "latency_ms": {"2": 35.720268, "4": 3.978224, "10": 0.41876, "20": 0.0, "50": 0.083752, "100": 0.0, "250": 0.0, "500": 0.041876, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 16:52:20.996235 2026-07-04 11:58:54.193208 +328 11 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 16:53:20.640235 2026-07-04 16:53:20.640238 +329 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:51:53' --until '2026-07-04 16:53:20' 0 OOM records 2026-07-04 16:51:53.349235 2026-07-04 16:53:20.211625 +330 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:51:53' --until '2026-07-04 16:53:20' 0 systemd errors records 2026-07-04 16:51:53.349235 2026-07-04 16:53:20.211625 +331 11 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260704-165504Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260704-165504Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 10.09}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5242880, "io_kbytes": 5120, "bw_bytes": 519920, "bw": 507, "iops": 0.495835, "runtime": 10084, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 464022, "max": 7437420, "mean": 1933436.8, "stddev": 3078366.943181, "N": 5}, "clat_ns": {"min": 2005389688, "max": 2011622725, "mean": 2007410807.6, "stddev": 2426723.614233, "N": 5, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2004877312, "40.000000": 2004877312, "50.000000": 2004877312, "60.000000": 2004877312, "70.000000": 2004877312, "80.000000": 2004877312, "90.000000": 2004877312, "95.000000": 2004877312, "99.000000": 2004877312, "99.500000": 2004877312, "99.900000": 2004877312, "99.950000": 2004877312, "99.990000": 2004877312}}, "lat_ns": {"min": 2005909789, "max": 2019060145, "mean": 2009344244.4, "stddev": 5464027.250288, "N": 5}, "bw_min": 1024, "bw_max": 1025, "bw_agg": 100.0, "bw_mean": 1024.5, "bw_dev": 0.57735, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.495737, "sys_cpu": 0.079318, "ctx": 7, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-04 16:55:04.835599 2026-07-04 11:58:54.193208 +349 12 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 60% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 14.71}, "metrics": {"0": {"bogo_ops": 1993, "real_time_secs": 11.03, "usr_time_secs": 1.72, "sys_time_secs": 1.96, "bogo_ops_s_real_time": 180.73, "bogo_ops_s_usr_sys_time": 541.18, "cpu_used_per_instance": 8.35, "rss_max_kb": 4120, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 17:09:10.665725 2026-07-04 11:58:54.192283 +350 12 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 70% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 15.57}, "metrics": {"0": {"bogo_ops": 2648, "real_time_secs": 11.03, "usr_time_secs": 2.24, "sys_time_secs": 2.3, "bogo_ops_s_real_time": 240.02, "bogo_ops_s_usr_sys_time": 583.59, "cpu_used_per_instance": 10.28, "rss_max_kb": 2228, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 17:09:23.135633 2026-07-04 11:58:54.192283 +334 11 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260704-165504Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_64k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 10.2}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 327680, "io_kbytes": 320, "bw_bytes": 32112, "bw": 31, "iops": 0.490004, "runtime": 10204, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 174229, "max": 476176, "mean": 278315.2, "stddev": 115134.677592, "N": 5}, "clat_ns": {"min": 2007438320, "max": 2047894672, "mean": 2038886831.8, "stddev": 17628146.42513, "N": 5, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2038431744, "40.000000": 2038431744, "50.000000": 2055208960, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2007914496, "max": 2048136141, "mean": 2039165147.0, "stddev": 17520064.808906, "N": 5}, "bw_min": 64, "bw_max": 64, "bw_agg": 100.0, "bw_mean": 64.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.058806, "sys_cpu": 0.029403, "ctx": 7, "majf": 0, "minf": 37, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-04 16:55:38.567314 2026-07-04 11:58:54.193208 +335 11 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260704-165504Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_16k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 10.22}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 81920, "io_kbytes": 80, "bw_bytes": 8015, "bw": 7, "iops": 0.489237, "runtime": 10220, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 244185, "max": 491345, "mean": 316986.4, "stddev": 101997.82224, "N": 5}, "clat_ns": {"min": 2026314609, "max": 2047750161, "mean": 2042542200.4, "stddev": 9125949.01985, "N": 5, "percentile": {"1.000000": 2021654528, "5.000000": 2021654528, "10.000000": 2021654528, "20.000000": 2021654528, "30.000000": 2038431744, "40.000000": 2038431744, "50.000000": 2038431744, "60.000000": 2038431744, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2026805954, "max": 2048029274, "mean": 2042859186.8, "stddev": 9027403.381242, "N": 5}, "bw_min": 16, "bw_max": 16, "bw_agg": 100.0, "bw_mean": 16.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.019571, "sys_cpu": 0.048928, "ctx": 7, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-04 16:55:49.815512 2026-07-04 11:58:54.193208 +336 11 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260704-165504Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260704-165504Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 10.24}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 20480, "io_kbytes": 20, "bw_bytes": 1999, "bw": 1, "iops": 0.488234, "runtime": 10241, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 165912, "max": 645866, "mean": 350421.2, "stddev": 196436.968144, "N": 5}, "clat_ns": {"min": 2045053709, "max": 2048397509, "mean": 2047004601.6, "stddev": 1220953.554471, "N": 5, "percentile": {"1.000000": 2038431744, "5.000000": 2038431744, "10.000000": 2038431744, "20.000000": 2038431744, "30.000000": 2055208960, "40.000000": 2055208960, "50.000000": 2055208960, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2045219621, "max": 2048849177, "mean": 2047355022.8, "stddev": 1316211.296932, "N": 5}, "bw_min": 4, "bw_max": 4, "bw_agg": 100.0, "bw_mean": 4.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.009766, "sys_cpu": 0.058594, "ctx": 6, "majf": 0, "minf": 41, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-04 16:56:01.059851 2026-07-04 11:58:54.193208 +337 11 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 16:56:13.470443 2026-07-04 16:56:13.470446 +338 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 16:53:26' --until '2026-07-04 16:56:13' 0 OOM records 2026-07-04 16:53:26.982459 2026-07-04 16:56:13.043061 +339 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 16:53:26' --until '2026-07-04 16:56:13' 0 systemd errors records 2026-07-04 16:53:26.982459 2026-07-04 16:56:13.043061 +340 12 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 52.424, "kernel_time": 3.74, "userspace_time": 74.71000000000001, "total_time": 130.875} 2026-07-04 11:58:54.192277 2026-07-04 11:58:54.192283 +341 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 17:08:43.200238 2026-07-04 17:08:43.200241 +342 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 17:08:39' --until '2026-07-04 17:08:41' 0 OOM records 2026-07-04 17:08:39.504898 2026-07-04 17:08:41.062261 +343 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 17:08:39' --until '2026-07-04 17:08:41' 0 systemd errors records 2026-07-04 17:08:39.504898 2026-07-04 17:08:41.062261 +344 12 loader systemd-analyze critical-chain [{"service_name": "cloud-config.service", "slow_time_s": 7.318}, {"service_name": "cloud-init.service", "slow_time_s": 13.249}, {"service_name": "wicked.service", "slow_time_s": 14.412}, {"service_name": "cloud-init-local.service", "slow_time_s": 15.218}] 2026-07-04 11:58:54.192277 2026-07-04 11:58:54.192283 +345 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 17:08:54.581306 2026-07-04 17:08:54.58131 +346 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 17:08:45' --until '2026-07-04 17:08:52' 0 OOM records 2026-07-04 17:08:45.590102 2026-07-04 17:08:52.295975 +347 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 17:08:45' --until '2026-07-04 17:08:52' 0 systemd errors records 2026-07-04 17:08:45.590102 2026-07-04 17:08:52.295975 +599 19 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 14:04:11' --until '2026-07-07 14:04:12' 0 systemd errors records 2026-07-07 14:04:11.742451 2026-07-07 14:04:12.434361 +600 19 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-07 13:49:10.431634 2026-07-07 13:49:10.43164 +356 12 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9024000, "io_kbytes": 8812, "bw_bytes": 1804800, "bw": 1762, "iops": 3525.0, "runtime": 5000, "total_ios": 17625, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 103250, "max": 10314640, "mean": 147642.435177, "stddev": 116517.705282, "N": 17625}, "clat_ns": {"min": 6290, "max": 10738060, "mean": 110139.463262, "stddev": 137924.317538, "N": 17625, "percentile": {"1.000000": 7072, "5.000000": 7328, "10.000000": 7648, "20.000000": 102912, "30.000000": 108032, "40.000000": 111104, "50.000000": 114176, "60.000000": 118272, "70.000000": 122368, "80.000000": 130560, "90.000000": 146432, "95.000000": 162816, "99.000000": 216064, "99.500000": 268288, "99.900000": 602112, "99.950000": 1384448, "99.990000": 9895936}}, "lat_ns": {"min": 170270, "max": 11365710, "mean": 265771.116028, "stddev": 166498.823591, "N": 17625}, "bw_min": 1517, "bw_max": 1852, "bw_agg": 99.914894, "bw_mean": 1761.5, "bw_dev": 163.44316, "bw_samples": 4, "iops_min": 3035, "iops_max": 3705, "iops_mean": 3524.0, "iops_stddev": 326.886321, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 6.42, "sys_cpu": 62.44, "ctx": 17553, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 13.060993, "20": 0.533333, "50": 0.187234, "100": 3.387234, "250": 82.190071, "500": 0.504965, "750": 0.062411, "1000": 0.011348}, "latency_ms": {"2": 0.028369, "4": 0.017021, "10": 0.011348, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:10:14.70644 2026-07-04 11:58:54.192283 +357 12 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 11564032, "io_kbytes": 11293, "bw_bytes": 2312343, "bw": 2258, "iops": 4516.296741, "runtime": 5001, "total_ios": 22586, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 52570, "max": 1747770, "mean": 113887.407686, "stddev": 20651.932826, "N": 22586}, "clat_ns": {"min": 6710, "max": 6714820, "mean": 79499.866289, "stddev": 228829.602578, "N": 22586, "percentile": {"1.000000": 7712, "5.000000": 37120, "10.000000": 49408, "20.000000": 51968, "30.000000": 53504, "40.000000": 55040, "50.000000": 57600, "60.000000": 65280, "70.000000": 73216, "80.000000": 78336, "90.000000": 91648, "95.000000": 114176, "99.000000": 366592, "99.500000": 675840, "99.900000": 5210112, "99.950000": 5865472, "99.990000": 6258688}}, "lat_ns": {"min": 153760, "max": 6827220, "mean": 201740.710617, "stddev": 229936.363505, "N": 22586}, "bw_min": 2237, "bw_max": 2378, "bw_agg": 100.0, "bw_mean": 2281.5, "bw_dev": 65.992424, "bw_samples": 4, "iops_min": 4476, "iops_max": 4757, "iops_mean": 4564.25, "iops_stddev": 131.910007, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 7.44, "sys_cpu": 73.8, "ctx": 14937, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 2.60781, "20": 0.416187, "50": 8.505269, "100": 80.846542, "250": 6.185247, "500": 0.602143, "750": 0.610998, "1000": 0.013283}, "latency_ms": {"2": 0.026565, "4": 0.03542, "10": 0.150536, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:10:28.002144 2026-07-04 11:58:54.192283 +358 12 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 6905856, "io_kbytes": 6744, "bw_bytes": 1380895, "bw": 1348, "iops": 2697.060588, "runtime": 5001, "total_ios": 13488, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 53240, "max": 2856410, "mean": 116962.866251, "stddev": 29793.098483, "N": 13488}, "clat_ns": {"min": 7100, "max": 8218010, "mean": 226814.5129, "stddev": 202406.859888, "N": 13488, "percentile": {"1.000000": 37632, "5.000000": 55552, "10.000000": 64768, "20.000000": 74240, "30.000000": 79360, "40.000000": 86528, "50.000000": 108032, "60.000000": 370688, "70.000000": 382976, "80.000000": 391168, "90.000000": 403456, "95.000000": 419840, "99.000000": 522240, "99.500000": 626688, "99.900000": 1957888, "99.950000": 3358720, "99.990000": 4882432}}, "lat_ns": {"min": 153630, "max": 8348750, "mean": 350802.659401, "stddev": 205664.29089, "N": 13488}, "bw_min": 1304, "bw_max": 1391, "bw_agg": 99.589904, "bw_mean": 1343.25, "bw_dev": 35.855032, "bw_samples": 4, "iops_min": 2607, "iops_max": 2783, "iops_mean": 2686.5, "iops_stddev": 72.518963, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.9, "sys_cpu": 43.34, "ctx": 13327, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.563464, "20": 0.207592, "50": 1.779359, "100": 45.403321, "250": 6.857948, "500": 43.965006, "750": 0.919336, "1000": 0.088968}, "latency_ms": {"2": 0.133452, "4": 0.059312, "10": 0.022242, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:11:56.681361 2026-07-04 11:58:54.192283 +359 12 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4727296, "io_kbytes": 4616, "bw_bytes": 945270, "bw": 923, "iops": 1846.230754, "runtime": 5001, "total_ios": 9233, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 117050, "max": 12722920, "mean": 502163.636954, "stddev": 180261.20744, "N": 9233}, "clat_ns": {"min": 7270, "max": 348740, "mean": 10721.77732, "stddev": 18410.244268, "N": 9233, "percentile": {"1.000000": 7456, "5.000000": 7520, "10.000000": 7584, "20.000000": 7648, "30.000000": 7776, "40.000000": 7840, "50.000000": 7904, "60.000000": 8032, "70.000000": 8256, "80.000000": 8512, "90.000000": 9920, "95.000000": 14144, "99.000000": 138240, "99.500000": 158720, "99.900000": 205824, "99.950000": 226304, "99.990000": 350208}}, "lat_ns": {"min": 238240, "max": 12763390, "mean": 521112.831149, "stddev": 179016.689565, "N": 9233}, "bw_min": 912, "bw_max": 927, "bw_agg": 99.66253, "bw_mean": 920.75, "bw_dev": 6.344289, "bw_samples": 4, "iops_min": 1825, "iops_max": 1855, "iops_mean": 1842.25, "iops_stddev": 12.685293, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.62, "sys_cpu": 79.58, "ctx": 9231, "majf": 0, "minf": 16, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 90.154879, "20": 7.928084, "50": 0.292429, "100": 0.162461, "250": 1.440485, "500": 0.021661, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:12:57.774466 2026-07-04 11:58:54.192283 +537 14 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/perf bench --format default --repeat 1 syscall all {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 36.84}, "metrics": {"0": {"bogo_ops": 2352, "real_time_secs": 35.29, "usr_time_secs": 0.59, "sys_time_secs": 0.96, "bogo_ops_s_real_time": 66.66, "bogo_ops_s_usr_sys_time": 1516.62, "cpu_used_per_instance": 1.1, "rss_max_kb": 3584, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}, "perf_metrics": {"tool": "perf", "test_type": {"benchmark": "syscall/basic"}, "time": {"duration_sec": 5.053}, "metrics": {"usecs_per_op": 0.505322, "ops_per_sec": 1978937}}} 2026-07-04 18:51:02.851531 2026-07-04 18:55:18.676433 +538 14 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 18:55:21.043409 2026-07-04 18:55:21.043411 +601 19 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 14:04:31.461232 2026-07-07 14:04:31.461237 +360 12 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 52912128, "io_kbytes": 51672, "bw_bytes": 10580309, "bw": 10332, "iops": 2583.083383, "runtime": 5001, "total_ios": 12918, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 104070, "max": 1387590, "mean": 120677.47639, "stddev": 23817.118523, "N": 12918}, "clat_ns": {"min": 8760, "max": 3497310, "mean": 240762.082366, "stddev": 54915.72848, "N": 12918, "percentile": {"1.000000": 185344, "5.000000": 205824, "10.000000": 211968, "20.000000": 218112, "30.000000": 222208, "40.000000": 226304, "50.000000": 230400, "60.000000": 238592, "70.000000": 248832, "80.000000": 261120, "90.000000": 280576, "95.000000": 301056, "99.000000": 362496, "99.500000": 395264, "99.900000": 610304, "99.950000": 708608, "99.990000": 3063808}}, "lat_ns": {"min": 296940, "max": 3615350, "mean": 368040.636321, "stddev": 60782.28779, "N": 12918}, "bw_min": 10152, "bw_max": 10529, "bw_agg": 100.0, "bw_mean": 10368.5, "bw_dev": 189.054666, "bw_samples": 4, "iops_min": 2538, "iops_max": 2632, "iops_mean": 2592.5, "iops_stddev": 47.226405, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.92, "sys_cpu": 42.7, "ctx": 12888, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.232234, "20": 0.06967, "50": 0.0, "100": 0.023223, "250": 71.31909, "500": 28.193219, "750": 0.116117, "1000": 0.015482}, "latency_ms": {"2": 0.015482, "4": 0.015482, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:13:09.822276 2026-07-04 11:58:54.192283 +361 12 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 76951552, "io_kbytes": 75148, "bw_bytes": 15390310, "bw": 15029, "iops": 3757.4, "runtime": 5000, "total_ios": 18787, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 65080, "max": 3819430, "mean": 112491.542556, "stddev": 32585.921794, "N": 18787}, "clat_ns": {"min": 5640, "max": 8551820, "mean": 126635.394688, "stddev": 466526.228481, "N": 18787, "percentile": {"1.000000": 8896, "5.000000": 39680, "10.000000": 48896, "20.000000": 52992, "30.000000": 56064, "40.000000": 64768, "50.000000": 70144, "60.000000": 74240, "70.000000": 78336, "80.000000": 86528, "90.000000": 109056, "95.000000": 150528, "99.000000": 2088960, "99.500000": 2768896, "99.900000": 7700480, "99.950000": 7962624, "99.990000": 8159232}}, "lat_ns": {"min": 147180, "max": 8697350, "mean": 247369.210092, "stddev": 468820.243907, "N": 18787}, "bw_min": 9374, "bw_max": 17692, "bw_agg": 92.450899, "bw_mean": 13895.75, "bw_dev": 3425.818284, "bw_samples": 4, "iops_min": 2343, "iops_max": 4423, "iops_mean": 3473.75, "iops_stddev": 856.670833, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 5.5, "sys_cpu": 58.02, "ctx": 18534, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 1.107149, "20": 0.186299, "50": 10.134668, "100": 75.264811, "250": 9.628999, "500": 1.186991, "750": 1.01666, "1000": 0.202268}, "latency_ms": {"2": 0.212913, "4": 0.612125, "10": 0.447118, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:13:21.802743 2026-07-04 11:58:54.192283 +362 12 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 50765824, "io_kbytes": 49576, "bw_bytes": 10153164, "bw": 9915, "iops": 2478.8, "runtime": 5000, "total_ios": 12394, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 101810, "max": 1456550, "mean": 119523.638051, "stddev": 23900.803276, "N": 12394}, "clat_ns": {"min": 7090, "max": 7131390, "mean": 254226.089237, "stddev": 290777.95506, "N": 12394, "percentile": {"1.000000": 8640, "5.000000": 44800, "10.000000": 52480, "20.000000": 57600, "30.000000": 75264, "40.000000": 88576, "50.000000": 362496, "60.000000": 378880, "70.000000": 387072, "80.000000": 395264, "90.000000": 407552, "95.000000": 432128, "99.000000": 643072, "99.500000": 798720, "99.900000": 5865472, "99.950000": 6520832, "99.990000": 6651904}}, "lat_ns": {"min": 152080, "max": 7378290, "mean": 382950.016944, "stddev": 292351.017325, "N": 12394}, "bw_min": 8768, "bw_max": 10440, "bw_agg": 99.927392, "bw_mean": 9908.25, "bw_dev": 770.165513, "bw_samples": 4, "iops_min": 2192, "iops_max": 2610, "iops_mean": 2477.0, "iops_stddev": 192.516666, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 6.28, "sys_cpu": 42.3, "ctx": 9900, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 2.4528, "20": 0.524447, "50": 4.308536, "100": 35.662417, "250": 4.203647, "500": 50.701953, "750": 1.557205, "1000": 0.225916}, "latency_ms": {"2": 0.1533, "4": 0.056479, "10": 0.1533, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:14:13.842768 2026-07-04 11:58:54.192283 +363 12 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 38289408, "io_kbytes": 37392, "bw_bytes": 7656350, "bw": 7476, "iops": 1869.226155, "runtime": 5001, "total_ios": 9348, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 105920, "max": 6831430, "mean": 131279.203038, "stddev": 81584.129178, "N": 9348}, "clat_ns": {"min": 6820, "max": 10999820, "mean": 371755.956354, "stddev": 197164.119376, "N": 9348, "percentile": {"1.000000": 234496, "5.000000": 261120, "10.000000": 272384, "20.000000": 292864, "30.000000": 313344, "40.000000": 333824, "50.000000": 362496, "60.000000": 382976, "70.000000": 403456, "80.000000": 428032, "90.000000": 460800, "95.000000": 497664, "99.000000": 618496, "99.500000": 741376, "99.900000": 2244608, "99.950000": 4620288, "99.990000": 10944512}}, "lat_ns": {"min": 325590, "max": 11161990, "mean": 511014.184852, "stddev": 220061.02326, "N": 9348}, "bw_min": 7300, "bw_max": 7704, "bw_agg": 100.0, "bw_mean": 7580.0, "bw_dev": 189.511653, "bw_samples": 4, "iops_min": 1825, "iops_max": 1926, "iops_mean": 1895.0, "iops_stddev": 47.377913, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 5.56, "sys_cpu": 32.34, "ctx": 9331, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.342319, "20": 0.08558, "50": 0.0, "100": 0.0, "250": 1.807873, "500": 92.982456, "750": 4.300385, "1000": 0.192555}, "latency_ms": {"2": 0.181857, "4": 0.053487, "10": 0.04279, "20": 0.010697, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:15:09.274908 2026-07-04 11:58:54.192283 +539 14 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:51:00' --until '2026-07-04 18:55:18' 0 OOM records 2026-07-04 18:51:00.979641 2026-07-04 18:55:18.687988 +540 14 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:51:00' --until '2026-07-04 18:55:18' 0 systemd errors records 2026-07-04 18:51:00.979641 2026-07-04 18:55:18.687988 +602 19 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 14:04:14' --until '2026-07-07 14:04:31' 0 OOM records 2026-07-07 14:04:14.53188 2026-07-07 14:04:31.038216 +603 19 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 14:04:14' --until '2026-07-07 14:04:31' 0 systemd errors records 2026-07-07 14:04:14.53188 2026-07-07 14:04:31.038216 +604 19 loader /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-07_14:04:32.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 19.6}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboJ2Nc0N as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11463475227355957}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1010141372680664}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accZnX5yZ as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 34783\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11725926399230957}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1129446029663086}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 37019\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 38253\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 41693\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12149429321289062}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accdLR1Nq as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5724263191223145}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accBFPxCW as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.28246331214904785}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13217926025390625}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc1SP9nJ as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc1SP9nJ/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15404200553894043}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acchGemTw as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acchGemTw/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1670057773590088}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accAHSbZq as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('sh')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 1189 (944)\\nacct02.c:193: TINFO: == entry 2 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 2\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.2355034351348877}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3821556568145752}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.34343433380126953}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.43358922004699707}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.38326406478881836}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.715102195739746}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3415493965148926}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.25679802894592285}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15675687789916992}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13415074348449707}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11504864692687988}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.1162164211273193}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.3524389266967773}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.352684497833252}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3477516174316406}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binFvaQYa as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.36681699752807617}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3449892997741699}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binhSQowl as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.346254825592041}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "36": {"test": "bpf_prog05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "37": {"test": "bpf_prog06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "38": {"test": "bpf_prog07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "39": {"test": "brk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "40": {"test": "brk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "41": {"test": "capget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "42": {"test": "capget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "43": {"test": "capset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "44": {"test": "capset02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "45": {"test": "capset03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "46": {"test": "capset04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "47": {"test": "cacheflush01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "48": {"test": "cachestat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "49": {"test": "cachestat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "50": {"test": "cachestat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "51": {"test": "cachestat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "52": {"test": "chdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "53": {"test": "chdir01A", "status": "pass", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0}, "54": {"test": "chdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "55": {"test": "chmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "56": {"test": "chmod01A", "status": "pass", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0}, "57": {"test": "chmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "58": {"test": "chmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "59": {"test": "chmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "60": {"test": "chmod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "61": {"test": "chmod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "62": {"test": "chmod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "63": {"test": "chown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "64": {"test": "chown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "65": {"test": "chown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "66": {"test": "chown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "67": {"test": "chown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "68": {"test": "chown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "69": {"test": "chown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "70": {"test": "chown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "71": {"test": "chown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "72": {"test": "chown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "73": {"test": "chroot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "74": {"test": "chroot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "75": {"test": "chroot03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "76": {"test": "chroot04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "77": {"test": "clock_adjtime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "78": {"test": "clock_adjtime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "79": {"test": "clock_getres01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "80": {"test": "clock_nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "81": {"test": "clock_nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "82": {"test": "clock_nanosleep03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "83": {"test": "clock_nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "84": {"test": "clock_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "85": {"test": "clock_gettime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "86": {"test": "clock_gettime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "87": {"test": "clock_gettime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "88": {"test": "leapsec01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "89": {"test": "clock_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "90": {"test": "clock_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "91": {"test": "clock_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "92": {"test": "clone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "93": {"test": "clone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "94": {"test": "clone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "95": {"test": "clone04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "96": {"test": "clone05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "97": {"test": "clone06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "98": {"test": "clone07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "99": {"test": "clone08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "100": {"test": "clone09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "101": {"test": "clone301", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "102": {"test": "clone302", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "103": {"test": "clone303", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "104": {"test": "close01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "105": {"test": "close02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "106": {"test": "close_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "107": {"test": "close_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "108": {"test": "confstr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "109": {"test": "connect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "110": {"test": "connect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "111": {"test": "creat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "112": {"test": "creat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "113": {"test": "creat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "114": {"test": "creat05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "115": {"test": "creat06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "116": {"test": "creat07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "117": {"test": "creat08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "118": {"test": "creat09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "119": {"test": "delete_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "120": {"test": "delete_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "121": {"test": "delete_module03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "122": {"test": "dup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "123": {"test": "dup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "124": {"test": "dup03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "125": {"test": "dup04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "126": {"test": "dup05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "127": {"test": "dup06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "128": {"test": "dup07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "129": {"test": "dup201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "130": {"test": "dup202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "131": {"test": "dup203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "132": {"test": "dup204", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "133": {"test": "dup205", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "134": {"test": "dup206", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "135": {"test": "dup207", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "136": {"test": "dup3_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "137": {"test": "dup3_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "138": {"test": "epoll_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "139": {"test": "epoll_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "140": {"test": "epoll_create1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "141": {"test": "epoll_create1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "142": {"test": "epoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "143": {"test": "epoll_ctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "144": {"test": "epoll_ctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "145": {"test": "epoll_ctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "146": {"test": "epoll_ctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "147": {"test": "epoll_ctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "148": {"test": "epoll_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "149": {"test": "epoll_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "150": {"test": "epoll_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "151": {"test": "epoll_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "152": {"test": "epoll_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "153": {"test": "epoll_wait06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "154": {"test": "epoll_wait07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "155": {"test": "epoll_pwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "156": {"test": "epoll_pwait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "157": {"test": "epoll_pwait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "158": {"test": "epoll_pwait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "159": {"test": "epoll_pwait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "160": {"test": "eventfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "161": {"test": "eventfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "162": {"test": "eventfd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "163": {"test": "eventfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "164": {"test": "eventfd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "165": {"test": "eventfd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "166": {"test": "eventfd2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "167": {"test": "eventfd2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "168": {"test": "eventfd2_03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "169": {"test": "execl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "170": {"test": "execle01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "171": {"test": "execlp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "172": {"test": "execv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "173": {"test": "execve01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "174": {"test": "execve02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "175": {"test": "execve03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "176": {"test": "execve04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "177": {"test": "execve05", "status": "pass", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0}, "178": {"test": "execve06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "179": {"test": "execvp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "180": {"test": "execveat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "181": {"test": "execveat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "182": {"test": "execveat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "183": {"test": "exit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "184": {"test": "exit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "185": {"test": "exit_group01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "186": {"test": "faccessat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "187": {"test": "faccessat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "188": {"test": "faccessat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "189": {"test": "faccessat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "190": {"test": "fallocate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "191": {"test": "fallocate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "192": {"test": "fallocate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "193": {"test": "fallocate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "194": {"test": "fallocate05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "195": {"test": "fallocate06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "196": {"test": "fsetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "197": {"test": "fsetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "198": {"test": "posix_fadvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "199": {"test": "posix_fadvise01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "200": {"test": "posix_fadvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "201": {"test": "posix_fadvise02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "202": {"test": "posix_fadvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "203": {"test": "posix_fadvise03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "204": {"test": "posix_fadvise04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "205": {"test": "posix_fadvise04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "206": {"test": "fchdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "207": {"test": "fchdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "208": {"test": "fchdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "209": {"test": "fchmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "210": {"test": "fchmod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "211": {"test": "fchmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "212": {"test": "fchmod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "213": {"test": "fchmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "214": {"test": "fchmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "215": {"test": "fchmodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "216": {"test": "fchmodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "217": {"test": "fchmodat2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "218": {"test": "fchmodat2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "219": {"test": "fchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "220": {"test": "fchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "221": {"test": "fchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "222": {"test": "fchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "223": {"test": "fchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "224": {"test": "fchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "225": {"test": "fchown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "226": {"test": "fchown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "227": {"test": "fchown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "228": {"test": "fchown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "229": {"test": "fchownat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "230": {"test": "fchownat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "231": {"test": "fcntl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "232": {"test": "fcntl01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "233": {"test": "fcntl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "234": {"test": "fcntl02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "235": {"test": "fcntl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "236": {"test": "fcntl03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "237": {"test": "fcntl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "238": {"test": "fcntl04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "239": {"test": "fcntl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "240": {"test": "fcntl05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "241": {"test": "fcntl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "242": {"test": "fcntl07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "243": {"test": "fcntl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "244": {"test": "fcntl08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "245": {"test": "fcntl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "246": {"test": "fcntl09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "247": {"test": "fcntl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "248": {"test": "fcntl10_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "249": {"test": "fcntl11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "250": {"test": "fcntl11_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "251": {"test": "fcntl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "252": {"test": "fcntl12_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "253": {"test": "fcntl13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "254": {"test": "fcntl13_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "255": {"test": "fcntl14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "256": {"test": "fcntl14_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "257": {"test": "fcntl15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "258": {"test": "fcntl15_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "259": {"test": "fcntl16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "260": {"test": "fcntl16_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "261": {"test": "fcntl17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "262": {"test": "fcntl17_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "263": {"test": "fcntl18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "264": {"test": "fcntl18_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "265": {"test": "fcntl19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "266": {"test": "fcntl19_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "267": {"test": "fcntl20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "268": {"test": "fcntl20_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "269": {"test": "fcntl21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "270": {"test": "fcntl21_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "271": {"test": "fcntl22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "272": {"test": "fcntl22_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "273": {"test": "fcntl23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "274": {"test": "fcntl23_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "275": {"test": "fcntl24", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "276": {"test": "fcntl24_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "277": {"test": "fcntl25", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "278": {"test": "fcntl25_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "279": {"test": "fcntl26", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "280": {"test": "fcntl26_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "281": {"test": "fcntl27", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "282": {"test": "fcntl27_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "283": {"test": "fcntl29", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "284": {"test": "fcntl29_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "285": {"test": "fcntl30", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "286": {"test": "fcntl30_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "287": {"test": "fcntl31", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "288": {"test": "fcntl31_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "289": {"test": "fcntl32", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "290": {"test": "fcntl32_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "291": {"test": "fcntl33", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "292": {"test": "fcntl33_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "293": {"test": "fcntl34", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "294": {"test": "fcntl34_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "295": {"test": "fcntl35", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "296": {"test": "fcntl35_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "297": {"test": "fcntl36", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "298": {"test": "fcntl36_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "299": {"test": "fcntl37", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "300": {"test": "fcntl37_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "301": {"test": "fcntl38", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "302": {"test": "fcntl38_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "303": {"test": "fcntl39", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "304": {"test": "fcntl39_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "305": {"test": "fdatasync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "306": {"test": "fdatasync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "307": {"test": "fdatasync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "308": {"test": "fgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "309": {"test": "fgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "310": {"test": "fgetxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "311": {"test": "finit_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "312": {"test": "finit_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "313": {"test": "flistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "314": {"test": "flistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "315": {"test": "flistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "316": {"test": "flock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "317": {"test": "flock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "318": {"test": "flock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "319": {"test": "flock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "320": {"test": "flock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "321": {"test": "fmtmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "322": {"test": "fork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "323": {"test": "fork03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "324": {"test": "fork04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "325": {"test": "fork05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "326": {"test": "fork06", "status": "pass", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0}, "327": {"test": "fork07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "328": {"test": "fork08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "329": {"test": "fork09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "330": {"test": "fork10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "331": {"test": "fork11", "status": "pass", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0}, "332": {"test": "fork13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "333": {"test": "fork14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "334": {"test": "fpathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "335": {"test": "fremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "336": {"test": "fremovexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "337": {"test": "fsconfig01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "338": {"test": "fsconfig02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "339": {"test": "fsconfig03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "340": {"test": "fsmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "341": {"test": "fsmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "342": {"test": "fsopen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "343": {"test": "fsopen02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "344": {"test": "fspick01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "345": {"test": "fspick02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "346": {"test": "fstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "347": {"test": "fstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "348": {"test": "fstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "349": {"test": "fstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "350": {"test": "fstatat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "351": {"test": "fstatfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "352": {"test": "fstatfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "353": {"test": "fstatfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "354": {"test": "fstatfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "355": {"test": "fsync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "356": {"test": "fsync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "357": {"test": "fsync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "358": {"test": "fsync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "359": {"test": "ftruncate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "360": {"test": "ftruncate01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "361": {"test": "ftruncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "362": {"test": "ftruncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "363": {"test": "ftruncate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "364": {"test": "ftruncate04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "365": {"test": "futimesat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "366": {"test": "getcontext01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "367": {"test": "getcpu01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "368": {"test": "getcpu02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "369": {"test": "getcwd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "370": {"test": "getcwd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "371": {"test": "getcwd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "372": {"test": "getcwd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "373": {"test": "getdents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "374": {"test": "getdents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "375": {"test": "getdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "376": {"test": "getegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "377": {"test": "getegid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "378": {"test": "getegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "379": {"test": "getegid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "380": {"test": "geteuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "381": {"test": "geteuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "382": {"test": "geteuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "383": {"test": "geteuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "384": {"test": "getgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "385": {"test": "getgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "386": {"test": "getgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "387": {"test": "getgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "388": {"test": "getgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "389": {"test": "getgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "390": {"test": "getgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "391": {"test": "getgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "392": {"test": "gethostbyname_r01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "393": {"test": "gethostid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "394": {"test": "gethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "395": {"test": "gethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "396": {"test": "getitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "397": {"test": "getitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "398": {"test": "getpagesize01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "399": {"test": "getpeername01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "400": {"test": "getpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "401": {"test": "getpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "402": {"test": "getpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "403": {"test": "getpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "404": {"test": "getpid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "405": {"test": "getppid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "406": {"test": "getppid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "407": {"test": "getpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "408": {"test": "getpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "409": {"test": "getrandom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "410": {"test": "getrandom02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "411": {"test": "getrandom03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "412": {"test": "getrandom04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "413": {"test": "getrandom05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "414": {"test": "getresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "415": {"test": "getresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "416": {"test": "getresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "417": {"test": "getresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "418": {"test": "getresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "419": {"test": "getresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "420": {"test": "getresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "421": {"test": "getresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "422": {"test": "getresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "423": {"test": "getresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "424": {"test": "getresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "425": {"test": "getresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "426": {"test": "getrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "427": {"test": "getrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "428": {"test": "getrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "429": {"test": "get_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "430": {"test": "get_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "431": {"test": "get_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "432": {"test": "getrusage01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "433": {"test": "getrusage02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "434": {"test": "getrusage03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "435": {"test": "getrusage04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "436": {"test": "getsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "437": {"test": "getsid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "438": {"test": "getsockname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "439": {"test": "getsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "440": {"test": "getsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "441": {"test": "gettid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "442": {"test": "gettid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "443": {"test": "gettimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "444": {"test": "gettimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "445": {"test": "getuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "446": {"test": "getuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "447": {"test": "getuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "448": {"test": "getuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "449": {"test": "getxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "450": {"test": "getxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "451": {"test": "getxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "452": {"test": "getxattr04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "453": {"test": "getxattr05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "454": {"test": "init_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "455": {"test": "init_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "456": {"test": "ioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "457": {"test": "ioctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "458": {"test": "ioctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "459": {"test": "ioctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "460": {"test": "ioctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "461": {"test": "ioctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "462": {"test": "ioctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "463": {"test": "ioctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "464": {"test": "ioctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "465": {"test": "ioctl_loop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "466": {"test": "ioctl_loop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "467": {"test": "ioctl_loop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "468": {"test": "ioctl_loop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "469": {"test": "ioctl_loop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "470": {"test": "ioctl_loop06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "471": {"test": "ioctl_loop07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "472": {"test": "ioctl_ns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "473": {"test": "ioctl_ns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "474": {"test": "ioctl_ns03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "475": {"test": "ioctl_ns04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "476": {"test": "ioctl_ns05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "477": {"test": "ioctl_ns06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "478": {"test": "ioctl_ns07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "479": {"test": "ioctl_sg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "480": {"test": "ioctl_ficlone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "481": {"test": "ioctl_ficlone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "482": {"test": "ioctl_ficlone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "483": {"test": "ioctl_ficlonerange01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "484": {"test": "ioctl_ficlonerange02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "485": {"test": "inotify_init1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "486": {"test": "inotify_init1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "487": {"test": "inotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "488": {"test": "inotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "489": {"test": "inotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "490": {"test": "inotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "491": {"test": "inotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "492": {"test": "inotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "493": {"test": "inotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "494": {"test": "inotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "495": {"test": "inotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "496": {"test": "inotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "497": {"test": "inotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "498": {"test": "inotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "499": {"test": "fanotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "500": {"test": "fanotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "501": {"test": "fanotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "502": {"test": "fanotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "503": {"test": "fanotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "504": {"test": "fanotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "505": {"test": "fanotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "506": {"test": "fanotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "507": {"test": "fanotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "508": {"test": "fanotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "509": {"test": "fanotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "510": {"test": "fanotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "511": {"test": "fanotify13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "512": {"test": "fanotify14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "513": {"test": "fanotify15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "514": {"test": "fanotify16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "515": {"test": "fanotify17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "516": {"test": "fanotify18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "517": {"test": "fanotify19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "518": {"test": "fanotify20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "519": {"test": "fanotify21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "520": {"test": "fanotify22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "521": {"test": "fanotify23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "522": {"test": "ioperm01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "523": {"test": "ioperm02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "524": {"test": "iopl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "525": {"test": "iopl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "526": {"test": "ioprio_get01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "527": {"test": "ioprio_set01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "528": {"test": "ioprio_set02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "529": {"test": "ioprio_set03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "530": {"test": "io_cancel01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "531": {"test": "io_cancel02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "532": {"test": "io_destroy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "533": {"test": "io_destroy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "534": {"test": "io_getevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "535": {"test": "io_getevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "536": {"test": "io_pgetevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "537": {"test": "io_pgetevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "538": {"test": "io_setup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "539": {"test": "io_setup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "540": {"test": "io_submit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "541": {"test": "io_submit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "542": {"test": "io_submit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "543": {"test": "keyctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "544": {"test": "keyctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "545": {"test": "keyctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "546": {"test": "keyctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "547": {"test": "keyctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "548": {"test": "keyctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "549": {"test": "keyctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "550": {"test": "keyctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "551": {"test": "keyctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "552": {"test": "kcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "553": {"test": "kcmp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "554": {"test": "kcmp03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "555": {"test": "kill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "556": {"test": "kill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "557": {"test": "kill05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "558": {"test": "kill06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "559": {"test": "kill07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "560": {"test": "kill08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "561": {"test": "kill09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "562": {"test": "kill10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "563": {"test": "kill11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "564": {"test": "kill12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "565": {"test": "kill13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "566": {"test": "landlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "567": {"test": "landlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "568": {"test": "landlock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "569": {"test": "landlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "570": {"test": "landlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "571": {"test": "landlock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "572": {"test": "landlock07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "573": {"test": "landlock08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "574": {"test": "lchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "575": {"test": "lchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "576": {"test": "lchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "577": {"test": "lchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "578": {"test": "lchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "579": {"test": "lchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "580": {"test": "lgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "581": {"test": "lgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "582": {"test": "link01", "status": "pass", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0}, "583": {"test": "link02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "584": {"test": "link04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "585": {"test": "link05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "586": {"test": "link08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "587": {"test": "linkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "588": {"test": "linkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "589": {"test": "listen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "590": {"test": "listmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "591": {"test": "listmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "592": {"test": "listmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "593": {"test": "listmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "594": {"test": "listxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "595": {"test": "listxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "596": {"test": "listxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "597": {"test": "llistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "598": {"test": "llistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "599": {"test": "llistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "600": {"test": "llseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "601": {"test": "llseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "602": {"test": "llseek03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "603": {"test": "lremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "604": {"test": "lseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "605": {"test": "lseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "606": {"test": "lseek07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "607": {"test": "lseek11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "608": {"test": "lstat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "609": {"test": "lstat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "610": {"test": "lstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "611": {"test": "lstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "612": {"test": "lstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "613": {"test": "lstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "614": {"test": "mallinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "615": {"test": "mallinfo2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "616": {"test": "mallopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "617": {"test": "mbind01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "618": {"test": "mbind02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "619": {"test": "mbind03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "620": {"test": "mbind04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "621": {"test": "memset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "622": {"test": "memcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "623": {"test": "memcpy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "624": {"test": "migrate_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "625": {"test": "migrate_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "626": {"test": "migrate_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "627": {"test": "mlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "628": {"test": "mlockall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "629": {"test": "mlockall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "630": {"test": "mkdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "631": {"test": "mkdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "632": {"test": "mkdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "633": {"test": "mkdir05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "634": {"test": "mkdir09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "635": {"test": "mkdirat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "636": {"test": "mkdirat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "637": {"test": "mknod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "638": {"test": "mknod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "639": {"test": "mknod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "640": {"test": "mknod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "641": {"test": "mknod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "642": {"test": "mknod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "643": {"test": "mknod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "644": {"test": "mknod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "645": {"test": "mknod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "646": {"test": "mknodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "647": {"test": "mknodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "648": {"test": "mlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "649": {"test": "mlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "650": {"test": "mlock03", "status": "pass", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0}, "651": {"test": "mlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "652": {"test": "mlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "653": {"test": "mlock201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "654": {"test": "mlock202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "655": {"test": "mlock203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "656": {"test": "qmm01", "status": "pass", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0}, "657": {"test": "mmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "658": {"test": "mmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "659": {"test": "mmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "660": {"test": "mmap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "661": {"test": "mmap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "662": {"test": "mmap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "663": {"test": "mmap08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "664": {"test": "mmap09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "665": {"test": "mmap12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "666": {"test": "mmap13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "667": {"test": "mmap14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "668": {"test": "mmap15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "669": {"test": "mmap16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "670": {"test": "mmap17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "671": {"test": "mmap18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "672": {"test": "mmap19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "673": {"test": "mmap20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "674": {"test": "modify_ldt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "675": {"test": "modify_ldt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "676": {"test": "modify_ldt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "677": {"test": "mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "678": {"test": "mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "679": {"test": "mount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "680": {"test": "mount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "681": {"test": "mount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "682": {"test": "mount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "683": {"test": "mount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "684": {"test": "mount_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "685": {"test": "move_mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "686": {"test": "move_mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "687": {"test": "move_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "688": {"test": "move_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "689": {"test": "move_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "690": {"test": "move_pages04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "691": {"test": "move_pages05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "692": {"test": "move_pages06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "693": {"test": "move_pages07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "694": {"test": "move_pages09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "695": {"test": "move_pages10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "696": {"test": "move_pages11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "697": {"test": "move_pages12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "698": {"test": "mprotect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "699": {"test": "mprotect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "700": {"test": "mprotect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "701": {"test": "mprotect04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "702": {"test": "mprotect05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "703": {"test": "pkey01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "704": {"test": "mq_notify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "705": {"test": "mq_notify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "706": {"test": "mq_notify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "707": {"test": "mq_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "708": {"test": "mq_timedreceive01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "709": {"test": "mq_timedsend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "710": {"test": "mq_unlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "711": {"test": "mremap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "712": {"test": "mremap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "713": {"test": "mremap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "714": {"test": "mremap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "715": {"test": "mremap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "716": {"test": "mremap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "717": {"test": "mseal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "718": {"test": "mseal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "719": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "720": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "721": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "722": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "723": {"test": "msgctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "724": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "725": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "726": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "727": {"test": "msgget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "728": {"test": "msgget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "729": {"test": "msgget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "730": {"test": "msgget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "731": {"test": "msgget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "732": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "733": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "734": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "735": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "736": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "737": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "738": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "739": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "740": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "741": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "742": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "743": {"test": "msync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "744": {"test": "msync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "745": {"test": "msync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "746": {"test": "msync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "747": {"test": "munlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "748": {"test": "munlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "749": {"test": "munlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "750": {"test": "munmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "751": {"test": "munmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "752": {"test": "munmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "753": {"test": "nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "754": {"test": "nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "755": {"test": "nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "756": {"test": "name_to_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "757": {"test": "name_to_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "758": {"test": "nftw01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "759": {"test": "nftw6401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "760": {"test": "nice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "761": {"test": "nice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "762": {"test": "nice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "763": {"test": "nice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "764": {"test": "nice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "765": {"test": "open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "766": {"test": "open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "767": {"test": "open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "768": {"test": "open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "769": {"test": "open06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "770": {"test": "open07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "771": {"test": "open08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "772": {"test": "open09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "773": {"test": "open10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "774": {"test": "open11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "775": {"test": "open12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "776": {"test": "open13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "777": {"test": "open14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "778": {"test": "open15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "779": {"test": "openat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "780": {"test": "openat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "781": {"test": "openat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "782": {"test": "openat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "783": {"test": "openat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "784": {"test": "openat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "785": {"test": "openat203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "786": {"test": "open_by_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "787": {"test": "open_by_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "788": {"test": "open_tree01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "789": {"test": "open_tree02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "790": {"test": "mincore01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "791": {"test": "mincore02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "792": {"test": "mincore03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "793": {"test": "mincore04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "794": {"test": "madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "795": {"test": "madvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "796": {"test": "madvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "797": {"test": "madvise05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "798": {"test": "madvise06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "799": {"test": "madvise07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "800": {"test": "madvise08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "801": {"test": "madvise09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "802": {"test": "madvise10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "803": {"test": "madvise11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "804": {"test": "madvise12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "805": {"test": "newuname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "806": {"test": "pathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "807": {"test": "pathconf02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "808": {"test": "pause01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "809": {"test": "pause02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "810": {"test": "pause03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "811": {"test": "personality01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "812": {"test": "personality02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "813": {"test": "pidfd_getfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "814": {"test": "pidfd_getfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "815": {"test": "pidfd_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "816": {"test": "pidfd_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "817": {"test": "pidfd_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "818": {"test": "pidfd_open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "819": {"test": "pidfd_send_signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "820": {"test": "pidfd_send_signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "821": {"test": "pidfd_send_signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "822": {"test": "pipe01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "823": {"test": "pipe02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "824": {"test": "pipe03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "825": {"test": "pipe04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "826": {"test": "pipe05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "827": {"test": "pipe06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "828": {"test": "pipe07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "829": {"test": "pipe08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "830": {"test": "pipe09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "831": {"test": "pipe10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "832": {"test": "pipe11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "833": {"test": "pipe12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "834": {"test": "pipe13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "835": {"test": "pipe14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "836": {"test": "pipe15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "837": {"test": "pipe2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "838": {"test": "pipe2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "839": {"test": "pipe2_04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "840": {"test": "pivot_root01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "841": {"test": "poll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "842": {"test": "poll02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "843": {"test": "ppoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "844": {"test": "prctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "845": {"test": "prctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "846": {"test": "prctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "847": {"test": "prctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "848": {"test": "prctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "849": {"test": "prctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "850": {"test": "prctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "851": {"test": "prctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "852": {"test": "prctl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "853": {"test": "pread01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "854": {"test": "pread01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "855": {"test": "pread02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "856": {"test": "pread02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "857": {"test": "preadv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "858": {"test": "preadv01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "859": {"test": "preadv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "860": {"test": "preadv02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "861": {"test": "preadv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "862": {"test": "preadv03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "863": {"test": "preadv201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "864": {"test": "preadv201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "865": {"test": "preadv202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "866": {"test": "preadv202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "867": {"test": "preadv203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "868": {"test": "preadv203_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "869": {"test": "profil01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "870": {"test": "process_vm_readv01", "status": "pass", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0}, "871": {"test": "process_vm_readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "872": {"test": "process_vm_readv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "873": {"test": "process_vm_writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "874": {"test": "process_vm_writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "875": {"test": "process_madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "876": {"test": "prot_hsymlinks", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "877": {"test": "dirtyc0w", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "878": {"test": "dirtyc0w_shmem", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "879": {"test": "dirtypipe", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "880": {"test": "pselect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "881": {"test": "pselect01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "882": {"test": "pselect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "883": {"test": "pselect02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "884": {"test": "pselect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "885": {"test": "pselect03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "886": {"test": "ptrace01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "887": {"test": "ptrace02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "888": {"test": "ptrace03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "889": {"test": "ptrace04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "890": {"test": "ptrace05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "891": {"test": "ptrace06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "892": {"test": "ptrace07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "893": {"test": "ptrace08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "894": {"test": "ptrace09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "895": {"test": "ptrace10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "896": {"test": "ptrace11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "897": {"test": "pwrite01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "898": {"test": "pwrite02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "899": {"test": "pwrite03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "900": {"test": "pwrite04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "901": {"test": "pwrite01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "902": {"test": "pwrite02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "903": {"test": "pwrite03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "904": {"test": "pwrite04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "905": {"test": "pwritev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "906": {"test": "pwritev01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "907": {"test": "pwritev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "908": {"test": "pwritev02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "909": {"test": "pwritev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "910": {"test": "pwritev03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "911": {"test": "pwritev201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "912": {"test": "pwritev201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "913": {"test": "pwritev202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "914": {"test": "pwritev202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "915": {"test": "quotactl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "916": {"test": "quotactl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "917": {"test": "quotactl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "918": {"test": "quotactl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "919": {"test": "quotactl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "920": {"test": "quotactl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "921": {"test": "quotactl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "922": {"test": "quotactl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "923": {"test": "quotactl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "924": {"test": "read01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "925": {"test": "read02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "926": {"test": "read03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "927": {"test": "read04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "928": {"test": "readahead01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "929": {"test": "readahead02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "930": {"test": "readdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "931": {"test": "readdir21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "932": {"test": "readlink01A", "status": "pass", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "933": {"test": "readlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "934": {"test": "readlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "935": {"test": "readlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "936": {"test": "readlinkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "937": {"test": "readv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "938": {"test": "readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "939": {"test": "realpath01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "940": {"test": "reboot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "941": {"test": "reboot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "942": {"test": "recv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "943": {"test": "recvfrom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "944": {"test": "recvmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "945": {"test": "recvmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "946": {"test": "recvmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "947": {"test": "recvmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "948": {"test": "remap_file_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "949": {"test": "remap_file_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "950": {"test": "removexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "951": {"test": "removexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "952": {"test": "rename01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "953": {"test": "rename01A", "status": "pass", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0}, "954": {"test": "rename03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "955": {"test": "rename04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "956": {"test": "rename05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "957": {"test": "rename06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "958": {"test": "rename07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "959": {"test": "rename08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "960": {"test": "rename09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "961": {"test": "rename10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "962": {"test": "rename11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "963": {"test": "rename12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "964": {"test": "rename13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "965": {"test": "rename14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "966": {"test": "rename15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "967": {"test": "renameat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "968": {"test": "renameat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "969": {"test": "renameat202", "status": "pass", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0}, "970": {"test": "request_key01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "971": {"test": "request_key02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "972": {"test": "request_key03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "973": {"test": "request_key04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "974": {"test": "request_key05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "975": {"test": "request_key06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "976": {"test": "rmdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "977": {"test": "rmdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "978": {"test": "rmdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "979": {"test": "rmdir03A", "status": "pass", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0}, "980": {"test": "rt_sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "981": {"test": "rt_sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "982": {"test": "rt_sigaction03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "983": {"test": "rt_sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "984": {"test": "rt_sigprocmask02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "985": {"test": "rt_sigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "986": {"test": "rt_sigqueueinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "987": {"test": "rt_sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "988": {"test": "rt_sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "989": {"test": "rt_tgsigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "990": {"test": "sbrk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "991": {"test": "sbrk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "992": {"test": "sbrk03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "993": {"test": "sched_get_priority_max01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "994": {"test": "sched_get_priority_max02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "995": {"test": "sched_get_priority_min01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "996": {"test": "sched_get_priority_min02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "997": {"test": "sched_getparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "998": {"test": "sched_getparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "999": {"test": "sched_rr_get_interval01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1000": {"test": "sched_rr_get_interval02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1001": {"test": "sched_rr_get_interval03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1002": {"test": "sched_setparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1003": {"test": "sched_setparam02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1004": {"test": "sched_setparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1005": {"test": "sched_setparam04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1006": {"test": "sched_setparam05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1007": {"test": "sched_getscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1008": {"test": "sched_getscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1009": {"test": "sched_setscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1010": {"test": "sched_setscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1011": {"test": "sched_setscheduler03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1012": {"test": "sched_setscheduler04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1013": {"test": "sched_yield01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1014": {"test": "sched_setaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1015": {"test": "sched_getaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1016": {"test": "sched_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1017": {"test": "sched_getattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1018": {"test": "sched_getattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1019": {"test": "seccomp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1020": {"test": "select01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1021": {"test": "select02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1022": {"test": "select03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1023": {"test": "select04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1024": {"test": "semctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1025": {"test": "semctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1026": {"test": "semctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1027": {"test": "semctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1028": {"test": "semctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1029": {"test": "semctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1030": {"test": "semctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1031": {"test": "semctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1032": {"test": "semctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1033": {"test": "semget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1034": {"test": "semget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1035": {"test": "semget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1036": {"test": "semop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1037": {"test": "semop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1038": {"test": "semop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1039": {"test": "semop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1040": {"test": "semop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1041": {"test": "send01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1042": {"test": "send02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1043": {"test": "sendfile02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1044": {"test": "sendfile02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1045": {"test": "sendfile03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1046": {"test": "sendfile03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1047": {"test": "sendfile04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1048": {"test": "sendfile04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1049": {"test": "sendfile05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1050": {"test": "sendfile05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1051": {"test": "sendfile06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1052": {"test": "sendfile06_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1053": {"test": "sendfile07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1054": {"test": "sendfile07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1055": {"test": "sendfile08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1056": {"test": "sendfile08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1057": {"test": "sendfile09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1058": {"test": "sendfile09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1059": {"test": "sendmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1060": {"test": "sendmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1061": {"test": "sendmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1062": {"test": "sendmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1063": {"test": "sendmmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1064": {"test": "sendto01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1065": {"test": "sendto02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1066": {"test": "sendto03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1067": {"test": "set_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1068": {"test": "set_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1069": {"test": "set_mempolicy03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1070": {"test": "set_mempolicy04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1071": {"test": "set_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1072": {"test": "set_thread_area01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1073": {"test": "set_tid_address01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1074": {"test": "setdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1075": {"test": "setdomainname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1076": {"test": "setdomainname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1077": {"test": "setfsgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1078": {"test": "setfsgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1079": {"test": "setfsgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1080": {"test": "setfsgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1081": {"test": "setfsgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1082": {"test": "setfsgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1083": {"test": "setfsuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1084": {"test": "setfsuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1085": {"test": "setfsuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1086": {"test": "setfsuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1087": {"test": "setfsuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1088": {"test": "setfsuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1089": {"test": "setfsuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1090": {"test": "setfsuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1091": {"test": "setgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1092": {"test": "setgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1093": {"test": "setgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1094": {"test": "setgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1095": {"test": "setgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1096": {"test": "setgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1097": {"test": "setegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1098": {"test": "setegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1099": {"test": "sgetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1100": {"test": "setgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1101": {"test": "setgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1102": {"test": "setgroups02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1103": {"test": "setgroups02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1104": {"test": "setgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1105": {"test": "setgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1106": {"test": "sethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1107": {"test": "sethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1108": {"test": "sethostname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1109": {"test": "setitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1110": {"test": "setitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1111": {"test": "setns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1112": {"test": "setns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1113": {"test": "setpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1114": {"test": "setpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1115": {"test": "setpgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1116": {"test": "setpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1117": {"test": "setpgrp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1118": {"test": "setpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1119": {"test": "setpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1120": {"test": "setregid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1121": {"test": "setregid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1122": {"test": "setregid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1123": {"test": "setregid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1124": {"test": "setregid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1125": {"test": "setregid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1126": {"test": "setregid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1127": {"test": "setregid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1128": {"test": "setresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1129": {"test": "setresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1130": {"test": "setresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1131": {"test": "setresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1132": {"test": "setresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1133": {"test": "setresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1134": {"test": "setresgid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1135": {"test": "setresgid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1136": {"test": "setresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1137": {"test": "setresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1138": {"test": "setresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1139": {"test": "setresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1140": {"test": "setresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1141": {"test": "setresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1142": {"test": "setresuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1143": {"test": "setresuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1144": {"test": "setresuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1145": {"test": "setresuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1146": {"test": "setreuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1147": {"test": "setreuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1148": {"test": "setreuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1149": {"test": "setreuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1150": {"test": "setreuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1151": {"test": "setreuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1152": {"test": "setreuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1153": {"test": "setreuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1154": {"test": "setreuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1155": {"test": "setreuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1156": {"test": "setreuid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1157": {"test": "setreuid06_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1158": {"test": "setreuid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1159": {"test": "setreuid07_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1160": {"test": "setrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1161": {"test": "setrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1162": {"test": "setrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1163": {"test": "setrlimit04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1164": {"test": "setrlimit05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1165": {"test": "setrlimit06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1166": {"test": "setsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1167": {"test": "setsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1168": {"test": "setsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1169": {"test": "setsockopt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1170": {"test": "setsockopt04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1171": {"test": "setsockopt05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1172": {"test": "setsockopt06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1173": {"test": "setsockopt07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1174": {"test": "setsockopt08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1175": {"test": "setsockopt09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1176": {"test": "setsockopt10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1177": {"test": "settimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1178": {"test": "settimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1179": {"test": "setuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1180": {"test": "setuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1181": {"test": "setuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1182": {"test": "setuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1183": {"test": "setuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1184": {"test": "setuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1185": {"test": "setxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1186": {"test": "setxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1187": {"test": "setxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1188": {"test": "shmat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1189": {"test": "shmat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1190": {"test": "shmat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1191": {"test": "shmat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1192": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1193": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1194": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1195": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1196": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1197": {"test": "shmctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1198": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1199": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1200": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1201": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1202": {"test": "shmget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1203": {"test": "shmget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1204": {"test": "shmget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1205": {"test": "shmget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1206": {"test": "shmget06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1207": {"test": "shutdown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1208": {"test": "shutdown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1209": {"test": "sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1210": {"test": "sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1211": {"test": "sigaltstack01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1212": {"test": "sigaltstack02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1213": {"test": "sighold02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1214": {"test": "signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1215": {"test": "signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1216": {"test": "signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1217": {"test": "signal04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1218": {"test": "signal05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1219": {"test": "signal06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1220": {"test": "signalfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1221": {"test": "signalfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1222": {"test": "signalfd4_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1223": {"test": "signalfd4_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1224": {"test": "sigpending02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1225": {"test": "sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1226": {"test": "sigrelse01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1227": {"test": "sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1228": {"test": "sigsuspend02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1229": {"test": "sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1230": {"test": "sigwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1231": {"test": "sigwaitinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1232": {"test": "socket01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1233": {"test": "socket02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1234": {"test": "socketcall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1235": {"test": "socketcall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1236": {"test": "socketcall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1237": {"test": "socketpair01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1238": {"test": "socketpair02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1239": {"test": "sockioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1240": {"test": "splice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1241": {"test": "splice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1242": {"test": "splice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1243": {"test": "splice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1244": {"test": "splice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1245": {"test": "splice06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1246": {"test": "splice07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1247": {"test": "splice08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1248": {"test": "splice09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1249": {"test": "tee01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1250": {"test": "tee02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1251": {"test": "ssetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1252": {"test": "stat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1253": {"test": "stat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1254": {"test": "stat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1255": {"test": "stat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1256": {"test": "stat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1257": {"test": "stat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1258": {"test": "stat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1259": {"test": "stat04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1260": {"test": "statmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1261": {"test": "statmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1262": {"test": "statmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1263": {"test": "statmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1264": {"test": "statmount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1265": {"test": "statmount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1266": {"test": "statmount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1267": {"test": "statmount08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1268": {"test": "statfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1269": {"test": "statfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1270": {"test": "statfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1271": {"test": "statfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1272": {"test": "statfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1273": {"test": "statfs03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1274": {"test": "statvfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1275": {"test": "statvfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1276": {"test": "stime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1277": {"test": "stime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1278": {"test": "string01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1279": {"test": "swapoff01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1280": {"test": "swapoff02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1281": {"test": "swapon01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1282": {"test": "swapon02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1283": {"test": "swapon03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1284": {"test": "switch01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1285": {"test": "symlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1286": {"test": "symlink02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1287": {"test": "symlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1288": {"test": "symlink04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1289": {"test": "symlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1290": {"test": "sync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1291": {"test": "syncfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1292": {"test": "sync_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1293": {"test": "sync_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1294": {"test": "syscall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1295": {"test": "sysconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1296": {"test": "sysctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1297": {"test": "sysctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1298": {"test": "sysctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1299": {"test": "sysfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1300": {"test": "sysfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1301": {"test": "sysfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1302": {"test": "sysfs04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1303": {"test": "sysfs05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1304": {"test": "sysinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1305": {"test": "sysinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1306": {"test": "sysinfo03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1307": {"test": "syslog11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1308": {"test": "syslog12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1309": {"test": "tgkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1310": {"test": "tgkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1311": {"test": "tgkill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1312": {"test": "time01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1313": {"test": "times01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1314": {"test": "times03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1315": {"test": "timerfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1316": {"test": "timerfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1317": {"test": "timerfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1318": {"test": "timerfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1319": {"test": "timerfd_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1320": {"test": "timerfd_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1321": {"test": "timerfd_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1322": {"test": "timer_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1323": {"test": "timer_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1324": {"test": "timer_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1325": {"test": "timer_delete01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1326": {"test": "timer_delete02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1327": {"test": "timer_getoverrun01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1328": {"test": "timer_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1329": {"test": "timer_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1330": {"test": "timer_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1331": {"test": "timer_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1332": {"test": "tkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1333": {"test": "tkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1334": {"test": "truncate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1335": {"test": "truncate02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1336": {"test": "truncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1337": {"test": "truncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1338": {"test": "ulimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1339": {"test": "umask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1340": {"test": "uname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1341": {"test": "uname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1342": {"test": "uname04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1343": {"test": "unlink01", "status": "pass", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "1344": {"test": "unlink05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1345": {"test": "unlink07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1346": {"test": "unlink08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1347": {"test": "unlink09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1348": {"test": "unlink10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1349": {"test": "unlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1350": {"test": "unshare01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1351": {"test": "unshare02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1352": {"test": "umount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1353": {"test": "umount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1354": {"test": "umount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1355": {"test": "umount2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1356": {"test": "umount2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1357": {"test": "userfaultfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1358": {"test": "ustat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1359": {"test": "ustat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1360": {"test": "utime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1361": {"test": "utime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1362": {"test": "utime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1363": {"test": "utime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1364": {"test": "utime05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1365": {"test": "utime06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1366": {"test": "utime07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1367": {"test": "utimes01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1368": {"test": "utimensat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1369": {"test": "vfork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1370": {"test": "vfork02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1371": {"test": "vhangup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1372": {"test": "vhangup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1373": {"test": "vmsplice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1374": {"test": "vmsplice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1375": {"test": "vmsplice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1376": {"test": "vmsplice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1377": {"test": "wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1378": {"test": "wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1379": {"test": "wait401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1380": {"test": "wait402", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1381": {"test": "wait403", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1382": {"test": "waitpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1383": {"test": "waitpid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1384": {"test": "waitpid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1385": {"test": "waitpid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1386": {"test": "waitpid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1387": {"test": "waitpid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1388": {"test": "waitpid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1389": {"test": "waitpid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1390": {"test": "waitpid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1391": {"test": "waitpid12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1392": {"test": "waitpid13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1393": {"test": "waitid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1394": {"test": "waitid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1395": {"test": "waitid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1396": {"test": "waitid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1397": {"test": "waitid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1398": {"test": "waitid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1399": {"test": "waitid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1400": {"test": "waitid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1401": {"test": "waitid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1402": {"test": "waitid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1403": {"test": "waitid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1404": {"test": "write01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1405": {"test": "write02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1406": {"test": "write03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1407": {"test": "write04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1408": {"test": "write05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1409": {"test": "write06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1410": {"test": "writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1411": {"test": "writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1412": {"test": "writev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1413": {"test": "writev05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1414": {"test": "writev06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1415": {"test": "writev07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1416": {"test": "perf_event_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1417": {"test": "perf_event_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1418": {"test": "futex_cmp_requeue01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1419": {"test": "futex_cmp_requeue02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1420": {"test": "futex_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1421": {"test": "futex_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1422": {"test": "futex_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1423": {"test": "futex_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1424": {"test": "futex_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1425": {"test": "futex_waitv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1426": {"test": "futex_waitv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1427": {"test": "futex_waitv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1428": {"test": "futex_wake01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1429": {"test": "futex_wake02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1430": {"test": "futex_wake03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1431": {"test": "futex_wake04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1432": {"test": "futex_wait_bitset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1433": {"test": "memfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1434": {"test": "memfd_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1435": {"test": "memfd_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1436": {"test": "memfd_create04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1437": {"test": "copy_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1438": {"test": "copy_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1439": {"test": "copy_file_range03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1440": {"test": "statx01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1441": {"test": "statx02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1442": {"test": "statx03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1443": {"test": "statx04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1444": {"test": "statx05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1445": {"test": "statx06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1446": {"test": "statx07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1447": {"test": "statx08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1448": {"test": "statx09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1449": {"test": "statx10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1450": {"test": "statx11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1451": {"test": "statx12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1452": {"test": "membarrier01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1453": {"test": "io_uring01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1454": {"test": "io_uring02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1455": {"test": "perf_event_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "summary": {"passed": 345, "failed": 0, "broken": 0, "skipped": 1434, "warnings": 0}}} 2026-07-07 14:04:32.642873 2026-07-07 13:49:10.43164 +364 12 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 7.96}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 260046848, "io_kbytes": 253952, "bw_bytes": 32652793, "bw": 31887, "iops": 15.570065, "runtime": 7964, "total_ios": 124, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1149000, "max": 6785858820, "mean": 59808530.241935, "stddev": 609056950.017567, "N": 124}, "clat_ns": {"min": 418080, "max": 71012150, "mean": 4311484.758065, "stddev": 13253074.371872, "N": 124, "percentile": {"1.000000": 444416, "5.000000": 552960, "10.000000": 585728, "20.000000": 618496, "30.000000": 651264, "40.000000": 684032, "50.000000": 700416, "60.000000": 733184, "70.000000": 806912, "80.000000": 987136, "90.000000": 1204224, "95.000000": 35913728, "99.000000": 67633152, "99.500000": 70778880, "99.900000": 70778880, "99.950000": 70778880, "99.990000": 70778880}}, "lat_ns": {"min": 1713020, "max": 6788306240, "mean": 64143638.629032, "stddev": 609028791.187202, "N": 124}, "bw_min": 16384, "bw_max": 235520, "bw_agg": 100.0, "bw_mean": 125952.0, "bw_dev": 154952.551602, "bw_samples": 2, "iops_min": 8, "iops_max": 115, "iops_mean": 61.5, "iops_stddev": 75.660426, "iops_samples": 2}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.376742, "sys_cpu": 1.042321, "ctx": 372, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 3.225806, "750": 58.870968, "1000": 18.548387}, "latency_ms": {"2": 11.290323, "4": 0.806452, "10": 0.0, "20": 0.0, "50": 3.225806, "100": 4.032258, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:15:21.473521 2026-07-04 11:58:54.192283 +365 12 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 222298112, "io_kbytes": 217088, "bw_bytes": 44273672, "bw": 43236, "iops": 21.111332, "runtime": 5021, "total_ios": 106, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 8120390, "max": 50360610, "mean": 30632165.471698, "stddev": 12019925.732662, "N": 106}, "clat_ns": {"min": 226660, "max": 36639840, "mean": 16578107.735849, "stddev": 10442491.879107, "N": 106, "percentile": {"1.000000": 309248, "5.000000": 4489216, "10.000000": 5406720, "20.000000": 6062080, "30.000000": 9371648, "40.000000": 11337728, "50.000000": 13041664, "60.000000": 16908288, "70.000000": 22413312, "80.000000": 30015488, "90.000000": 33161216, "95.000000": 34865152, "99.000000": 35389440, "99.500000": 36438016, "99.900000": 36438016, "99.950000": 36438016, "99.990000": 36438016}}, "lat_ns": {"min": 17667450, "max": 86308390, "mean": 47244423.207547, "stddev": 16965788.712372, "N": 106}, "bw_min": 26597, "bw_max": 61440, "bw_agg": 99.398631, "bw_mean": 42976.8, "bw_dev": 13201.633562, "bw_samples": 5, "iops_min": 12, "iops_max": 30, "iops_mean": 20.2, "iops_stddev": 6.797058, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.358494, "sys_cpu": 3.445529, "ctx": 463, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.943396, "500": 2.830189, "750": 0.943396, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 26.415094, "20": 33.018868, "50": 35.849057, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:15:37.449533 2026-07-04 11:58:54.192283 +366 12 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 278921216, "io_kbytes": 272384, "bw_bytes": 55661787, "bw": 54357, "iops": 26.541608, "runtime": 5011, "total_ios": 133, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1184960, "max": 42578260, "mean": 22086421.503759, "stddev": 12958664.727663, "N": 133}, "clat_ns": {"min": 29670, "max": 38710860, "mean": 15440161.954887, "stddev": 9696128.255797, "N": 133, "percentile": {"1.000000": 246784, "5.000000": 403456, "10.000000": 473088, "20.000000": 708608, "30.000000": 13041664, "40.000000": 13697024, "50.000000": 19529728, "60.000000": 21889024, "70.000000": 21889024, "80.000000": 22413312, "90.000000": 23724032, "95.000000": 29491200, "99.000000": 34865152, "99.500000": 38535168, "99.900000": 38535168, "99.950000": 38535168, "99.990000": 38535168}}, "lat_ns": {"min": 1570280, "max": 75554950, "mean": 37564555.56391, "stddev": 21510831.122095, "N": 133}, "bw_min": 49053, "bw_max": 57344, "bw_agg": 99.388832, "bw_mean": 54025.8, "bw_dev": 3468.912827, "bw_samples": 5, "iops_min": 23, "iops_max": 28, "iops_mean": 25.8, "iops_stddev": 2.167948, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.8182, "sys_cpu": 3.572141, "ctx": 525, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.75188, "100": 0.0, "250": 0.75188, "500": 9.022556, "750": 10.526316, "1000": 0.0}, "latency_ms": {"2": 0.75188, "4": 0.0, "10": 7.518797, "20": 22.556391, "50": 48.120301, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:16:31.644197 2026-07-04 11:58:54.192283 +367 12 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.12}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 362807296, "io_kbytes": 354304, "bw_bytes": 70874642, "bw": 69213, "iops": 33.795663, "runtime": 5119, "total_ios": 173, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1033180, "max": 486377830, "mean": 28593316.705202, "stddev": 63241389.149199, "N": 173}, "clat_ns": {"min": 324300, "max": 26146280, "mean": 905970.578035, "stddev": 2715590.643903, "N": 173, "percentile": {"1.000000": 342016, "5.000000": 358400, "10.000000": 370688, "20.000000": 395264, "30.000000": 444416, "40.000000": 505856, "50.000000": 569344, "60.000000": 634880, "70.000000": 708608, "80.000000": 806912, "90.000000": 946176, "95.000000": 1011712, "99.000000": 25559040, "99.500000": 26083328, "99.900000": 26083328, "99.950000": 26083328, "99.990000": 26083328}}, "lat_ns": {"min": 1390340, "max": 487232060, "mean": 29519882.543353, "stddev": 63274658.617931, "N": 173}, "bw_min": 30720, "bw_max": 204595, "bw_agg": 100.0, "bw_mean": 70401.6, "bw_dev": 75266.698648, "bw_samples": 5, "iops_min": 15, "iops_max": 99, "iops_mean": 34.0, "iops_stddev": 36.441734, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.644657, "sys_cpu": 2.012112, "ctx": 519, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 38.150289, "750": 36.416185, "1000": 19.075145}, "latency_ms": {"2": 4.624277, "4": 0.578035, "10": 0.0, "20": 0.0, "50": 1.156069, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:17:26.570743 2026-07-04 11:58:54.192283 +558 16 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-06 10:10:11' --until '2026-07-06 10:10:12' 0 OOM records 2026-07-06 10:10:11.825255 2026-07-06 10:10:12.26411 +559 16 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-06 10:10:11' --until '2026-07-06 10:10:12' 0 systemd errors records 2026-07-06 10:10:11.825255 2026-07-06 10:10:12.26411 +560 16 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-06 10:07:12.467982 2026-07-06 10:07:12.467987 +561 16 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-06 10:10:28.206523 2026-07-06 10:10:28.206526 +562 16 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-06 10:10:13' --until '2026-07-06 10:10:27' 0 OOM records 2026-07-06 10:10:13.538671 2026-07-06 10:10:27.78635 +605 19 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 14:05:20.333722 2026-07-07 14:05:20.333726 +368 12 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 11.49}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 276824064, "io_kbytes": 270336, "bw_bytes": 24094704, "bw": 23529, "iops": 5.744625, "runtime": 11489, "total_ios": 66, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2109820, "max": 9688897060, "mean": 172389809.848485, "stddev": 1190217709.035581, "N": 66}, "clat_ns": {"min": 16270, "max": 31460850, "mean": 1485913.333333, "stddev": 5318987.272229, "N": 66, "percentile": {"1.000000": 16320, "5.000000": 29312, "10.000000": 391168, "20.000000": 423936, "30.000000": 440320, "40.000000": 456704, "50.000000": 493568, "60.000000": 528384, "70.000000": 651264, "80.000000": 757760, "90.000000": 954368, "95.000000": 1335296, "99.000000": 31588352, "99.500000": 31588352, "99.900000": 31588352, "99.950000": 31588352, "99.990000": 31588352}}, "lat_ns": {"min": 2540100, "max": 9689587820, "mean": 173948304.242424, "stddev": 1190124848.151699, "N": 66}, "bw_min": 45056, "bw_max": 221184, "bw_agg": 100.0, "bw_mean": 133120.0, "bw_dev": 124541.303157, "bw_samples": 2, "iops_min": 11, "iops_max": 54, "iops_mean": 32.5, "iops_stddev": 30.405592, "iops_samples": 2}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.356894, "sys_cpu": 0.383008, "ctx": 265, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 4.545455, "50": 1.515152, "100": 0.0, "250": 0.0, "500": 45.454545, "750": 27.272727, "1000": 13.636364}, "latency_ms": {"2": 4.545455, "4": 0.0, "10": 0.0, "20": 0.0, "50": 3.030303, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:17:38.776766 2026-07-04 11:58:54.192283 +369 12 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 176160768, "io_kbytes": 172032, "bw_bytes": 35126773, "bw": 34303, "iops": 8.374875, "runtime": 5015, "total_ios": 42, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 27390670, "max": 147090890, "mean": 85683690.47619, "stddev": 32962842.940286, "N": 42}, "clat_ns": {"min": 2798710, "max": 65626290, "mean": 33456735.47619, "stddev": 13568547.105081, "N": 42, "percentile": {"1.000000": 2801664, "5.000000": 16580608, "10.000000": 21364736, "20.000000": 22151168, "30.000000": 26083328, "40.000000": 27918336, "50.000000": 31064064, "60.000000": 35389440, "70.000000": 39059456, "80.000000": 40632320, "90.000000": 48496640, "95.000000": 64225280, "99.000000": 65798144, "99.500000": 65798144, "99.900000": 65798144, "99.950000": 65798144, "99.990000": 65798144}}, "lat_ns": {"min": 41649070, "max": 186470150, "mean": 119192603.809524, "stddev": 36132026.500672, "N": 42}, "bw_min": 24576, "bw_max": 45010, "bw_agg": 97.847189, "bw_mean": 33565.6, "bw_dev": 7867.473057, "bw_samples": 5, "iops_min": 6, "iops_max": 10, "iops_mean": 7.6, "iops_stddev": 1.81659, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.398804, "sys_cpu": 1.375872, "ctx": 162, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 2.380952, "10": 0.0, "20": 7.142857, "50": 80.952381, "100": 9.52381, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:17:57.493792 2026-07-04 11:58:54.192283 +370 12 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 301989888, "io_kbytes": 294912, "bw_bytes": 60121419, "bw": 58712, "iops": 14.334063, "runtime": 5023, "total_ios": 72, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1820030, "max": 113024810, "mean": 57137124.166667, "stddev": 31784365.202719, "N": 72}, "clat_ns": {"min": 184290, "max": 34936070, "mean": 12386794.861111, "stddev": 8603830.316763, "N": 72, "percentile": {"1.000000": 183296, "5.000000": 272384, "10.000000": 561152, "20.000000": 5079040, "30.000000": 7569408, "40.000000": 8290304, "50.000000": 11337728, "60.000000": 13828096, "70.000000": 16318464, "80.000000": 21626880, "90.000000": 24248320, "95.000000": 26083328, "99.000000": 34865152, "99.500000": 34865152, "99.900000": 34865152, "99.950000": 34865152, "99.990000": 34865152}}, "lat_ns": {"min": 2282820, "max": 140201890, "mean": 69573587.083333, "stddev": 37298001.337164, "N": 72}, "bw_min": 53194, "bw_max": 61378, "bw_agg": 98.98433, "bw_mean": 58116.0, "bw_dev": 3420.243266, "bw_samples": 5, "iops_min": 12, "iops_max": 14, "iops_mean": 13.4, "iops_stddev": 0.894427, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.219036, "sys_cpu": 2.847471, "ctx": 377, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 4.166667, "500": 4.166667, "750": 8.333333, "1000": 1.388889}, "latency_ms": {"2": 0.0, "4": 1.388889, "10": 23.611111, "20": 29.166667, "50": 27.777778, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:19:04.795475 2026-07-04 11:58:54.192283 +371 12 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260704-171012Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.14}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 364904448, "io_kbytes": 356352, "bw_bytes": 71020717, "bw": 69356, "iops": 16.932659, "runtime": 5138, "total_ios": 87, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1853520, "max": 1186048810, "mean": 45751663.793103, "stddev": 139081232.219769, "N": 87}, "clat_ns": {"min": 482760, "max": 276832160, "mean": 13170151.609195, "stddev": 39548356.30218, "N": 87, "percentile": {"1.000000": 481280, "5.000000": 569344, "10.000000": 602112, "20.000000": 659456, "30.000000": 700416, "40.000000": 749568, "50.000000": 913408, "60.000000": 1011712, "70.000000": 1187840, "80.000000": 1482752, "90.000000": 55836672, "95.000000": 88604672, "99.000000": 278921216, "99.500000": 278921216, "99.900000": 278921216, "99.950000": 278921216, "99.990000": 278921216}}, "lat_ns": {"min": 2387920, "max": 1186991910, "mean": 58949943.218391, "stddev": 141679289.99936, "N": 87}, "bw_min": 4091, "bw_max": 233472, "bw_agg": 100.0, "bw_mean": 70436.0, "bw_dev": 92707.140262, "bw_samples": 5, "iops_min": 0, "iops_max": 57, "iops_mean": 16.6, "iops_stddev": 23.006521, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.661865, "sys_cpu": 1.537863, "ctx": 349, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 1.149425, "750": 39.08046, "1000": 18.390805}, "latency_ms": {"2": 24.137931, "4": 4.597701, "10": 0.0, "20": 0.0, "50": 1.149425, "100": 6.896552, "250": 3.448276, "500": 1.149425, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:20:09.203338 2026-07-04 11:58:54.192283 +563 16 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-06 10:10:13' --until '2026-07-06 10:10:27' 0 systemd errors records 2026-07-06 10:10:13.538671 2026-07-06 10:10:27.78635 +606 19 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 14:04:32' --until '2026-07-07 14:05:19' 0 OOM records 2026-07-07 14:04:32.302832 2026-07-07 14:05:19.77785 +607 19 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 14:04:32' --until '2026-07-07 14:05:19' 0 systemd errors records 2026-07-07 14:04:32.302832 2026-07-07 14:05:19.77785 +1115 49 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:16:53.369501 2026-07-20 20:16:53.369505 +372 12 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8924160, "io_kbytes": 8715, "bw_bytes": 1784475, "bw": 1742, "iops": 3485.302939, "runtime": 5001, "total_ios": 17430, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 105750, "max": 2191750, "mean": 152322.810098, "stddev": 82422.257145, "N": 17430}, "clat_ns": {"min": 6510, "max": 10352550, "mean": 108305.730924, "stddev": 134885.54092, "N": 17430, "percentile": {"1.000000": 7328, "5.000000": 7904, "10.000000": 9152, "20.000000": 97792, "30.000000": 103936, "40.000000": 108032, "50.000000": 111104, "60.000000": 114176, "70.000000": 119296, "80.000000": 129536, "90.000000": 148480, "95.000000": 164864, "99.000000": 203776, "99.500000": 248832, "99.900000": 684032, "99.950000": 1564672, "99.990000": 9633792}}, "lat_ns": {"min": 178480, "max": 10472070, "mean": 268857.13712, "stddev": 140988.652705, "N": 17430}, "bw_min": 1653, "bw_max": 1803, "bw_agg": 99.044481, "bw_mean": 1726.75, "bw_dev": 79.726094, "bw_samples": 4, "iops_min": 3308, "iops_max": 3607, "iops_mean": 3454.75, "iops_stddev": 159.669189, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 6.7, "sys_cpu": 63.58, "ctx": 17313, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.059667, "20": 1.038439, "50": 0.114745, "100": 9.592656, "250": 76.712565, "500": 0.361446, "750": 0.034423, "1000": 0.028686}, "latency_ms": {"2": 0.017212, "4": 0.022949, "10": 0.011474, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:20:26.849959 2026-07-04 11:58:54.192283 +373 12 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 9002496, "io_kbytes": 8791, "bw_bytes": 1800499, "bw": 1758, "iops": 3516.6, "runtime": 5000, "total_ios": 17583, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 52120, "max": 20882650, "mean": 127497.321845, "stddev": 223468.784667, "N": 17583}, "clat_ns": {"min": 6380, "max": 38501040, "mean": 123097.082978, "stddev": 729955.422779, "N": 17583, "percentile": {"1.000000": 9920, "5.000000": 37632, "10.000000": 40192, "20.000000": 46336, "30.000000": 55040, "40.000000": 59136, "50.000000": 64768, "60.000000": 75264, "70.000000": 81408, "80.000000": 91648, "90.000000": 110080, "95.000000": 142336, "99.000000": 1433600, "99.500000": 2834432, "99.900000": 8355840, "99.950000": 14090240, "99.990000": 38535168}}, "lat_ns": {"min": 149450, "max": 38611420, "mean": 263065.363135, "stddev": 764269.136322, "N": 17583}, "bw_min": 1497, "bw_max": 2022, "bw_agg": 93.385667, "bw_mean": 1642.5, "bw_dev": 253.356797, "bw_samples": 4, "iops_min": 2995, "iops_max": 4045, "iops_mean": 3285.75, "iops_stddev": 506.867093, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 7.12, "sys_cpu": 59.54, "ctx": 17237, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 1.023716, "20": 1.029403, "50": 20.917932, "100": 62.458056, "250": 12.4609, "500": 0.403799, "750": 0.318489, "1000": 0.125121}, "latency_ms": {"2": 0.500483, "4": 0.432236, "10": 0.255929, "20": 0.045498, "50": 0.028437, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:20:38.632926 2026-07-04 11:58:54.192283 +374 12 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 5554176, "io_kbytes": 5424, "bw_bytes": 1109947, "bw": 1083, "iops": 2167.865707, "runtime": 5004, "total_ios": 10848, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 65460, "max": 4172350, "mean": 120244.393437, "stddev": 44404.903133, "N": 10848}, "clat_ns": {"min": 6870, "max": 32626510, "mean": 313040.043326, "stddev": 785031.124233, "N": 10848, "percentile": {"1.000000": 39680, "5.000000": 52992, "10.000000": 57600, "20.000000": 76288, "30.000000": 90624, "40.000000": 321536, "50.000000": 378880, "60.000000": 382976, "70.000000": 391168, "80.000000": 399360, "90.000000": 415744, "95.000000": 436224, "99.000000": 913408, "99.500000": 3129344, "99.900000": 6324224, "99.950000": 28704768, "99.990000": 32374784}}, "lat_ns": {"min": 161590, "max": 32818300, "mean": 441025.611173, "stddev": 789014.279186, "N": 10848}, "bw_min": 804, "bw_max": 1180, "bw_agg": 100.0, "bw_mean": 1084.0, "bw_dev": 158.76555, "bw_samples": 5, "iops_min": 1608, "iops_max": 2361, "iops_mean": 2168.6, "iops_stddev": 317.923418, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.556355, "sys_cpu": 35.811351, "ctx": 10677, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.387168, "20": 0.129056, "50": 2.839233, "100": 29.378687, "250": 6.766224, "500": 58.766593, "750": 0.543879, "1000": 0.212021}, "latency_ms": {"2": 0.175147, "4": 0.608407, "10": 0.138274, "20": 0.0, "50": 0.05531, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:22:20.707727 2026-07-04 11:58:54.192283 +375 12 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4965376, "io_kbytes": 4849, "bw_bytes": 992876, "bw": 969, "iops": 1939.212158, "runtime": 5001, "total_ios": 9698, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 117240, "max": 3842040, "mean": 478922.246855, "stddev": 107053.07987, "N": 9698}, "clat_ns": {"min": 6970, "max": 879580, "mean": 9948.099608, "stddev": 20021.291311, "N": 9698, "percentile": {"1.000000": 7200, "5.000000": 7328, "10.000000": 7328, "20.000000": 7392, "30.000000": 7456, "40.000000": 7520, "50.000000": 7520, "60.000000": 7584, "70.000000": 7712, "80.000000": 7840, "90.000000": 8256, "95.000000": 10304, "99.000000": 118272, "99.500000": 138240, "99.900000": 214016, "99.950000": 329728, "99.990000": 880640}}, "lat_ns": {"min": 218400, "max": 4565910, "mean": 496809.234894, "stddev": 107428.7575, "N": 9698}, "bw_min": 951, "bw_max": 1006, "bw_agg": 100.0, "bw_mean": 971.25, "bw_dev": 25.064916, "bw_samples": 4, "iops_min": 1902, "iops_max": 2013, "iops_mean": 1943.5, "iops_stddev": 50.428167, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.74, "sys_cpu": 81.92, "ctx": 9620, "majf": 0, "minf": 16, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 94.823675, "20": 3.413075, "50": 0.257785, "100": 0.14436, "250": 1.299237, "500": 0.030934, "750": 0.020623, "1000": 0.010311}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:23:35.463472 2026-07-04 11:58:54.192283 +494 13 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 0 --vm-method all --vm-bytes 95% --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 229.35}, "metrics": {"0": {"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 40.23, "usr_time_secs": 0.43, "sys_time_secs": 2.65, "bogo_ops_s_real_time": 56.48, "bogo_ops_s_usr_sys_time": 737.76, "cpu_used_per_instance": 1.91, "rss_max_kb": 4876, "top10_slowest": [["syslog", 924041983.5, 837012531, 1011071436], ["sync", 308502649.0, 63583512, 553421786], ["pwritev2", 141149248.5, 117862796, 164435701], ["execve", 83680003.5, 75416745, 91943262], ["fsync", 77720967.5, 3491005, 151950930], ["fdatasync", 75120365.0, 13860386, 136380344], ["syncfs", 57304594.0, 21089322, 93519866], ["clone3", 52304612.0, 1923402, 102685822], ["execveat", 45535468.5, 22609329, 68461608], ["waitpid", 38155804.5, 746482, 75565127]]}, "1": {"stressor": "vm", "bogo_ops": 0, "real_time_secs": 39.2, "usr_time_secs": 13.23, "sys_time_secs": 133.61, "bogo_ops_s_real_time": 0.0, "bogo_ops_s_usr_sys_time": 0.0, "cpu_used_per_instance": 93.64, "rss_max_kb": 480120, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:26:32.409703 2026-07-04 18:12:49.185895 +495 13 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 18:27:15.448474 2026-07-04 18:27:15.448477 +376 12 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 49541120, "io_kbytes": 48380, "bw_bytes": 9906242, "bw": 9674, "iops": 2418.516297, "runtime": 5001, "total_ios": 12095, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 301490, "max": 3707460, "mean": 376610.840843, "stddev": 60077.377534, "N": 12095}, "clat_ns": {"min": 7230, "max": 526330, "mean": 8458.643241, "stddev": 5658.507649, "N": 12095, "percentile": {"1.000000": 7520, "5.000000": 7584, "10.000000": 7648, "20.000000": 7712, "30.000000": 7776, "40.000000": 7840, "50.000000": 7904, "60.000000": 7968, "70.000000": 8160, "80.000000": 8640, "90.000000": 9152, "95.000000": 10048, "99.000000": 15424, "99.500000": 17536, "99.900000": 66048, "99.950000": 82432, "99.990000": 132096}}, "lat_ns": {"min": 315900, "max": 3733690, "mean": 393070.210831, "stddev": 65114.529516, "N": 12095}, "bw_min": 9448, "bw_max": 9820, "bw_agg": 99.461814, "bw_mean": 9622.5, "bw_dev": 158.470818, "bw_samples": 4, "iops_min": 2364, "iops_max": 2455, "iops_mean": 2405.75, "iops_stddev": 39.109888, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 5.14, "sys_cpu": 76.24, "ctx": 12001, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 95.031005, "20": 4.613477, "50": 0.231501, "100": 0.090947, "250": 0.024804, "500": 0.0, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:23:47.933597 2026-07-04 11:58:54.192283 +377 12 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 68321280, "io_kbytes": 66720, "bw_bytes": 13664256, "bw": 13344, "iops": 3336.0, "runtime": 5000, "total_ios": 16680, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 64050, "max": 3682700, "mean": 120269.297362, "stddev": 35789.501404, "N": 16680}, "clat_ns": {"min": 6070, "max": 8103420, "mean": 148522.495803, "stddev": 520938.511248, "N": 16680, "percentile": {"1.000000": 9664, "5.000000": 36608, "10.000000": 40192, "20.000000": 50944, "30.000000": 55040, "40.000000": 59136, "50.000000": 69120, "60.000000": 74240, "70.000000": 80384, "80.000000": 92672, "90.000000": 121344, "95.000000": 342016, "99.000000": 2211840, "99.500000": 3948544, "99.900000": 7569408, "99.950000": 7831552, "99.990000": 8093696}}, "lat_ns": {"min": 138180, "max": 8223640, "mean": 279524.923861, "stddev": 523884.255622, "N": 16680}, "bw_min": 9758, "bw_max": 14600, "bw_agg": 89.628297, "bw_mean": 11960.5, "bw_dev": 2272.585825, "bw_samples": 4, "iops_min": 2439, "iops_max": 3650, "iops_mean": 2990.25, "iops_stddev": 568.080027, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 7.04, "sys_cpu": 53.72, "ctx": 15960, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 1.03717, "20": 0.653477, "50": 16.618705, "100": 65.491607, "250": 10.227818, "500": 2.074341, "750": 1.528777, "1000": 0.485612}, "latency_ms": {"2": 0.317746, "4": 1.079137, "10": 0.485612, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:23:59.829248 2026-07-04 11:58:54.192283 +378 12 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 38162432, "io_kbytes": 37268, "bw_bytes": 7623338, "bw": 7444, "iops": 1861.1666, "runtime": 5006, "total_ios": 9317, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 98960, "max": 1299870, "mean": 125327.30278, "stddev": 28966.634702, "N": 9317}, "clat_ns": {"min": 6190, "max": 152187410, "mean": 380026.645916, "stddev": 1719984.842863, "N": 9317, "percentile": {"1.000000": 27008, "5.000000": 49920, "10.000000": 54528, "20.000000": 68096, "30.000000": 79360, "40.000000": 116224, "50.000000": 489472, "60.000000": 501760, "70.000000": 514048, "80.000000": 528384, "90.000000": 552960, "95.000000": 577536, "99.000000": 724992, "99.500000": 1712128, "99.900000": 6651904, "99.950000": 13041664, "99.990000": 152043520}}, "lat_ns": {"min": 138950, "max": 152310300, "mean": 514107.542127, "stddev": 1720391.89487, "N": 9317}, "bw_min": 6077, "bw_max": 8208, "bw_agg": 100.0, "bw_mean": 7450.6, "bw_dev": 827.694267, "bw_samples": 5, "iops_min": 1519, "iops_max": 2052, "iops_mean": 1863.0, "iops_stddev": 207.117117, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 6.232521, "sys_cpu": 30.063923, "ctx": 8978, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.536653, "20": 0.41859, "50": 4.185897, "100": 32.124074, "250": 4.786949, "500": 14.918965, "750": 42.084362, "1000": 0.300526}, "latency_ms": {"2": 0.182462, "4": 0.171729, "10": 0.225394, "20": 0.021466, "50": 0.032199, "100": 0.0, "250": 0.010733, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:25:33.911807 2026-07-04 11:58:54.192283 +379 12 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 38920192, "io_kbytes": 38008, "bw_bytes": 7782481, "bw": 7600, "iops": 1900.019996, "runtime": 5001, "total_ios": 9502, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 124510, "max": 9604290, "mean": 488615.607241, "stddev": 138356.245755, "N": 9502}, "clat_ns": {"min": 7100, "max": 420570, "mean": 8454.998948, "stddev": 7081.073219, "N": 9502, "percentile": {"1.000000": 7328, "5.000000": 7456, "10.000000": 7520, "20.000000": 7648, "30.000000": 7712, "40.000000": 7776, "50.000000": 7840, "60.000000": 7904, "70.000000": 7968, "80.000000": 8160, "90.000000": 8640, "95.000000": 10176, "99.000000": 15936, "99.500000": 18304, "99.900000": 95744, "99.950000": 156672, "99.990000": 419840}}, "lat_ns": {"min": 275120, "max": 10369820, "mean": 505107.86887, "stddev": 144250.099182, "N": 9502}, "bw_min": 7408, "bw_max": 7908, "bw_agg": 100.0, "bw_mean": 7693.0, "bw_dev": 211.74513, "bw_samples": 4, "iops_min": 1852, "iops_max": 1977, "iops_mean": 1923.25, "iops_stddev": 52.936282, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.24, "sys_cpu": 81.7, "ctx": 9421, "majf": 0, "minf": 16, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 94.801095, "20": 4.756893, "50": 0.221006, "100": 0.126289, "250": 0.073669, "500": 0.021048, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:26:57.862133 2026-07-04 11:58:54.192283 +496 13 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:26:32' --until '2026-07-04 18:27:14' 0 OOM records 2026-07-04 18:26:32.123624 2026-07-04 18:27:14.867077 +497 13 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:26:32' --until '2026-07-04 18:27:14' 0 systemd errors records 2026-07-04 18:26:32.123624 2026-07-04 18:27:14.867077 +608 20 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-07 14:25:23.396205 2026-07-07 14:25:23.396212 +380 12 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 7.07}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 218103808, "io_kbytes": 212992, "bw_bytes": 30862290, "bw": 30138, "iops": 14.716287, "runtime": 7067, "total_ios": 104, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2115590, "max": 5075919770, "mean": 67804585.384615, "stddev": 500529579.272125, "N": 104}, "clat_ns": {"min": 9900, "max": 536910, "mean": 20140.961538, "stddev": 51420.936266, "N": 104, "percentile": {"1.000000": 10048, "5.000000": 10304, "10.000000": 10304, "20.000000": 10688, "30.000000": 11456, "40.000000": 12224, "50.000000": 13888, "60.000000": 15680, "70.000000": 16768, "80.000000": 18048, "90.000000": 22400, "95.000000": 26240, "99.000000": 35584, "99.500000": 536576, "99.900000": 536576, "99.950000": 536576, "99.990000": 536576}}, "lat_ns": {"min": 2135730, "max": 5077176960, "mean": 67861617.884615, "stddev": 500648924.464556, "N": 104}, "bw_min": 10229, "bw_max": 200503, "bw_agg": 100.0, "bw_mean": 105366.0, "bw_dev": 134544.035683, "bw_samples": 2, "iops_min": 4, "iops_max": 97, "iops_mean": 50.5, "iops_stddev": 65.760931, "iops_samples": 2}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.353757, "sys_cpu": 1.330126, "ctx": 417, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.961538, "20": 85.576923, "50": 12.5, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.961538, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:27:10.024382 2026-07-04 11:58:54.192283 +381 12 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 182452224, "io_kbytes": 178176, "bw_bytes": 36410342, "bw": 35556, "iops": 17.361804, "runtime": 5011, "total_ios": 87, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 926460, "max": 33467780, "mean": 16959188.275862, "stddev": 8161598.484952, "N": 87}, "clat_ns": {"min": 9996900, "max": 448183930, "mean": 40461930.114943, "stddev": 45548896.178461, "N": 87, "percentile": {"1.000000": 10027008, "5.000000": 14352384, "10.000000": 15138816, "20.000000": 26083328, "30.000000": 30015488, "40.000000": 38535168, "50.000000": 39059456, "60.000000": 40108032, "70.000000": 43253760, "80.000000": 45875200, "90.000000": 46923776, "95.000000": 47972352, "99.000000": 446693376, "99.500000": 446693376, "99.900000": 446693376, "99.950000": 446693376, "99.990000": 446693376}}, "lat_ns": {"min": 16683630, "max": 469883350, "mean": 57457008.62069, "stddev": 46887623.372561, "N": 87}, "bw_min": 22528, "bw_max": 47009, "bw_agg": 98.956676, "bw_mean": 35186.4, "bw_dev": 10048.000015, "bw_samples": 5, "iops_min": 11, "iops_max": 22, "iops_mean": 16.6, "iops_stddev": 4.615192, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.259481, "sys_cpu": 2.215569, "ctx": 185, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 1.149425, "20": 13.793103, "50": 82.758621, "100": 1.149425, "250": 0.0, "500": 1.149425, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:27:24.122453 2026-07-04 11:58:54.192283 +382 12 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.06}, "metrics": {"read": {"io_bytes": 264241152, "io_kbytes": 258048, "bw_bytes": 52262886, "bw": 51037, "iops": 24.920886, "runtime": 5056, "total_ios": 126, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 971050, "max": 40859190, "mean": 22876786.825397, "stddev": 12192147.733205, "N": 126}, "clat_ns": {"min": 18580, "max": 31145640, "mean": 17083105.238095, "stddev": 9365696.636587, "N": 126, "percentile": {"1.000000": 33024, "5.000000": 522240, "10.000000": 634880, "20.000000": 7700480, "30.000000": 13697024, "40.000000": 19529728, "50.000000": 21626880, "60.000000": 22151168, "70.000000": 22413312, "80.000000": 22937600, "90.000000": 27656192, "95.000000": 29491200, "99.000000": 30801920, "99.500000": 31064064, "99.900000": 31064064, "99.950000": 31064064, "99.990000": 31064064}}, "lat_ns": {"min": 1507380, "max": 70475740, "mean": 40002580.555556, "stddev": 19946268.273987, "N": 126}, "bw_min": 49152, "bw_max": 53248, "bw_agg": 100.0, "bw_mean": 51178.8, "bw_dev": 2034.662429, "bw_samples": 5, "iops_min": 24, "iops_max": 26, "iops_mean": 24.6, "iops_stddev": 0.894427, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.375791, "sys_cpu": 3.639241, "ctx": 498, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.793651, "50": 0.793651, "100": 0.0, "250": 0.793651, "500": 1.587302, "750": 11.111111, "1000": 2.380952}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 6.349206, "20": 20.634921, "50": 55.555556, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:29:40.862986 2026-07-04 11:58:54.192283 +383 12 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 322961408, "io_kbytes": 315392, "bw_bytes": 64411928, "bw": 62902, "iops": 30.714001, "runtime": 5014, "total_ios": 154, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1651840, "max": 376316270, "mean": 32445186.883117, "stddev": 56420934.804629, "N": 154}, "clat_ns": {"min": 9130, "max": 350360, "mean": 19533.701299, "stddev": 29859.551497, "N": 154, "percentile": {"1.000000": 9280, "5.000000": 9536, "10.000000": 9664, "20.000000": 9920, "30.000000": 10176, "40.000000": 10944, "50.000000": 12480, "60.000000": 16064, "70.000000": 19840, "80.000000": 25216, "90.000000": 28544, "95.000000": 34560, "99.000000": 144384, "99.500000": 350208, "99.900000": 350208, "99.950000": 350208, "99.990000": 350208}}, "lat_ns": {"min": 1672360, "max": 376389670, "mean": 32487672.532468, "stddev": 56436073.360752, "N": 154}, "bw_min": 14336, "bw_max": 200503, "bw_agg": 99.541712, "bw_mean": 62614.6, "bw_dev": 77546.639155, "bw_samples": 5, "iops_min": 7, "iops_max": 97, "iops_mean": 30.0, "iops_stddev": 37.64306, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.85777, "sys_cpu": 3.091961, "ctx": 552, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 24.025974, "20": 46.103896, "50": 28.571429, "100": 0.0, "250": 0.649351, "500": 0.649351, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:30:45.012316 2026-07-04 11:58:54.192283 +564 16 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 50% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 15.29}, "metrics": {"0": {"bogo_ops": 1179, "real_time_secs": 11.06, "usr_time_secs": 1.21, "sys_time_secs": 3.02, "bogo_ops_s_real_time": 106.63, "bogo_ops_s_usr_sys_time": 278.17, "cpu_used_per_instance": 9.58, "rss_max_kb": 2136, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-06 10:10:29.264915 2026-07-06 10:07:12.467987 +609 20 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 14:28:55.729922 2026-07-07 14:28:55.729926 +384 12 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 15.14}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 255852544, "io_kbytes": 249856, "bw_bytes": 16899111, "bw": 16503, "iops": 4.029062, "runtime": 15140, "total_ios": 61, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2505090, "max": 12886110670, "mean": 248024390.655738, "stddev": 1653182152.230182, "N": 61}, "clat_ns": {"min": 14240, "max": 391210, "mean": 31520.655738, "stddev": 51653.430343, "N": 61, "percentile": {"1.000000": 14272, "5.000000": 15680, "10.000000": 16064, "20.000000": 17024, "30.000000": 17792, "40.000000": 19072, "50.000000": 19840, "60.000000": 21888, "70.000000": 23936, "80.000000": 27008, "90.000000": 34048, "95.000000": 49920, "99.000000": 391168, "99.500000": 391168, "99.900000": 391168, "99.950000": 391168, "99.990000": 391168}}, "lat_ns": {"min": 2531230, "max": 12886170000, "mean": 248089931.639344, "stddev": 1653185224.497472, "N": 61}, "bw_min": 4096, "bw_max": 241664, "bw_agg": 100.0, "bw_mean": 122880.0, "bw_dev": 167985.943793, "bw_samples": 2, "iops_min": 1, "iops_max": 59, "iops_mean": 30.0, "iops_stddev": 41.012193, "iops_samples": 2}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.231176, "sys_cpu": 0.396301, "ctx": 281, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 50.819672, "50": 44.262295, "100": 0.0, "250": 3.278689, "500": 1.639344, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:30:56.825654 2026-07-04 11:58:54.192283 +385 12 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.08}, "metrics": {"read": {"io_bytes": 213909504, "io_kbytes": 208896, "bw_bytes": 42108170, "bw": 41121, "iops": 10.03937, "runtime": 5080, "total_ios": 51, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 47994690, "max": 127243720, "mean": 87402987.647059, "stddev": 15841951.081426, "N": 51}, "clat_ns": {"min": 24350, "max": 31978210, "mean": 11944073.72549, "stddev": 9967528.096845, "N": 51, "percentile": {"1.000000": 24448, "5.000000": 284672, "10.000000": 2539520, "20.000000": 5275648, "30.000000": 5537792, "40.000000": 5996544, "50.000000": 6651904, "60.000000": 10682368, "70.000000": 14090240, "80.000000": 23986176, "90.000000": 28704768, "95.000000": 30539776, "99.000000": 31850496, "99.500000": 31850496, "99.900000": 31850496, "99.950000": 31850496, "99.990000": 31850496}}, "lat_ns": {"min": 55298170, "max": 154867000, "mean": 99411753.137255, "stddev": 22243441.329133, "N": 51}, "bw_min": 28672, "bw_max": 53248, "bw_agg": 99.588389, "bw_mean": 40952.6, "bw_dev": 10036.899212, "bw_samples": 5, "iops_min": 7, "iops_max": 13, "iops_mean": 9.8, "iops_stddev": 2.588436, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.19685, "sys_cpu": 2.61811, "ctx": 290, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.960784, "100": 0.0, "250": 0.0, "500": 7.843137, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 3.921569, "10": 43.137255, "20": 19.607843, "50": 23.529412, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:31:23.3204 2026-07-04 11:58:54.192283 +386 12 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.04}, "metrics": {"read": {"io_bytes": 352321536, "io_kbytes": 344064, "bw_bytes": 69932817, "bw": 68293, "iops": 16.673283, "runtime": 5038, "total_ios": 84, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1555110, "max": 103358550, "mean": 46119809.285714, "stddev": 32876402.189314, "N": 84}, "clat_ns": {"min": 397470, "max": 32560310, "mean": 13665000.952381, "stddev": 9815006.028218, "N": 84, "percentile": {"1.000000": 399360, "5.000000": 489472, "10.000000": 561152, "20.000000": 700416, "30.000000": 7503872, "40.000000": 9764864, "50.000000": 14483456, "60.000000": 17956864, "70.000000": 21626880, "80.000000": 22675456, "90.000000": 25034752, "95.000000": 28704768, "99.000000": 32636928, "99.500000": 32636928, "99.900000": 32636928, "99.950000": 32636928, "99.990000": 32636928}}, "lat_ns": {"min": 1962100, "max": 130647730, "mean": 59823604.404762, "stddev": 41392909.412922, "N": 84}, "bw_min": 61378, "bw_max": 73654, "bw_agg": 99.499564, "bw_mean": 67952.4, "bw_dev": 4663.202633, "bw_samples": 5, "iops_min": 14, "iops_max": 17, "iops_mean": 16.0, "iops_stddev": 1.224745, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.198491, "sys_cpu": 2.739182, "ctx": 334, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 5.952381, "750": 16.666667, "1000": 1.190476}, "latency_ms": {"2": 1.190476, "4": 1.190476, "10": 14.285714, "20": 23.809524, "50": 35.714286, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:32:14.233094 2026-07-04 11:58:54.192283 +387 12 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260704-172024Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 7.76}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 281018368, "io_kbytes": 274432, "bw_bytes": 36218374, "bw": 35369, "iops": 8.635133, "runtime": 7759, "total_ios": 67, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2410110, "max": 6450917570, "mean": 115641276.567164, "stddev": 786801218.439835, "N": 67}, "clat_ns": {"min": 10370, "max": 358810, "mean": 23851.19403, "stddev": 42548.756437, "N": 67, "percentile": {"1.000000": 10432, "5.000000": 10688, "10.000000": 10816, "20.000000": 11712, "30.000000": 12096, "40.000000": 13504, "50.000000": 17024, "60.000000": 18304, "70.000000": 19584, "80.000000": 26496, "90.000000": 33024, "95.000000": 40704, "99.000000": 358400, "99.500000": 358400, "99.900000": 358400, "99.950000": 358400, "99.990000": 358400}}, "lat_ns": {"min": 2431430, "max": 6450976740, "mean": 115695907.761194, "stddev": 786802870.488556, "N": 67}, "bw_min": 16367, "bw_max": 253698, "bw_agg": 100.0, "bw_mean": 135032.5, "bw_dev": 167818.359486, "bw_samples": 2, "iops_min": 3, "iops_max": 61, "iops_mean": 32.0, "iops_stddev": 41.012193, "iops_samples": 2}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.502707, "sys_cpu": 0.966744, "ctx": 299, "majf": 0, "minf": 16, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 70.149254, "50": 26.865672, "100": 1.492537, "250": 0.0, "500": 1.492537, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:33:05.280038 2026-07-04 11:58:54.192283 +565 16 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 60% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 16.3}, "metrics": {"0": {"bogo_ops": 1571, "real_time_secs": 11.05, "usr_time_secs": 1.56, "sys_time_secs": 3.69, "bogo_ops_s_real_time": 142.17, "bogo_ops_s_usr_sys_time": 299.18, "cpu_used_per_instance": 11.88, "rss_max_kb": 2208, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-06 10:10:36.787846 2026-07-06 10:07:12.467987 +610 20 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 14:28:54' --until '2026-07-07 14:28:55' 0 OOM records 2026-07-07 14:28:54.866051 2026-07-07 14:28:55.304931 +388 12 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9020416, "io_kbytes": 8809, "bw_bytes": 1804083, "bw": 1761, "iops": 3523.6, "runtime": 5000, "total_ios": 17618, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 105480, "max": 7977080, "mean": 148382.788058, "stddev": 97241.010232, "N": 17618}, "clat_ns": {"min": 6670, "max": 11025170, "mean": 108376.686344, "stddev": 112886.578376, "N": 17618, "percentile": {"1.000000": 7392, "5.000000": 7648, "10.000000": 8096, "20.000000": 100864, "30.000000": 105984, "40.000000": 110080, "50.000000": 113152, "60.000000": 116224, "70.000000": 120320, "80.000000": 128512, "90.000000": 148480, "95.000000": 164864, "99.000000": 203776, "99.500000": 234496, "99.900000": 626688, "99.950000": 1089536, "99.990000": 6914048}}, "lat_ns": {"min": 177390, "max": 11147500, "mean": 265173.082075, "stddev": 133214.047037, "N": 17618}, "bw_min": 1745, "bw_max": 1852, "bw_agg": 100.0, "bw_mean": 1788.25, "bw_dev": 51.854765, "bw_samples": 4, "iops_min": 3491, "iops_max": 3705, "iops_mean": 3577.5, "iops_stddev": 103.313439, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 8.14, "sys_cpu": 61.86, "ctx": 17499, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.362357, "20": 0.834374, "50": 0.034056, "100": 6.260643, "250": 80.094222, "500": 0.295153, "750": 0.051084, "1000": 0.017028}, "latency_ms": {"2": 0.034056, "4": 0.01, "10": 0.01, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:33:24.918211 2026-07-04 11:58:54.192283 +389 12 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 11216896, "io_kbytes": 10954, "bw_bytes": 2242930, "bw": 2190, "iops": 4380.723855, "runtime": 5001, "total_ios": 21908, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 106460, "max": 2718660, "mean": 121221.499909, "stddev": 24603.835601, "N": 21908}, "clat_ns": {"min": 6950, "max": 6684000, "mean": 75172.366259, "stddev": 157386.640545, "N": 21908, "percentile": {"1.000000": 8512, "5.000000": 37120, "10.000000": 39680, "20.000000": 48384, "30.000000": 57600, "40.000000": 61184, "50.000000": 63744, "60.000000": 70144, "70.000000": 79360, "80.000000": 84480, "90.000000": 95744, "95.000000": 111104, "99.000000": 209920, "99.500000": 536576, "99.900000": 888832, "99.950000": 5144576, "99.990000": 6193152}}, "lat_ns": {"min": 152650, "max": 6809840, "mean": 209357.798521, "stddev": 160326.087191, "N": 21908}, "bw_min": 2108, "bw_max": 2293, "bw_agg": 100.0, "bw_mean": 2211.5, "bw_dev": 95.807098, "bw_samples": 4, "iops_min": 4218, "iops_max": 4587, "iops_mean": 4424.0, "iops_stddev": 190.971202, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 9.6, "sys_cpu": 73.06, "ctx": 17372, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 2.985211, "20": 1.118313, "50": 16.998357, "100": 70.517619, "250": 7.463027, "500": 0.410809, "750": 0.397115, "1000": 0.013694}, "latency_ms": {"2": 0.01, "4": 0.027387, "10": 0.063904, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:33:36.834321 2026-07-04 11:58:54.192283 +390 12 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 7064064, "io_kbytes": 6898, "bw_bytes": 1412812, "bw": 1379, "iops": 2759.4, "runtime": 5000, "total_ios": 13797, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 102080, "max": 4099630, "mean": 116986.427484, "stddev": 38192.187068, "N": 13797}, "clat_ns": {"min": 6680, "max": 20466930, "mean": 216425.967239, "stddev": 295828.379672, "N": 13797, "percentile": {"1.000000": 19584, "5.000000": 49408, "10.000000": 52480, "20.000000": 58624, "30.000000": 72192, "40.000000": 78336, "50.000000": 93696, "60.000000": 362496, "70.000000": 378880, "80.000000": 387072, "90.000000": 399360, "95.000000": 415744, "99.000000": 468992, "99.500000": 618496, "99.900000": 3522560, "99.950000": 5341184, "99.990000": 6651904}}, "lat_ns": {"min": 146330, "max": 25055560, "mean": 341460.294267, "stddev": 319522.28808, "N": 13797}, "bw_min": 1384, "bw_max": 1401, "bw_agg": 100.0, "bw_mean": 1391.75, "bw_dev": 7.041543, "bw_samples": 4, "iops_min": 2768, "iops_max": 2804, "iops_mean": 2784.25, "iops_stddev": 14.885675, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 6.04, "sys_cpu": 44.2, "ctx": 13032, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.623324, "20": 0.376894, "50": 4.56621, "100": 46.220193, "250": 5.84185, "500": 41.675727, "750": 0.31891, "1000": 0.094223}, "latency_ms": {"2": 0.094223, "4": 0.101471, "10": 0.079727, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:34:33.151884 2026-07-04 11:58:54.192283 +391 12 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4893184, "io_kbytes": 4778, "bw_bytes": 978441, "bw": 955, "iops": 1911.017796, "runtime": 5001, "total_ios": 9557, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 117700, "max": 2799670, "mean": 485653.929057, "stddev": 98809.730563, "N": 9557}, "clat_ns": {"min": 6770, "max": 563510, "mean": 10008.618813, "stddev": 17911.145206, "N": 9557, "percentile": {"1.000000": 6944, "5.000000": 7008, "10.000000": 7072, "20.000000": 7136, "30.000000": 7264, "40.000000": 7328, "50.000000": 7456, "60.000000": 7584, "70.000000": 7776, "80.000000": 8096, "90.000000": 8896, "95.000000": 12736, "99.000000": 125440, "99.500000": 150528, "99.900000": 189440, "99.950000": 203776, "99.990000": 561152}}, "lat_ns": {"min": 229040, "max": 3655220, "mean": 503518.607304, "stddev": 97234.198129, "N": 9557}, "bw_min": 946, "bw_max": 987, "bw_agg": 100.0, "bw_mean": 960.25, "bw_dev": 18.391574, "bw_samples": 4, "iops_min": 1892, "iops_max": 1974, "iops_mean": 1920.5, "iops_stddev": 36.783148, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 6.06, "sys_cpu": 79.92, "ctx": 9488, "majf": 0, "minf": 16, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 92.644135, "20": 5.597991, "50": 0.209271, "100": 0.104635, "250": 1.412577, "500": 0.020927, "750": 0.010464, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:35:24.080105 2026-07-04 11:58:54.192283 +566 16 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 70% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 165110.19}, "metrics": {"0": {"bogo_ops": 1101, "real_time_secs": 165106.44, "usr_time_secs": 1.13, "sys_time_secs": 2.62, "bogo_ops_s_real_time": 0.01, "bogo_ops_s_usr_sys_time": 293.3, "cpu_used_per_instance": 0.0, "rss_max_kb": 2116, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-06 10:10:44.210708 2026-07-06 10:07:12.467987 +611 20 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 14:28:54' --until '2026-07-07 14:28:55' 0 systemd errors records 2026-07-07 14:28:54.866051 2026-07-07 14:28:55.304931 +612 20 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-07 14:25:23.396205 2026-07-07 14:25:23.396212 +392 12 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 6.3}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 44974080, "io_kbytes": 43920, "bw_bytes": 7139876, "bw": 6972, "iops": 1743.133831, "runtime": 6299, "total_ios": 10980, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 106410, "max": 20908360, "mean": 126133.436248, "stddev": 200758.37755, "N": 10980}, "clat_ns": {"min": 7360, "max": 1922326240, "mean": 421264.412568, "stddev": 18347922.589042, "N": 10980, "percentile": {"1.000000": 162816, "5.000000": 201728, "10.000000": 209920, "20.000000": 216064, "30.000000": 222208, "40.000000": 226304, "50.000000": 230400, "60.000000": 236544, "70.000000": 242688, "80.000000": 254976, "90.000000": 276480, "95.000000": 301056, "99.000000": 391168, "99.500000": 585728, "99.900000": 1531904, "99.950000": 1925120, "99.990000": 42729472}}, "lat_ns": {"min": 296520, "max": 1922466610, "mean": 554513.473588, "stddev": 18349157.927331, "N": 10980}, "bw_min": 3636, "bw_max": 10532, "bw_agg": 100.0, "bw_mean": 8778.8, "bw_dev": 2899.085925, "bw_samples": 5, "iops_min": 909, "iops_max": 2633, "iops_mean": 2195.0, "iops_stddev": 724.930341, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.604319, "sys_cpu": 28.961575, "ctx": 10938, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.455373, "20": 0.245902, "50": 0.01, "100": 0.01, "250": 75.400729, "500": 23.306011, "750": 0.163934, "1000": 0.127505}, "latency_ms": {"2": 0.236794, "4": 0.01, "10": 0.018215, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.01, ">=2000": 0.0}}} 2026-07-04 17:35:35.780922 2026-07-04 11:58:54.192283 +393 12 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 47038464, "io_kbytes": 45936, "bw_bytes": 9402051, "bw": 9181, "iops": 2295.422746, "runtime": 5003, "total_ios": 11484, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 50580, "max": 4191750, "mean": 124255.780216, "stddev": 47910.360493, "N": 11484}, "clat_ns": {"min": 4330, "max": 8428440, "mean": 281619.609021, "stddev": 839926.645335, "N": 11484, "percentile": {"1.000000": 13888, "5.000000": 42752, "10.000000": 52992, "20.000000": 60160, "30.000000": 72192, "40.000000": 77312, "50.000000": 85504, "60.000000": 94720, "70.000000": 109056, "80.000000": 136192, "90.000000": 370688, "95.000000": 790528, "99.000000": 5603328, "99.500000": 7045120, "99.900000": 7962624, "99.950000": 8028160, "99.990000": 8159232}}, "lat_ns": {"min": 137230, "max": 8541810, "mean": 414618.06078, "stddev": 840565.578315, "N": 11484}, "bw_min": 9108, "bw_max": 9348, "bw_agg": 100.0, "bw_mean": 9187.2, "bw_dev": 95.766382, "bw_samples": 5, "iops_min": 2277, "iops_max": 2337, "iops_mean": 2296.8, "iops_stddev": 23.941596, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.537278, "sys_cpu": 39.056566, "ctx": 11323, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.801115, "20": 0.444096, "50": 6.217346, "100": 56.74852, "250": 22.213514, "500": 4.292929, "750": 4.005573, "1000": 0.478927}, "latency_ms": {"2": 0.774991, "4": 2.673285, "10": 1.349704, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:35:48.865821 2026-07-04 11:58:54.192283 +394 12 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 53645312, "io_kbytes": 52388, "bw_bytes": 10726917, "bw": 10475, "iops": 2618.876225, "runtime": 5001, "total_ios": 13097, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 101570, "max": 934930, "mean": 117130.665801, "stddev": 23165.031101, "N": 13097}, "clat_ns": {"min": 6570, "max": 9917460, "mean": 237176.491563, "stddev": 255693.818774, "N": 13097, "percentile": {"1.000000": 8256, "5.000000": 49920, "10.000000": 51968, "20.000000": 54528, "30.000000": 63744, "40.000000": 83456, "50.000000": 148480, "60.000000": 378880, "70.000000": 387072, "80.000000": 395264, "90.000000": 403456, "95.000000": 423936, "99.000000": 468992, "99.500000": 610304, "99.900000": 3325952, "99.950000": 5799936, "99.990000": 6651904}}, "lat_ns": {"min": 156550, "max": 10039940, "mean": 362480.210735, "stddev": 256705.939353, "N": 13097}, "bw_min": 10405, "bw_max": 10901, "bw_agg": 100.0, "bw_mean": 10634.0, "bw_dev": 204.466786, "bw_samples": 4, "iops_min": 2601, "iops_max": 2725, "iops_mean": 2658.25, "iops_stddev": 51.116697, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 7.32, "sys_cpu": 44.64, "ctx": 8776, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 1.916469, "20": 0.580286, "50": 2.359319, "100": 40.146598, "250": 5.627243, "500": 48.652363, "750": 0.389402, "1000": 0.068718}, "latency_ms": {"2": 0.083989, "4": 0.106895, "10": 0.068718, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:36:51.09859 2026-07-04 11:58:54.192283 +395 12 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 34074624, "io_kbytes": 33276, "bw_bytes": 6813562, "bw": 6653, "iops": 1663.467307, "runtime": 5001, "total_ios": 8319, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 106910, "max": 242064880, "mean": 171337.883159, "stddev": 2692978.778912, "N": 8319}, "clat_ns": {"min": 7430, "max": 14339450, "mean": 399425.263854, "stddev": 232595.771138, "N": 8319, "percentile": {"1.000000": 252928, "5.000000": 280576, "10.000000": 292864, "20.000000": 313344, "30.000000": 333824, "40.000000": 358400, "50.000000": 382976, "60.000000": 407552, "70.000000": 432128, "80.000000": 456704, "90.000000": 501760, "95.000000": 569344, "99.000000": 700416, "99.500000": 815104, "99.900000": 1466368, "99.950000": 2998272, "99.990000": 14352384}}, "lat_ns": {"min": 359360, "max": 242754060, "mean": 578828.729415, "stddev": 2708186.492239, "N": 8319}, "bw_min": 4703, "bw_max": 7148, "bw_agg": 97.251687, "bw_mean": 6471.0, "bw_dev": 1185.169186, "bw_samples": 4, "iops_min": 1175, "iops_max": 1787, "iops_mean": 1617.75, "iops_stddev": 296.752843, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.44, "sys_cpu": 30.16, "ctx": 8309, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.252434, "20": 0.096165, "50": 0.012021, "100": 0.0, "250": 0.54093, "500": 89.097247, "750": 9.316024, "1000": 0.384662}, "latency_ms": {"2": 0.228393, "4": 0.036062, "10": 0.012021, "20": 0.024041, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:37:41.127499 2026-07-04 11:58:54.192283 +498 13 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/perf bench --format default --repeat 1 syscall all {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 38.74}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 36.79, "usr_time_secs": 0.32, "sys_time_secs": 1.63, "bogo_ops_s_real_time": 61.76, "bogo_ops_s_usr_sys_time": 1163.39, "cpu_used_per_instance": 1.33, "rss_max_kb": 4968, "top10_slowest": [["syslog", 872666369.0, 802848426, 942484312], ["execve", 23473295.0, 20713070, 26233520], ["execveat", 21233267.5, 19810764, 22655771], ["fdatasync", 12460066.0, 8731949, 16188183], ["sync", 10741022.5, 5871961, 15610084], ["pwritev2", 8072578.5, 8037339, 8107818], ["msync", 4186721.5, 24857, 8348586], ["fsync", 3475622.0, 3020079, 3931165], ["clone", 3067444.0, 1369619, 4765269], ["clone3", 2568936.0, 1691418, 3446454]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}, "perf_metrics": {"tool": "perf", "test_type": {"benchmark": "syscall/basic"}, "time": {"duration_sec": 109.746}, "metrics": {"usecs_per_op": 10.974692, "ops_per_sec": 91118}}} 2026-07-04 18:27:17.698523 2026-07-04 18:34:07.707951 +499 13 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 18:34:08.14584 2026-07-04 18:34:08.145843 +396 12 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 350224384, "io_kbytes": 342016, "bw_bytes": 69779713, "bw": 68144, "iops": 33.27356, "runtime": 5019, "total_ios": 167, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 493520, "max": 89663120, "mean": 4969092.45509, "stddev": 14977469.872286, "N": 167}, "clat_ns": {"min": 424590, "max": 1904543590, "mean": 24997867.844311, "stddev": 150412136.276341, "N": 167, "percentile": {"1.000000": 436224, "5.000000": 489472, "10.000000": 501760, "20.000000": 536576, "30.000000": 569344, "40.000000": 602112, "50.000000": 700416, "60.000000": 929792, "70.000000": 1400832, "80.000000": 1875968, "90.000000": 65798144, "95.000000": 102236160, "99.000000": 206569472, "99.500000": 1904214016, "99.900000": 1904214016, "99.950000": 1904214016, "99.990000": 1904214016}}, "lat_ns": {"min": 1513580, "max": 1905504970, "mean": 29986099.101796, "stddev": 150591307.383223, "N": 167}, "bw_min": 2045, "bw_max": 247808, "bw_agg": 100.0, "bw_mean": 84968.5, "bw_dev": 110483.443533, "bw_samples": 4, "iops_min": 0, "iops_max": 121, "iops_mean": 40.75, "iops_stddev": 54.43268, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.657501, "sys_cpu": 1.932656, "ctx": 287, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 7.185629, "750": 45.508982, "1000": 10.179641}, "latency_ms": {"2": 18.562874, "4": 1.796407, "10": 0.0, "20": 0.598802, "50": 4.191617, "100": 6.586826, "250": 4.790419, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.598802, ">=2000": 0.0}}} 2026-07-04 17:37:53.470547 2026-07-04 11:58:54.192283 +397 12 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 211812352, "io_kbytes": 206848, "bw_bytes": 42337068, "bw": 41344, "iops": 20.187887, "runtime": 5003, "total_ios": 101, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 5785860, "max": 63578360, "mean": 28420458.712871, "stddev": 10176458.614321, "N": 101}, "clat_ns": {"min": 710260, "max": 34871120, "mean": 20954242.970297, "stddev": 6469552.519758, "N": 101, "percentile": {"1.000000": 3391488, "5.000000": 8028160, "10.000000": 13565952, "20.000000": 16187392, "30.000000": 17170432, "40.000000": 21889024, "50.000000": 22151168, "60.000000": 22675456, "70.000000": 23724032, "80.000000": 26345472, "90.000000": 28442624, "95.000000": 30015488, "99.000000": 31326208, "99.500000": 34865152, "99.900000": 34865152, "99.950000": 34865152, "99.990000": 34865152}}, "lat_ns": {"min": 16229290, "max": 91693890, "mean": 49414482.871287, "stddev": 14445383.258828, "N": 101}, "bw_min": 28643, "bw_max": 45056, "bw_agg": 92.836358, "bw_mean": 38383.5, "bw_dev": 7375.822869, "bw_samples": 4, "iops_min": 13, "iops_max": 22, "iops_mean": 18.25, "iops_stddev": 4.112988, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.119952, "sys_cpu": 3.178729, "ctx": 402, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.990099, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.990099, "10": 3.960396, "20": 26.732673, "50": 67.326733, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:38:05.54347 2026-07-04 11:58:54.192283 +398 12 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.03}, "metrics": {"read": {"io_bytes": 293601280, "io_kbytes": 286720, "bw_bytes": 58358433, "bw": 56990, "iops": 27.82747, "runtime": 5031, "total_ios": 140, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 541190, "max": 28774660, "mean": 13059996.5, "stddev": 9049254.148915, "N": 140}, "clat_ns": {"min": 28500, "max": 51055120, "mean": 22733906.714286, "stddev": 15361088.476077, "N": 140, "percentile": {"1.000000": 329728, "5.000000": 569344, "10.000000": 610304, "20.000000": 749568, "30.000000": 13697024, "40.000000": 19267584, "50.000000": 27656192, "60.000000": 31850496, "70.000000": 33816576, "80.000000": 34340864, "90.000000": 37486592, "95.000000": 45350912, "99.000000": 50593792, "99.500000": 51118080, "99.900000": 51118080, "99.950000": 51118080, "99.990000": 51118080}}, "lat_ns": {"min": 1001280, "max": 71859060, "mean": 35825032.214286, "stddev": 21841654.562278, "N": 140}, "bw_min": 51148, "bw_max": 63424, "bw_agg": 99.818115, "bw_mean": 56887.2, "bw_dev": 5664.334489, "bw_samples": 5, "iops_min": 24, "iops_max": 30, "iops_mean": 27.0, "iops_stddev": 2.54951, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.159046, "sys_cpu": 3.200795, "ctx": 280, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.714286, "100": 0.0, "250": 0.0, "500": 2.142857, "750": 17.142857, "1000": 3.571429}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 2.857143, "20": 13.571429, "50": 57.857143, "100": 2.142857, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:39:02.680622 2026-07-04 11:58:54.192283 +399 12 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.18}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 339738624, "io_kbytes": 331776, "bw_bytes": 65586606, "bw": 64049, "iops": 31.274131, "runtime": 5180, "total_ios": 162, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1132040, "max": 292681090, "mean": 29155178.209877, "stddev": 58985961.774655, "N": 162}, "clat_ns": {"min": 319600, "max": 201854870, "mean": 2715605.123457, "stddev": 16620414.136868, "N": 162, "percentile": {"1.000000": 321536, "5.000000": 350208, "10.000000": 366592, "20.000000": 387072, "30.000000": 419840, "40.000000": 477184, "50.000000": 552960, "60.000000": 651264, "70.000000": 708608, "80.000000": 872448, "90.000000": 1056768, "95.000000": 1286144, "99.000000": 43253760, "99.500000": 202375168, "99.900000": 202375168, "99.950000": 202375168, "99.990000": 202375168}}, "lat_ns": {"min": 1524100, "max": 355949310, "mean": 31897162.839506, "stddev": 64344435.895421, "N": 162}, "bw_min": 24576, "bw_max": 208687, "bw_agg": 100.0, "bw_mean": 65891.8, "bw_dev": 79948.089212, "bw_samples": 5, "iops_min": 12, "iops_max": 101, "iops_mean": 31.6, "iops_stddev": 38.862578, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.849585, "sys_cpu": 2.297741, "ctx": 487, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 44.444444, "750": 27.777778, "1000": 16.049383}, "latency_ms": {"2": 8.024691, "4": 0.0, "10": 0.617284, "20": 0.0, "50": 2.469136, "100": 0.0, "250": 0.617284, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:40:10.305301 2026-07-04 11:58:54.192283 +500 13 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:27:17' --until '2026-07-04 18:34:07' 0 OOM records 2026-07-04 18:27:17.379116 2026-07-04 18:34:07.716143 +501 13 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:27:17' --until '2026-07-04 18:34:07' 0 systemd errors records 2026-07-04 18:27:17.379116 2026-07-04 18:34:07.716143 +567 16 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 80% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 16.84}, "metrics": {"0": {"bogo_ops": 1813, "real_time_secs": 11.06, "usr_time_secs": 1.7, "sys_time_secs": 4.08, "bogo_ops_s_real_time": 163.88, "bogo_ops_s_usr_sys_time": 313.37, "cpu_used_per_instance": 13.07, "rss_max_kb": 2140, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-06 10:10:51.634003 2026-07-06 10:07:12.467987 +613 20 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 14:29:11.053557 2026-07-07 14:29:11.05356 +614 20 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 14:28:56' --until '2026-07-07 14:29:10' 0 OOM records 2026-07-07 14:28:56.789873 2026-07-07 14:29:10.627408 +400 12 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1360MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.3}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 239075328, "io_kbytes": 233472, "bw_bytes": 45074533, "bw": 44018, "iops": 10.746606, "runtime": 5304, "total_ios": 57, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1427010, "max": 546875800, "mean": 35302469.649123, "stddev": 106525233.695149, "N": 57}, "clat_ns": {"min": 275550, "max": 2997632950, "mean": 57598954.210526, "stddev": 397320214.975713, "N": 57, "percentile": {"1.000000": 276480, "5.000000": 325632, "10.000000": 333824, "20.000000": 366592, "30.000000": 378880, "40.000000": 403456, "50.000000": 505856, "60.000000": 757760, "70.000000": 847872, "80.000000": 1056768, "90.000000": 2007040, "95.000000": 22413312, "99.000000": 3003121664, "99.500000": 3003121664, "99.900000": 3003121664, "99.950000": 3003121664, "99.990000": 3003121664}}, "lat_ns": {"min": 2191560, "max": 3060045860, "mean": 92932049.122807, "stddev": 418468201.117279, "N": 57}, "bw_min": 4091, "bw_max": 216871, "bw_agg": 100.0, "bw_mean": 76384.666667, "bw_dev": 121682.011573, "bw_samples": 3, "iops_min": 0, "iops_max": 52, "iops_mean": 18.0, "iops_stddev": 29.46184, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.452489, "sys_cpu": 0.848416, "ctx": 206, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 49.122807, "750": 8.77193, "1000": 19.298246}, "latency_ms": {"2": 12.280702, "4": 3.508772, "10": 0.0, "20": 0.0, "50": 3.508772, "100": 0.0, "250": 1.754386, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 1.754386}}} 2026-07-04 17:40:22.398618 2026-07-04 11:58:54.192283 +401 12 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1360MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.03}, "metrics": {"read": {"io_bytes": 239075328, "io_kbytes": 233472, "bw_bytes": 47529886, "bw": 46415, "iops": 11.332008, "runtime": 5030, "total_ios": 57, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 26040440, "max": 103945460, "mean": 65690622.105263, "stddev": 17777563.916547, "N": 57}, "clat_ns": {"min": 8937110, "max": 34571080, "mean": 22321025.263158, "stddev": 6400417.283508, "N": 57, "percentile": {"1.000000": 8978432, "5.000000": 11337728, "10.000000": 13565952, "20.000000": 14221312, "30.000000": 21364736, "40.000000": 22151168, "50.000000": 22937600, "60.000000": 23724032, "70.000000": 24772608, "80.000000": 28180480, "90.000000": 30277632, "95.000000": 33161216, "99.000000": 34340864, "99.500000": 34340864, "99.900000": 34340864, "99.950000": 34340864, "99.990000": 34340864}}, "lat_ns": {"min": 48478110, "max": 131440260, "mean": 88065944.210526, "stddev": 19364314.774896, "N": 57}, "bw_min": 36827, "bw_max": 53248, "bw_agg": 98.795878, "bw_mean": 45857.8, "bw_dev": 6082.372169, "bw_samples": 5, "iops_min": 8, "iops_max": 13, "iops_mean": 10.8, "iops_stddev": 1.788854, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.27833, "sys_cpu": 2.286282, "ctx": 234, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 1.754386, "20": 26.315789, "50": 71.929825, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:40:40.718547 2026-07-04 11:58:54.192283 +402 12 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1360MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.03}, "metrics": {"read": {"io_bytes": 314572800, "io_kbytes": 307200, "bw_bytes": 62514467, "bw": 61049, "iops": 14.90461, "runtime": 5032, "total_ios": 75, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1876870, "max": 115068710, "mean": 59777847.2, "stddev": 35998409.300645, "N": 75}, "clat_ns": {"min": 25420, "max": 22980570, "mean": 7110588.533333, "stddev": 6603423.202003, "N": 75, "percentile": {"1.000000": 25472, "5.000000": 61184, "10.000000": 136192, "20.000000": 205824, "30.000000": 716800, "40.000000": 4882432, "50.000000": 6389760, "60.000000": 7831552, "70.000000": 10944512, "80.000000": 11337728, "90.000000": 18481152, "95.000000": 20578304, "99.000000": 22937600, "99.500000": 22937600, "99.900000": 22937600, "99.950000": 22937600, "99.990000": 22937600}}, "lat_ns": {"min": 1992630, "max": 126487560, "mean": 66939137.333333, "stddev": 40030900.001593, "N": 75}, "bw_min": 57286, "bw_max": 65536, "bw_agg": 99.237855, "bw_mean": 60584.4, "bw_dev": 4490.170019, "bw_samples": 5, "iops_min": 13, "iops_max": 16, "iops_mean": 14.2, "iops_stddev": 1.30384, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.079507, "sys_cpu": 3.021268, "ctx": 434, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.666667, "100": 5.333333, "250": 16.0, "500": 2.666667, "750": 4.0, "1000": 0.0}, "latency_ms": {"2": 5.333333, "4": 1.333333, "10": 25.333333, "20": 29.333333, "50": 8.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:41:31.962986 2026-07-04 11:58:54.192283 +403 12 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1360MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260704-173322Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1360MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 10.63}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 364904448, "io_kbytes": 356352, "bw_bytes": 34314881, "bw": 33510, "iops": 8.181305, "runtime": 10634, "total_ios": 87, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2419190, "max": 7202828550, "mean": 119895363.218391, "stddev": 770855098.118374, "N": 87}, "clat_ns": {"min": 257140, "max": 40169500, "mean": 2130639.770115, "stddev": 6287362.236719, "N": 87, "percentile": {"1.000000": 257024, "5.000000": 403456, "10.000000": 423936, "20.000000": 448512, "30.000000": 468992, "40.000000": 528384, "50.000000": 602112, "60.000000": 700416, "70.000000": 831488, "80.000000": 1302528, "90.000000": 1925120, "95.000000": 6717440, "99.000000": 40108032, "99.500000": 40108032, "99.900000": 40108032, "99.950000": 40108032, "99.990000": 40108032}}, "lat_ns": {"min": 2858280, "max": 7203122030, "mean": 122091668.275862, "stddev": 770704504.095431, "N": 87}, "bw_min": 12288, "bw_max": 214370, "bw_agg": 100.0, "bw_mean": 84284.5, "bw_dev": 89446.827935, "bw_samples": 4, "iops_min": 3, "iops_max": 52, "iops_mean": 20.0, "iops_stddev": 21.893682, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.460829, "sys_cpu": 0.90285, "ctx": 426, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 35.632184, "750": 31.034483, "1000": 5.747126}, "latency_ms": {"2": 18.390805, "4": 3.448276, "10": 1.149425, "20": 1.149425, "50": 3.448276, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:42:22.078449 2026-07-04 11:58:54.192283 +404 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 17:42:44.856299 2026-07-04 17:42:44.856303 +405 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 17:10:10' --until '2026-07-04 17:42:42' 0 OOM records 2026-07-04 17:10:10.016342 2026-07-04 17:42:42.473849 +406 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 17:10:10' --until '2026-07-04 17:42:42' 0 systemd errors records 2026-07-04 17:10:10.016342 2026-07-04 17:42:42.473849 +615 20 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 14:28:56' --until '2026-07-07 14:29:10' 0 systemd errors records 2026-07-07 14:28:56.789873 2026-07-07 14:29:10.627408 +659 24 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-12 15:16:48' --until '2026-07-12 15:17:03' 0 systemd errors records 2026-07-12 15:16:48.272379 2026-07-12 15:17:03.113655 +411 12 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 271MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260704-174254Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260704-174254Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "271MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 16.09}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 364642304, "io_kbytes": 356096, "bw_bytes": 22659849, "bw": 22128, "iops": 86.440467, "runtime": 16092, "total_ios": 1391, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 97350, "max": 3687174050, "mean": 5186560.639827, "stddev": 116588895.957851, "N": 1391}, "clat_ns": {"min": 9680, "max": 7391908980, "mean": 6331579.202013, "stddev": 198228166.635941, "N": 1391, "percentile": {"1.000000": 148480, "5.000000": 162816, "10.000000": 173056, "20.000000": 301056, "30.000000": 342016, "40.000000": 374784, "50.000000": 399360, "60.000000": 432128, "70.000000": 473088, "80.000000": 552960, "90.000000": 675840, "95.000000": 1089536, "99.000000": 23461888, "99.500000": 30801920, "99.900000": 109576192, "99.950000": 7415529472, "99.990000": 7415529472}}, "lat_ns": {"min": 318770, "max": 7394628890, "mean": 11528485.57872, "stddev": 230063368.826546, "N": 1391}, "bw_min": 31488, "bw_max": 172800, "bw_agg": 100.0, "bw_mean": 88934.25, "bw_dev": 63638.748502, "bw_samples": 4, "iops_min": 123, "iops_max": 675, "iops_mean": 347.25, "iops_stddev": 248.545603, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.559319, "sys_cpu": 2.579081, "ctx": 1782, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.143781, "20": 0.071891, "50": 0.0, "100": 0.0, "250": 15.959741, "500": 57.800144, "750": 17.972682, "1000": 2.875629}, "latency_ms": {"2": 2.300503, "4": 0.503235, "10": 0.287563, "20": 0.790798, "50": 1.078361, "100": 0.071891, "250": 0.071891, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.071891}}} 2026-07-04 17:43:15.878671 2026-07-04 11:58:54.192283 +412 12 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 271MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260704-174254Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260704-174254Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260704-174254Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260704-174254Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260704-174254Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-04 17:43:26.13472 2026-07-04 11:58:54.192283 +413 12 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 271MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260704-174254Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260704-174254Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260704-174254Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260704-174254Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260704-174254Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-04 17:43:41.027281 2026-07-04 11:58:54.192283 +414 12 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 271MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260704-174254Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260704-174254Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260704-174254Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260704-174254Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260704-174254Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-04 17:44:05.495573 2026-07-04 11:58:54.192283 +415 12 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 271MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260704-174254Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260704-174254Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-04 17:43:44.956385 2026-07-04 11:58:54.192283 +416 12 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 271MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260704-174254Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260704-174254Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260704-174254Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260704-174254Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260704-174254Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_256k", "detailed": {"size": "271MB", "rw": "read", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 14.03}, "metrics": {"read": {"io_bytes": 373555200, "io_kbytes": 364800, "bw_bytes": 26621664, "bw": 25997, "iops": 101.553592, "runtime": 14032, "total_ios": 1425, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 129050, "max": 360848480, "mean": 4419558.063158, "stddev": 15763724.284263, "N": 1425}, "clat_ns": {"min": 8400, "max": 349937300, "mean": 5267185.326316, "stddev": 12266881.824741, "N": 1425, "percentile": {"1.000000": 53504, "5.000000": 121344, "10.000000": 162816, "20.000000": 288768, "30.000000": 1974272, "40.000000": 3391488, "50.000000": 4423680, "60.000000": 4882432, "70.000000": 5472256, "80.000000": 6520832, "90.000000": 9109504, "95.000000": 12255232, "99.000000": 35389440, "99.500000": 43778048, "99.900000": 139460608, "99.950000": 350224384, "99.990000": 350224384}}, "lat_ns": {"min": 238600, "max": 361149350, "mean": 9706389.087719, "stddev": 21020581.519199, "N": 1425}, "bw_min": 2813, "bw_max": 57542, "bw_agg": 100.0, "bw_mean": 27788.692308, "bw_dev": 15647.189665, "bw_samples": 13, "iops_min": 10, "iops_max": 224, "iops_mean": 108.153846, "iops_stddev": 61.173042, "iops_samples": 13}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.997719, "sys_cpu": 6.036203, "ctx": 2681, "majf": 8, "minf": 110, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.070175, "20": 0.210526, "50": 0.701754, "100": 0.77193, "250": 16.0, "500": 4.77193, "750": 1.473684, "1000": 0.982456}, "latency_ms": {"2": 5.052632, "4": 14.877193, "10": 46.736842, "20": 5.614035, "50": 2.245614, "100": 0.210526, "250": 0.210526, "500": 0.070175, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:44:00.042678 2026-07-04 11:58:54.192283 +517 14 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 37.83}, "metrics": {"0": {"bogo_ops": 2646, "real_time_secs": 35.51, "usr_time_secs": 0.66, "sys_time_secs": 1.66, "bogo_ops_s_real_time": 74.52, "bogo_ops_s_usr_sys_time": 1143.95, "cpu_used_per_instance": 1.63, "rss_max_kb": 4276, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:48:01.241763 2026-07-04 18:12:49.185895 +518 14 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 18:48:42.160906 2026-07-04 18:48:42.160909 +691 27 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 14:14:15.506575 2026-07-13 14:14:15.506578 +417 12 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 271MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260704-174254Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260704-174254Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260704-174254Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260704-174254Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260704-174254Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_4k", "detailed": {"size": "271MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 14.64}, "metrics": {"read": {"io_bytes": 69435392, "io_kbytes": 67808, "bw_bytes": 4741882, "bw": 4630, "iops": 1157.686266, "runtime": 14643, "total_ios": 16952, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 60700, "max": 6581098620, "mean": 625669.52336, "stddev": 50707316.942038, "N": 16952}, "clat_ns": {"min": 6820, "max": 153460380, "mean": 203518.108778, "stddev": 2176067.70351, "N": 16952, "percentile": {"1.000000": 8096, "5.000000": 40704, "10.000000": 52992, "20.000000": 58624, "30.000000": 66048, "40.000000": 77312, "50.000000": 85504, "60.000000": 92672, "70.000000": 102912, "80.000000": 126464, "90.000000": 387072, "95.000000": 415744, "99.000000": 782336, "99.500000": 2342912, "99.900000": 15663104, "99.950000": 25559040, "99.990000": 143654912}}, "lat_ns": {"min": 141650, "max": 6581269150, "mean": 840513.908683, "stddev": 50767732.245286, "N": 16952}, "bw_min": 15, "bw_max": 13524, "bw_agg": 100.0, "bw_mean": 7530.666667, "bw_dev": 5967.095902, "bw_samples": 9, "iops_min": 3, "iops_max": 3381, "iops_mean": 1882.333333, "iops_stddev": 1492.049932, "iops_samples": 9}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.847972, "sys_cpu": 21.861768, "ctx": 12272, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 1.952572, "20": 2.170835, "50": 3.45092, "100": 60.093204, "250": 17.97428, "500": 12.470505, "750": 0.855356, "1000": 0.171071}, "latency_ms": {"2": 0.306748, "4": 0.247758, "10": 0.153374, "20": 0.088485, "50": 0.035394, "100": 0.011798, "250": 0.017697, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:44:17.938189 2026-07-04 11:58:54.192283 +418 12 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 271MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260704-174254Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260704-174254Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260704-174254Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_256k", "detailed": {"size": "271MB", "rw": "read", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 10291249152, "io_kbytes": 10050048, "bw_bytes": 735036722, "bw": 717809, "iops": 2803.942576, "runtime": 14001, "total_ios": 39258, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 100400, "max": 143180860, "mean": 174073.902644, "stddev": 723868.377593, "N": 39258}, "clat_ns": {"min": 5750, "max": 22093270, "mean": 153058.774517, "stddev": 633858.627867, "N": 39258, "percentile": {"1.000000": 5984, "5.000000": 7136, "10.000000": 41728, "20.000000": 89600, "30.000000": 98816, "40.000000": 104960, "50.000000": 111104, "60.000000": 116224, "70.000000": 121344, "80.000000": 128512, "90.000000": 144384, "95.000000": 156672, "99.000000": 264192, "99.500000": 5341184, "99.900000": 9633792, "99.950000": 11075584, "99.990000": 17170432}}, "lat_ns": {"min": 196800, "max": 145112800, "mean": 337541.787152, "stddev": 975736.770535, "N": 39258}, "bw_min": 35072, "bw_max": 897662, "bw_agg": 98.802844, "bw_mean": 709216.230769, "bw_dev": 274604.534631, "bw_samples": 13, "iops_min": 137, "iops_max": 3506, "iops_mean": 2770.153846, "iops_stddev": 1072.566458, "iops_samples": 13}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 7.192343, "sys_cpu": 61.831298, "ctx": 36448, "majf": 0, "minf": 84, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 6.258597, "20": 0.450864, "50": 5.639615, "100": 20.051964, "250": 66.541851, "500": 0.300576, "750": 0.038209, "1000": 0.022925}, "latency_ms": {"2": 0.045851, "4": 0.040756, "10": 0.524734, "20": 0.076418, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:44:27.80716 2026-07-04 11:58:54.192283 +419 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 17:45:14.331357 2026-07-04 17:45:14.331359 +420 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 17:42:51' --until '2026-07-04 17:45:11' 0 OOM records 2026-07-04 17:42:51.365812 2026-07-04 17:45:11.772519 +421 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 17:42:51' --until '2026-07-04 17:45:11' 0 systemd errors records 2026-07-04 17:42:51.365812 2026-07-04 17:45:11.772519 +422 12 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-174522Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5458886656, "io_kbytes": 5330944, "bw_bytes": 1091559019, "bw": 1065975, "iops": 1040.991802, "runtime": 5001, "total_ios": 5206, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 540250, "max": 17897740, "mean": 671135.220899, "stddev": 267945.004686, "N": 5206}, "clat_ns": {"min": 9420, "max": 11090310, "mean": 254833.10219, "stddev": 171714.966251, "N": 5206, "percentile": {"1.000000": 160768, "5.000000": 199680, "10.000000": 209920, "20.000000": 222208, "30.000000": 230400, "40.000000": 236544, "50.000000": 242688, "60.000000": 248832, "70.000000": 257024, "80.000000": 268288, "90.000000": 292864, "95.000000": 333824, "99.000000": 468992, "99.500000": 514048, "99.900000": 806912, "99.950000": 3129344, "99.990000": 11075584}}, "lat_ns": {"min": 767260, "max": 18242460, "mean": 936973.240492, "stddev": 338051.421328, "N": 5206}, "bw_min": 985088, "bw_max": 1070080, "bw_agg": 97.958433, "bw_mean": 1044213.25, "bw_dev": 39970.480219, "bw_samples": 4, "iops_min": 963, "iops_max": 1045, "iops_mean": 1019.75, "iops_stddev": 38.361222, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 12.92, "sys_cpu": 33.1, "ctx": 10412, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.019209, "20": 0.057626, "50": 0.019209, "100": 0.115252, "250": 61.179408, "500": 37.936996, "750": 0.537841, "1000": 0.038417}, "latency_ms": {"2": 0.038417, "4": 0.038417, "10": 0.0, "20": 0.019209, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:45:24.491614 2026-07-04 11:58:54.192283 +423 12 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-174522Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 8.86}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 133169152, "io_kbytes": 130048, "bw_bytes": 15035469, "bw": 14683, "iops": 57.355764, "runtime": 8857, "total_ios": 508, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 133240, "max": 35601460, "mean": 287633.287402, "stddev": 1571387.501824, "N": 508}, "clat_ns": {"min": 104190, "max": 8491573400, "mean": 17097648.188976, "stddev": 376736065.064654, "N": 508, "percentile": {"1.000000": 154624, "5.000000": 171008, "10.000000": 191488, "20.000000": 268288, "30.000000": 337920, "40.000000": 346112, "50.000000": 354304, "60.000000": 362496, "70.000000": 374784, "80.000000": 395264, "90.000000": 497664, "95.000000": 552960, "99.000000": 659456, "99.500000": 6062080, "99.900000": 8489271296, "99.950000": 8489271296, "99.990000": 8489271296}}, "lat_ns": {"min": 322540, "max": 8491716920, "mean": 17396536.791339, "stddev": 376732478.711311, "N": 508}, "bw_min": 129792, "bw_max": 129792, "bw_agg": 100.0, "bw_mean": 129792.0, "bw_dev": 0.0, "bw_samples": 1, "iops_min": 507, "iops_max": 507, "iops_mean": 507.0, "iops_stddev": 0.0, "iops_samples": 1}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.587106, "sys_cpu": 1.659704, "ctx": 508, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 17.716535, "500": 72.440945, "750": 9.251969, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.19685, "20": 0.19685, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.19685}}} 2026-07-04 17:45:37.510203 2026-07-04 11:58:54.192283 +519 14 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:48:00' --until '2026-07-04 18:48:39' 0 OOM records 2026-07-04 18:48:00.439578 2026-07-04 18:48:39.960609 +424 12 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-174522Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-174522Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_64k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1049165824, "io_kbytes": 1024576, "bw_bytes": 209791206, "bw": 204874, "iops": 3201.159768, "runtime": 5001, "total_ios": 16009, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 116430, "max": 1287720, "mean": 133928.73821, "stddev": 25427.240703, "N": 16009}, "clat_ns": {"min": 6930, "max": 12892900, "mean": 148769.247923, "stddev": 176089.335129, "N": 16009, "percentile": {"1.000000": 86528, "5.000000": 102912, "10.000000": 110080, "20.000000": 116224, "30.000000": 121344, "40.000000": 124416, "50.000000": 128512, "60.000000": 134144, "70.000000": 142336, "80.000000": 160768, "90.000000": 230400, "95.000000": 264192, "99.000000": 317440, "99.500000": 346112, "99.900000": 733184, "99.950000": 2007040, "99.990000": 10813440}}, "lat_ns": {"min": 194340, "max": 13162850, "mean": 291385.779249, "stddev": 180111.756524, "N": 16009}, "bw_min": 164891, "bw_max": 219968, "bw_agg": 97.655037, "bw_mean": 200070.75, "bw_dev": 25930.613688, "bw_samples": 4, "iops_min": 2577, "iops_max": 3437, "iops_mean": 3126.25, "iops_stddev": 404.904413, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 10.24, "sys_cpu": 53.74, "ctx": 15942, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.331064, "20": 0.10619, "50": 0.081204, "100": 3.310638, "250": 89.112374, "500": 6.902367, "750": 0.056218, "1000": 0.024986}, "latency_ms": {"2": 0.018739, "4": 0.031232, "10": 0.01, "20": 0.018739, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:45:53.720681 2026-07-04 11:58:54.192283 +425 12 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-174522Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-174522Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-174522Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-174522Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-174522Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_1M", "detailed": {"size": "100MB", "rw": "read", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 8433696768, "io_kbytes": 8236032, "bw_bytes": 1405381897, "bw": 1372443, "iops": 1340.276621, "runtime": 6001, "total_ios": 8043, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 469130, "max": 17138040, "mean": 573905.121223, "stddev": 463447.734602, "N": 8043}, "clat_ns": {"min": 8240, "max": 32760190, "mean": 141458.907124, "stddev": 599370.191605, "N": 8043, "percentile": {"1.000000": 40704, "5.000000": 96768, "10.000000": 99840, "20.000000": 103936, "30.000000": 105984, "40.000000": 109056, "50.000000": 113152, "60.000000": 118272, "70.000000": 126464, "80.000000": 136192, "90.000000": 148480, "95.000000": 160768, "99.000000": 203776, "99.500000": 244736, "99.900000": 11206656, "99.950000": 12255232, "99.990000": 32636928}}, "lat_ns": {"min": 566610, "max": 36586510, "mean": 723720.75345, "stddev": 1011529.216009, "N": 8043}, "bw_min": 1030144, "bw_max": 1490944, "bw_agg": 99.427207, "bw_mean": 1364582.4, "bw_dev": 188660.154852, "bw_samples": 5, "iops_min": 1007, "iops_max": 1456, "iops_mean": 1332.6, "iops_stddev": 183.715269, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 5.332445, "sys_cpu": 45.559073, "ctx": 16032, "majf": 0, "minf": 278, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.23623, "20": 0.397861, "50": 0.584359, "100": 8.927017, "250": 89.406938, "500": 0.285963, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.149198, "50": 0.012433, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:46:05.598595 2026-07-04 11:58:54.192283 +426 12 loader /usr/bin/fio --name seq_read_64k --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-174522Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-174522Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-174522Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-174522Z/read/bs_64k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-174522Z/read/bs_64k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_64k", "detailed": {"size": "100MB", "rw": "read", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 1281622016, "io_kbytes": 1251584, "bw_bytes": 213603669, "bw": 208597, "iops": 3259.333333, "runtime": 6000, "total_ios": 19556, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 112990, "max": 4820570, "mean": 130719.470239, "stddev": 49462.972912, "N": 19556}, "clat_ns": {"min": 6460, "max": 46597780, "mean": 149862.162508, "stddev": 622803.064963, "N": 19556, "percentile": {"1.000000": 7840, "5.000000": 42240, "10.000000": 56576, "20.000000": 71168, "30.000000": 74240, "40.000000": 77312, "50.000000": 80384, "60.000000": 84480, "70.000000": 87552, "80.000000": 91648, "90.000000": 105984, "95.000000": 132096, "99.000000": 3489792, "99.500000": 4423680, "99.900000": 6324224, "99.950000": 6717440, "99.990000": 17170432}}, "lat_ns": {"min": 160460, "max": 46955550, "mean": 288033.565146, "stddev": 634330.775982, "N": 19556}, "bw_min": 21888, "bw_max": 282240, "bw_agg": 93.828621, "bw_mean": 195724.8, "bw_dev": 119155.113374, "bw_samples": 5, "iops_min": 342, "iops_max": 4410, "iops_mean": 3058.2, "iops_stddev": 1861.798646, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 8.233333, "sys_cpu": 55.016667, "ctx": 18693, "majf": 0, "minf": 37, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 1.938024, "20": 0.398855, "50": 3.569237, "100": 80.967478, "250": 11.004295, "500": 0.122724, "750": 0.015341, "1000": 0.020454}, "latency_ms": {"2": 0.296584, "4": 0.82839, "10": 0.823277, "20": 0.010227, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:46:24.72706 2026-07-04 11:58:54.192283 +427 12 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-174522Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_64k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 12.32}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1073348608, "io_kbytes": 1048192, "bw_bytes": 87087108, "bw": 85046, "iops": 1328.843813, "runtime": 12325, "total_ios": 16378, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 118490, "max": 6764947520, "mean": 557258.273293, "stddev": 52859713.530072, "N": 16378}, "clat_ns": {"min": 7350, "max": 8516490, "mean": 162586.684577, "stddev": 113044.874657, "N": 16378, "percentile": {"1.000000": 91648, "5.000000": 116224, "10.000000": 121344, "20.000000": 127488, "30.000000": 132096, "40.000000": 136192, "50.000000": 140288, "60.000000": 146432, "70.000000": 154624, "80.000000": 173056, "90.000000": 254976, "95.000000": 301056, "99.000000": 403456, "99.500000": 440320, "99.900000": 1011712, "99.950000": 1777664, "99.990000": 5341184}}, "lat_ns": {"min": 210530, "max": 6765255690, "mean": 728561.263891, "stddev": 52860913.49479, "N": 16378}, "bw_min": 118656, "bw_max": 202304, "bw_agg": 100.0, "bw_mean": 174621.5, "bw_dev": 37095.817682, "bw_samples": 6, "iops_min": 1854, "iops_max": 3161, "iops_mean": 2728.333333, "iops_stddev": 579.479997, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 5.411765, "sys_cpu": 23.083164, "ctx": 16337, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.250336, "20": 0.085481, "50": 0.067163, "100": 0.946392, "250": 88.380755, "500": 9.970692, "750": 0.170961, "1000": 0.024423}, "latency_ms": {"2": 0.067163, "4": 0.018317, "10": 0.018317, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:46:42.748602 2026-07-04 11:58:54.192283 +520 14 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:48:00' --until '2026-07-04 18:48:39' 0 systemd errors records 2026-07-04 18:48:00.439578 2026-07-04 18:48:39.960609 +428 12 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-174522Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_16k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 6.86}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 95453184, "io_kbytes": 93216, "bw_bytes": 13920546, "bw": 13594, "iops": 849.642701, "runtime": 6857, "total_ios": 5826, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 86030, "max": 2084360, "mean": 136231.529351, "stddev": 43039.735088, "N": 5826}, "clat_ns": {"min": 7570, "max": 4072056520, "mean": 1011094.469619, "stddev": 53345408.32855, "N": 5826, "percentile": {"1.000000": 228352, "5.000000": 244736, "10.000000": 250880, "20.000000": 261120, "30.000000": 272384, "40.000000": 280576, "50.000000": 292864, "60.000000": 301056, "70.000000": 321536, "80.000000": 354304, "90.000000": 399360, "95.000000": 432128, "99.000000": 518144, "99.500000": 602112, "99.900000": 2146304, "99.950000": 4079616, "99.990000": 4076863488}}, "lat_ns": {"min": 350020, "max": 4072235460, "mean": 1154376.725026, "stddev": 53345901.981758, "N": 5826}, "bw_min": 27412, "bw_max": 33214, "bw_agg": 100.0, "bw_mean": 31046.0, "bw_dev": 3166.649333, "bw_samples": 3, "iops_min": 1713, "iops_max": 2075, "iops_mean": 1940.0, "iops_stddev": 197.759956, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.712557, "sys_cpu": 14.525303, "ctx": 5820, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.223138, "20": 0.017164, "50": 0.0, "100": 0.0, "250": 8.05012, "500": 90.250601, "750": 1.235839, "1000": 0.102987}, "latency_ms": {"2": 0.017164, "4": 0.051493, "10": 0.034329, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.017164}}} 2026-07-04 17:47:02.449353 2026-07-04 11:58:54.192283 +429 12 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-174522Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-174522Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 50860032, "io_kbytes": 49668, "bw_bytes": 8475259, "bw": 8276, "iops": 2069.155141, "runtime": 6001, "total_ios": 12417, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 91000, "max": 1286570, "mean": 128544.224853, "stddev": 34601.582772, "N": 12417}, "clat_ns": {"min": 7150, "max": 11790310, "mean": 324922.528791, "stddev": 154880.678382, "N": 12417, "percentile": {"1.000000": 218112, "5.000000": 240640, "10.000000": 250880, "20.000000": 264192, "30.000000": 276480, "40.000000": 288768, "50.000000": 301056, "60.000000": 317440, "70.000000": 346112, "80.000000": 391168, "90.000000": 423936, "95.000000": 452608, "99.000000": 561152, "99.500000": 618496, "99.900000": 1220608, "99.950000": 1449984, "99.990000": 7438336}}, "lat_ns": {"min": 339800, "max": 11938560, "mean": 460851.163727, "stddev": 157622.563858, "N": 12417}, "bw_min": 7780, "bw_max": 8364, "bw_agg": 98.482229, "bw_mean": 8151.0, "bw_dev": 252.948611, "bw_samples": 5, "iops_min": 1946, "iops_max": 2091, "iops_mean": 2037.8, "iops_stddev": 62.782959, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 5.4, "sys_cpu": 35.133333, "ctx": 12356, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.547636, "20": 0.064428, "50": 0.0, "100": 0.0, "250": 8.939357, "500": 88.467424, "750": 1.803978, "1000": 0.048321}, "latency_ms": {"2": 0.080535, "4": 0.02416, "10": 0.016107, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:47:16.342297 2026-07-04 11:58:54.192283 +430 12 loader /usr/bin/fio --name rand_read_16k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-174522Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-174522Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-174522Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-174522Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-174522Z/randread/bs_16k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_16k", "detailed": {"size": "100MB", "rw": "randread", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 442056704, "io_kbytes": 431696, "bw_bytes": 73676117, "bw": 71949, "iops": 4496.833333, "runtime": 6000, "total_ios": 26981, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 104350, "max": 4367050, "mean": 118209.040065, "stddev": 32151.350779, "N": 26981}, "clat_ns": {"min": 5930, "max": 7354190, "mean": 77859.538935, "stddev": 55377.60364, "N": 26981, "percentile": {"1.000000": 10944, "5.000000": 49408, "10.000000": 52480, "20.000000": 56576, "30.000000": 66048, "40.000000": 74240, "50.000000": 77312, "60.000000": 80384, "70.000000": 83456, "80.000000": 91648, "90.000000": 104960, "95.000000": 115200, "99.000000": 146432, "99.500000": 168960, "99.900000": 234496, "99.950000": 325632, "99.990000": 1892352}}, "lat_ns": {"min": 148180, "max": 7579830, "mean": 203043.256736, "stddev": 67832.995192, "N": 26981}, "bw_min": 66733, "bw_max": 75152, "bw_agg": 99.128091, "bw_mean": 71322.2, "bw_dev": 3356.456644, "bw_samples": 5, "iops_min": 4172, "iops_max": 4697, "iops_mean": 4457.8, "iops_stddev": 209.299307, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 10.516667, "sys_cpu": 68.866667, "ctx": 26643, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.956228, "20": 0.259442, "50": 4.165895, "100": 81.646344, "250": 12.890553, "500": 0.037063, "750": 0.011119, "1000": 0.014825}, "latency_ms": {"2": 0.011119, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:47:29.554555 2026-07-04 11:58:54.192283 +431 12 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260704-174522Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260704-174522Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260704-174522Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260704-174522Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260704-174522Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_4k", "detailed": {"size": "100MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 118927360, "io_kbytes": 116140, "bw_bytes": 19817923, "bw": 19353, "iops": 4838.360273, "runtime": 6001, "total_ios": 29035, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 100500, "max": 1756030, "mean": 114115.968659, "stddev": 18913.483705, "N": 29035}, "clat_ns": {"min": 5820, "max": 2070480, "mean": 66994.615464, "stddev": 26166.173125, "N": 29035, "percentile": {"1.000000": 8256, "5.000000": 43264, "10.000000": 50944, "20.000000": 52992, "30.000000": 54528, "40.000000": 56064, "50.000000": 59136, "60.000000": 68096, "70.000000": 75264, "80.000000": 81408, "90.000000": 91648, "95.000000": 109056, "99.000000": 134144, "99.500000": 144384, "99.900000": 195584, "99.950000": 218112, "99.990000": 847872}}, "lat_ns": {"min": 143550, "max": 2330590, "mean": 188190.140864, "stddev": 32640.958242, "N": 29035}, "bw_min": 18940, "bw_max": 19836, "bw_agg": 99.579194, "bw_mean": 19272.0, "bw_dev": 353.270435, "bw_samples": 5, "iops_min": 4735, "iops_max": 4958, "iops_mean": 4818.2, "iops_stddev": 87.571114, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 8.583333, "sys_cpu": 75.966667, "ctx": 22334, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 1.394868, "20": 0.406406, "50": 5.875667, "100": 85.049079, "250": 7.236094, "500": 0.024109, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:47:45.421798 2026-07-04 11:58:54.192283 +432 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 17:48:06.21785 2026-07-04 17:48:06.217853 +521 14 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 18:48:55.750873 2026-07-04 18:48:55.750875 +435 12 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-174814Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 9.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9770631168, "io_kbytes": 9541632, "bw_bytes": 1085505073, "bw": 1060063, "iops": 1035.218309, "runtime": 9001, "total_ios": 9318, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 495190, "max": 13016070, "mean": 659665.760893, "stddev": 232153.563852, "N": 9318}, "clat_ns": {"min": 8650, "max": 9550500, "mean": 269317.123846, "stddev": 236599.679697, "N": 9318, "percentile": {"1.000000": 175104, "5.000000": 216064, "10.000000": 224256, "20.000000": 232448, "30.000000": 240640, "40.000000": 248832, "50.000000": 254976, "60.000000": 264192, "70.000000": 268288, "80.000000": 280576, "90.000000": 301056, "95.000000": 329728, "99.000000": 440320, "99.500000": 489472, "99.900000": 2932736, "99.950000": 7503872, "99.990000": 9502720}}, "lat_ns": {"min": 728240, "max": 20932610, "mean": 942683.728268, "stddev": 409565.773686, "N": 9318}, "bw_min": 1008640, "bw_max": 1093632, "bw_agg": 100.0, "bw_mean": 1060857.75, "bw_dev": 31810.255618, "bw_samples": 8, "iops_min": 986, "iops_max": 1068, "iops_mean": 1035.875, "iops_stddev": 30.944363, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 8.13243, "sys_cpu": 32.940784, "ctx": 18634, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.05366, "20": 0.096587, "50": 0.042928, "100": 0.075123, "250": 42.305216, "500": 56.954282, "750": 0.236102, "1000": 0.05366}, "latency_ms": {"2": 0.032196, "4": 0.05366, "10": 0.096587, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:48:16.283749 2026-07-04 11:58:54.192283 +436 12 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-174814Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 14.22}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 3550740480, "io_kbytes": 3467520, "bw_bytes": 249665341, "bw": 243813, "iops": 952.397694, "runtime": 14222, "total_ios": 13545, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 145010, "max": 5253628980, "mean": 567556.54928, "stddev": 45139344.644838, "N": 13545}, "clat_ns": {"min": 7990, "max": 193594930, "mean": 453023.187154, "stddev": 4423358.089361, "N": 13545, "percentile": {"1.000000": 127488, "5.000000": 158720, "10.000000": 166912, "20.000000": 175104, "30.000000": 181248, "40.000000": 185344, "50.000000": 191488, "60.000000": 197632, "70.000000": 205824, "80.000000": 218112, "90.000000": 252928, "95.000000": 317440, "99.000000": 501760, "99.500000": 6782976, "99.900000": 80216064, "99.950000": 93847552, "99.990000": 175112192}}, "lat_ns": {"min": 295730, "max": 5254104400, "mean": 1028156.586932, "stddev": 45355970.889908, "N": 13545}, "bw_min": 171348, "bw_max": 657774, "bw_agg": 100.0, "bw_mean": 385108.555556, "bw_dev": 181806.119614, "bw_samples": 9, "iops_min": 669, "iops_max": 2570, "iops_mean": 1504.333333, "iops_stddev": 710.362583, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.874279, "sys_cpu": 19.898748, "ctx": 13527, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.081211, "20": 0.162422, "50": 0.036914, "100": 0.251015, "250": 89.080842, "500": 9.383536, "750": 0.214101, "1000": 0.022148}, "latency_ms": {"2": 0.059062, "4": 0.125508, "10": 0.110742, "20": 0.147656, "50": 0.118125, "100": 0.162422, "250": 0.044297, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:48:33.372746 2026-07-04 11:58:54.192283 +437 12 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-174814Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-174814Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_64k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 9.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 850788352, "io_kbytes": 830848, "bw_bytes": 94521536, "bw": 92306, "iops": 1442.284191, "runtime": 9001, "total_ios": 12982, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 117560, "max": 4848102910, "mean": 508707.188415, "stddev": 42548988.233943, "N": 12982}, "clat_ns": {"min": 7160, "max": 5862340, "mean": 157576.746264, "stddev": 82822.475507, "N": 12982, "percentile": {"1.000000": 90624, "5.000000": 112128, "10.000000": 118272, "20.000000": 125440, "30.000000": 129536, "40.000000": 134144, "50.000000": 140288, "60.000000": 146432, "70.000000": 156672, "80.000000": 177152, "90.000000": 244736, "95.000000": 268288, "99.000000": 309248, "99.500000": 350208, "99.900000": 708608, "99.950000": 1187840, "99.990000": 3358720}}, "lat_ns": {"min": 202920, "max": 4849087600, "mean": 673444.542443, "stddev": 42556284.357257, "N": 12982}, "bw_min": 88960, "bw_max": 208640, "bw_agg": 100.0, "bw_mean": 155584.0, "bw_dev": 49809.875112, "bw_samples": 4, "iops_min": 1390, "iops_max": 3260, "iops_mean": 2431.25, "iops_stddev": 778.371537, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.622222, "sys_cpu": 24.222222, "ctx": 12943, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.315822, "20": 0.061624, "50": 0.053921, "100": 1.232476, "250": 89.816669, "500": 8.388538, "750": 0.046218, "1000": 0.030812}, "latency_ms": {"2": 0.023109, "4": 0.023109, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:48:54.885396 2026-07-04 11:58:54.192283 +438 12 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-174814Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_64k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 10.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 483065856, "io_kbytes": 471744, "bw_bytes": 48301755, "bw": 47169, "iops": 737.026297, "runtime": 10001, "total_ios": 7371, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 74150, "max": 76363740, "mean": 186553.44458, "stddev": 1293755.479278, "N": 7371}, "clat_ns": {"min": 7660, "max": 6334147760, "mean": 1139588.034188, "stddev": 73791654.26692, "N": 7371, "percentile": {"1.000000": 102912, "5.000000": 120320, "10.000000": 125440, "20.000000": 132096, "30.000000": 138240, "40.000000": 146432, "50.000000": 158720, "60.000000": 171008, "70.000000": 189440, "80.000000": 272384, "90.000000": 325632, "95.000000": 391168, "99.000000": 684032, "99.500000": 1957888, "99.900000": 26083328, "99.950000": 39059456, "99.990000": 6341787648}}, "lat_ns": {"min": 227540, "max": 6334238080, "mean": 1334158.050468, "stddev": 73804706.79613, "N": 7371}, "bw_min": 2880, "bw_max": 107924, "bw_agg": 100.0, "bw_mean": 71971.25, "bw_dev": 49162.725252, "bw_samples": 4, "iops_min": 45, "iops_max": 1686, "iops_mean": 1124.5, "iops_stddev": 768.33261, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.83, "sys_cpu": 14.16, "ctx": 7379, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.176367, "20": 0.1221, "50": 0.067833, "100": 0.556234, "250": 76.149776, "500": 21.218288, "750": 0.786867, "1000": 0.176367}, "latency_ms": {"2": 0.2849, "4": 0.094967, "10": 0.054267, "20": 0.027133, "50": 0.257767, "100": 0.013567, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.013567}}} 2026-07-04 17:49:10.679256 2026-07-04 11:58:54.192283 +522 14 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:48:50' --until '2026-07-04 18:48:53' 0 OOM records 2026-07-04 18:48:50.995479 2026-07-04 18:48:53.351882 +439 12 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-174814Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_16k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 10.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 482918400, "io_kbytes": 471600, "bw_bytes": 48287011, "bw": 47155, "iops": 2947.205279, "runtime": 10001, "total_ios": 29475, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 80310, "max": 3458180, "mean": 128970.588295, "stddev": 44666.698152, "N": 29475}, "clat_ns": {"min": 7360, "max": 273895680, "mean": 180964.561493, "stddev": 1602182.343529, "N": 29475, "percentile": {"1.000000": 84480, "5.000000": 101888, "10.000000": 107008, "20.000000": 113152, "30.000000": 119296, "40.000000": 124416, "50.000000": 130560, "60.000000": 142336, "70.000000": 160768, "80.000000": 248832, "90.000000": 296960, "95.000000": 346112, "99.000000": 452608, "99.500000": 505856, "99.900000": 1187840, "99.950000": 2211840, "99.990000": 11468800}}, "lat_ns": {"min": 189520, "max": 274022780, "mean": 317794.492282, "stddev": 1603231.108895, "N": 29475}, "bw_min": 25088, "bw_max": 57232, "bw_agg": 97.653955, "bw_mean": 46049.444444, "bw_dev": 12790.740509, "bw_samples": 9, "iops_min": 1568, "iops_max": 3577, "iops_mean": 2878.111111, "iops_stddev": 799.352151, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 7.35, "sys_cpu": 50.15, "ctx": 29359, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.41391, "20": 0.078032, "50": 0.071247, "100": 3.331637, "250": 76.186599, "500": 19.389313, "750": 0.37659, "1000": 0.033927}, "latency_ms": {"2": 0.054283, "4": 0.040712, "10": 0.013571, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.01, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:49:27.467042 2026-07-04 11:58:54.192283 +440 12 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260704-174814Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260704-174814Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 10.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 70213632, "io_kbytes": 68568, "bw_bytes": 7020661, "bw": 6856, "iops": 1714.028597, "runtime": 10001, "total_ios": 17142, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 68580, "max": 2009539430, "mean": 250189.252713, "stddev": 15357752.274547, "N": 17142}, "clat_ns": {"min": 7950, "max": 21866340, "mean": 305412.273947, "stddev": 186922.889642, "N": 17142, "percentile": {"1.000000": 222208, "5.000000": 240640, "10.000000": 246784, "20.000000": 257024, "30.000000": 264192, "40.000000": 276480, "50.000000": 284672, "60.000000": 296960, "70.000000": 313344, "80.000000": 346112, "90.000000": 391168, "95.000000": 419840, "99.000000": 497664, "99.500000": 561152, "99.900000": 970752, "99.950000": 1286144, "99.990000": 5079040}}, "lat_ns": {"min": 335650, "max": 2014437800, "mean": 562223.063236, "stddev": 15394084.585418, "N": 17142}, "bw_min": 1988, "bw_max": 9242, "bw_agg": 100.0, "bw_mean": 7459.75, "bw_dev": 2518.391423, "bw_samples": 8, "iops_min": 497, "iops_max": 2310, "iops_mean": 1864.875, "iops_stddev": 629.547329, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.85, "sys_cpu": 28.93, "ctx": 17115, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.297515, "20": 0.0, "50": 0.01, "100": 0.0, "250": 11.976432, "500": 86.734337, "750": 0.834208, "1000": 0.058336}, "latency_ms": {"2": 0.058336, "4": 0.017501, "10": 0.011667, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-04 17:49:45.811895 2026-07-04 11:58:54.192283 +441 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 17:50:07.654239 2026-07-04 17:50:07.654242 +442 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 17:48:13' --until '2026-07-04 17:50:05' 0 OOM records 2026-07-04 17:48:13.386036 2026-07-04 17:50:05.264638 +443 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 17:48:13' --until '2026-07-04 17:50:05' 0 systemd errors records 2026-07-04 17:48:13.386036 2026-07-04 17:50:05.264638 +444 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 17:50:17.364104 2026-07-04 17:50:17.364106 +445 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 17:50:13' --until '2026-07-04 17:50:14' 0 OOM records 2026-07-04 17:50:13.860513 2026-07-04 17:50:14.995055 +446 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 17:50:13' --until '2026-07-04 17:50:14' 0 systemd errors records 2026-07-04 17:50:13.860513 2026-07-04 17:50:14.995055 +447 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 17:50:27.508122 2026-07-04 17:50:27.508126 +448 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 17:50:24' --until '2026-07-04 17:50:25' 0 OOM records 2026-07-04 17:50:24.066273 2026-07-04 17:50:25.090916 +449 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 17:50:24' --until '2026-07-04 17:50:25' 0 systemd errors records 2026-07-04 17:50:24.066273 2026-07-04 17:50:25.090916 +469 13 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-04 18:12:49.185889 2026-07-04 18:12:49.185895 +470 13 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 18:17:10.058183 2026-07-04 18:17:10.058186 +471 13 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:17:09' --until '2026-07-04 18:17:09' 0 OOM records 2026-07-04 18:17:09.006535 2026-07-04 18:17:09.62988 +472 13 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:17:09' --until '2026-07-04 18:17:09' 0 systemd errors records 2026-07-04 18:17:09.006535 2026-07-04 18:17:09.62988 +473 13 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-04 18:12:49.185889 2026-07-04 18:12:49.185895 +474 13 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 18:17:25.214916 2026-07-04 18:17:25.214929 +475 13 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:17:10' --until '2026-07-04 18:17:24' 0 OOM records 2026-07-04 18:17:10.917868 2026-07-04 18:17:24.773164 +476 13 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:17:10' --until '2026-07-04 18:17:24' 0 systemd errors records 2026-07-04 18:17:10.917868 2026-07-04 18:17:24.773164 +523 14 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:48:50' --until '2026-07-04 18:48:53' 0 systemd errors records 2026-07-04 18:48:50.995479 2026-07-04 18:48:53.351882 +524 14 loader null 2026-07-04 18:12:49.185889 2026-07-04 18:12:49.185895 +525 14 loader null 2026-07-04 18:12:49.185889 2026-07-04 18:12:49.185895 +526 14 loader null 2026-07-04 18:12:49.185889 2026-07-04 18:12:49.185895 +527 14 loader null 2026-07-04 18:12:49.185889 2026-07-04 18:12:49.185895 +528 14 loader null 2026-07-04 18:12:49.185889 2026-07-04 18:12:49.185895 +529 14 loader null 2026-07-04 18:12:49.185889 2026-07-04 18:12:49.185895 +530 14 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 18:50:05.720195 2026-07-04 18:50:05.720199 +502 13 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 136.52}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 19, "real_time_secs": 8.11, "usr_time_secs": 0.12, "sys_time_secs": 0.96, "bogo_ops_s_real_time": 2.34, "bogo_ops_s_usr_sys_time": 17.65, "cpu_used_per_instance": 13.27, "rss_max_kb": 2280, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 7013, "real_time_secs": 8.03, "usr_time_secs": 0.32, "sys_time_secs": 0.58, "bogo_ops_s_real_time": 872.81, "bogo_ops_s_usr_sys_time": 7813.35, "cpu_used_per_instance": 11.17, "rss_max_kb": 2268, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 10608, "real_time_secs": 8.04, "usr_time_secs": 0.19, "sys_time_secs": 0.93, "bogo_ops_s_real_time": 1318.96, "bogo_ops_s_usr_sys_time": 9482.88, "cpu_used_per_instance": 13.91, "rss_max_kb": 2396, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 35031, "real_time_secs": 8.06, "usr_time_secs": 0.37, "sys_time_secs": 1.02, "bogo_ops_s_real_time": 4348.56, "bogo_ops_s_usr_sys_time": 25077.74, "cpu_used_per_instance": 17.34, "rss_max_kb": 2920, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 16291, "real_time_secs": 8.03, "usr_time_secs": 0.27, "sys_time_secs": 0.84, "bogo_ops_s_real_time": 2029.06, "bogo_ops_s_usr_sys_time": 14691.41, "cpu_used_per_instance": 13.81, "rss_max_kb": 2276, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 4, "real_time_secs": 8.1, "usr_time_secs": 0.07, "sys_time_secs": 0.86, "bogo_ops_s_real_time": 0.49, "bogo_ops_s_usr_sys_time": 4.3, "cpu_used_per_instance": 11.5, "rss_max_kb": 25408, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 4, "real_time_secs": 8.14, "usr_time_secs": 0.04, "sys_time_secs": 0.39, "bogo_ops_s_real_time": 0.49, "bogo_ops_s_usr_sys_time": 9.34, "cpu_used_per_instance": 5.26, "rss_max_kb": 18076, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 1718660, "real_time_secs": 8.02, "usr_time_secs": 1.36, "sys_time_secs": 0.07, "bogo_ops_s_real_time": 214217.47, "bogo_ops_s_usr_sys_time": 1203189.54, "cpu_used_per_instance": 17.8, "rss_max_kb": 2148, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 22106, "real_time_secs": 8.05, "usr_time_secs": 0.57, "sys_time_secs": 1.41, "bogo_ops_s_real_time": 2745.88, "bogo_ops_s_usr_sys_time": 11176.3, "cpu_used_per_instance": 24.57, "rss_max_kb": 2148, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 533, "real_time_secs": 8.0, "usr_time_secs": 0.33, "sys_time_secs": 0.98, "bogo_ops_s_real_time": 66.62, "bogo_ops_s_usr_sys_time": 404.76, "cpu_used_per_instance": 16.46, "rss_max_kb": 2072, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1631966, "real_time_secs": 8.01, "usr_time_secs": 1.59, "sys_time_secs": 0.05, "bogo_ops_s_real_time": 203720.98, "bogo_ops_s_usr_sys_time": 993028.58, "cpu_used_per_instance": 20.52, "rss_max_kb": 2148, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 106462, "real_time_secs": 8.15, "usr_time_secs": 1.96, "sys_time_secs": 15.7, "bogo_ops_s_real_time": 13062.73, "bogo_ops_s_usr_sys_time": 6029.37, "cpu_used_per_instance": 216.65, "rss_max_kb": 2072, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 6289, "real_time_secs": 8.0, "usr_time_secs": 0.28, "sys_time_secs": 0.52, "bogo_ops_s_real_time": 785.64, "bogo_ops_s_usr_sys_time": 7844.56, "cpu_used_per_instance": 10.02, "rss_max_kb": 2148, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 13, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:34:10.470409 2026-07-04 18:12:49.185895 +503 13 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 2 --syscall-method all --mq 2 --pipe 2 --sem 2 --sem-sysv 2 --shm 2 --shm-sysv 2 --verify --dekker 2 --fifo 2 --futex 2 --peterson 2 --pipeherd 2 --sigq 2 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 138.36}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 21, "real_time_secs": 8.32, "usr_time_secs": 0.17, "sys_time_secs": 1.08, "bogo_ops_s_real_time": 2.52, "bogo_ops_s_usr_sys_time": 16.86, "cpu_used_per_instance": 7.48, "rss_max_kb": 2260, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 8074, "real_time_secs": 8.12, "usr_time_secs": 0.35, "sys_time_secs": 0.71, "bogo_ops_s_real_time": 993.74, "bogo_ops_s_usr_sys_time": 7638.13, "cpu_used_per_instance": 6.51, "rss_max_kb": 2332, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 12196, "real_time_secs": 8.16, "usr_time_secs": 0.21, "sys_time_secs": 1.16, "bogo_ops_s_real_time": 1494.6, "bogo_ops_s_usr_sys_time": 8927.47, "cpu_used_per_instance": 8.37, "rss_max_kb": 2396, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 32863, "real_time_secs": 8.04, "usr_time_secs": 0.37, "sys_time_secs": 1.05, "bogo_ops_s_real_time": 4085.33, "bogo_ops_s_usr_sys_time": 23035.11, "cpu_used_per_instance": 8.87, "rss_max_kb": 3072, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 5146, "real_time_secs": 8.13, "usr_time_secs": 0.12, "sys_time_secs": 0.44, "bogo_ops_s_real_time": 632.87, "bogo_ops_s_usr_sys_time": 9206.93, "cpu_used_per_instance": 3.44, "rss_max_kb": 2280, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 8, "real_time_secs": 8.22, "usr_time_secs": 0.07, "sys_time_secs": 0.8, "bogo_ops_s_real_time": 0.97, "bogo_ops_s_usr_sys_time": 9.16, "cpu_used_per_instance": 5.32, "rss_max_kb": 17884, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 4, "real_time_secs": 8.2, "usr_time_secs": 0.04, "sys_time_secs": 0.56, "bogo_ops_s_real_time": 0.49, "bogo_ops_s_usr_sys_time": 6.6, "cpu_used_per_instance": 3.7, "rss_max_kb": 18364, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 1335758, "real_time_secs": 8.13, "usr_time_secs": 1.44, "sys_time_secs": 0.05, "bogo_ops_s_real_time": 164211.77, "bogo_ops_s_usr_sys_time": 900335.19, "cpu_used_per_instance": 9.12, "rss_max_kb": 2280, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 19116, "real_time_secs": 8.13, "usr_time_secs": 0.51, "sys_time_secs": 1.27, "bogo_ops_s_real_time": 2350.41, "bogo_ops_s_usr_sys_time": 10732.17, "cpu_used_per_instance": 10.95, "rss_max_kb": 2144, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 489, "real_time_secs": 8.03, "usr_time_secs": 0.34, "sys_time_secs": 1.04, "bogo_ops_s_real_time": 60.9, "bogo_ops_s_usr_sys_time": 353.52, "cpu_used_per_instance": 8.61, "rss_max_kb": 2136, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 624994, "real_time_secs": 8.07, "usr_time_secs": 1.39, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 77414.22, "bogo_ops_s_usr_sys_time": 438662.16, "cpu_used_per_instance": 8.82, "rss_max_kb": 2140, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 133321, "real_time_secs": 8.19, "usr_time_secs": 2.6, "sys_time_secs": 15.94, "bogo_ops_s_real_time": 16271.21, "bogo_ops_s_usr_sys_time": 7192.83, "cpu_used_per_instance": 113.11, "rss_max_kb": 2140, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 6644, "real_time_secs": 8.05, "usr_time_secs": 0.29, "sys_time_secs": 0.54, "bogo_ops_s_real_time": 825.63, "bogo_ops_s_usr_sys_time": 8015.62, "cpu_used_per_instance": 5.15, "rss_max_kb": 2140, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 26, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:34:19.199721 2026-07-04 18:12:49.185895 +504 13 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 3 --syscall-method all --mq 3 --pipe 3 --sem 3 --sem-sysv 3 --shm 3 --shm-sysv 3 --verify --dekker 3 --fifo 3 --futex 3 --peterson 3 --pipeherd 3 --sigq 3 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 139.79}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 28, "real_time_secs": 8.45, "usr_time_secs": 0.21, "sys_time_secs": 1.39, "bogo_ops_s_real_time": 3.31, "bogo_ops_s_usr_sys_time": 17.54, "cpu_used_per_instance": 6.29, "rss_max_kb": 2256, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 10815, "real_time_secs": 8.12, "usr_time_secs": 0.47, "sys_time_secs": 0.96, "bogo_ops_s_real_time": 1331.51, "bogo_ops_s_usr_sys_time": 7524.1, "cpu_used_per_instance": 5.9, "rss_max_kb": 2320, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 15961, "real_time_secs": 8.09, "usr_time_secs": 0.28, "sys_time_secs": 1.45, "bogo_ops_s_real_time": 1972.47, "bogo_ops_s_usr_sys_time": 9241.68, "cpu_used_per_instance": 7.11, "rss_max_kb": 2380, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 33960, "real_time_secs": 8.1, "usr_time_secs": 0.4, "sys_time_secs": 1.24, "bogo_ops_s_real_time": 4195.08, "bogo_ops_s_usr_sys_time": 20644.55, "cpu_used_per_instance": 6.77, "rss_max_kb": 3172, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 7546, "real_time_secs": 8.05, "usr_time_secs": 0.15, "sys_time_secs": 0.62, "bogo_ops_s_real_time": 937.12, "bogo_ops_s_usr_sys_time": 9830.27, "cpu_used_per_instance": 3.18, "rss_max_kb": 2260, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 12, "real_time_secs": 8.31, "usr_time_secs": 0.18, "sys_time_secs": 0.8, "bogo_ops_s_real_time": 1.44, "bogo_ops_s_usr_sys_time": 12.25, "cpu_used_per_instance": 3.93, "rss_max_kb": 6468, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 6, "real_time_secs": 8.4, "usr_time_secs": 0.05, "sys_time_secs": 0.69, "bogo_ops_s_real_time": 0.71, "bogo_ops_s_usr_sys_time": 8.07, "cpu_used_per_instance": 2.95, "rss_max_kb": 18352, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 1952883, "real_time_secs": 8.08, "usr_time_secs": 1.85, "sys_time_secs": 0.06, "bogo_ops_s_real_time": 241830.93, "bogo_ops_s_usr_sys_time": 1021316.09, "cpu_used_per_instance": 7.89, "rss_max_kb": 2260, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 27633, "real_time_secs": 8.14, "usr_time_secs": 0.69, "sys_time_secs": 1.89, "bogo_ops_s_real_time": 3393.36, "bogo_ops_s_usr_sys_time": 10704.88, "cpu_used_per_instance": 10.57, "rss_max_kb": 2264, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 624, "real_time_secs": 8.04, "usr_time_secs": 0.45, "sys_time_secs": 1.36, "bogo_ops_s_real_time": 77.65, "bogo_ops_s_usr_sys_time": 343.88, "cpu_used_per_instance": 7.53, "rss_max_kb": 2124, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 421055, "real_time_secs": 8.06, "usr_time_secs": 1.73, "sys_time_secs": 0.05, "bogo_ops_s_real_time": 52263.97, "bogo_ops_s_usr_sys_time": 235696.86, "cpu_used_per_instance": 7.39, "rss_max_kb": 2124, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 119932, "real_time_secs": 8.25, "usr_time_secs": 2.28, "sys_time_secs": 13.46, "bogo_ops_s_real_time": 14530.58, "bogo_ops_s_usr_sys_time": 7621.23, "cpu_used_per_instance": 63.55, "rss_max_kb": 2124, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 7804, "real_time_secs": 8.01, "usr_time_secs": 0.36, "sys_time_secs": 0.62, "bogo_ops_s_real_time": 974.66, "bogo_ops_s_usr_sys_time": 8012.9, "cpu_used_per_instance": 4.05, "rss_max_kb": 2124, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 39, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:34:28.034953 2026-07-04 18:12:49.185895 +505 13 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 4 --syscall-method all --mq 4 --pipe 4 --sem 4 --sem-sysv 4 --shm 4 --shm-sysv 4 --verify --dekker 4 --fifo 4 --futex 4 --peterson 4 --pipeherd 4 --sigq 4 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 142.03}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 35, "real_time_secs": 8.64, "usr_time_secs": 0.29, "sys_time_secs": 1.75, "bogo_ops_s_real_time": 4.05, "bogo_ops_s_usr_sys_time": 17.19, "cpu_used_per_instance": 5.9, "rss_max_kb": 2172, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 13324, "real_time_secs": 8.09, "usr_time_secs": 0.54, "sys_time_secs": 1.21, "bogo_ops_s_real_time": 1647.53, "bogo_ops_s_usr_sys_time": 7612.71, "cpu_used_per_instance": 5.41, "rss_max_kb": 2292, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 17454, "real_time_secs": 8.11, "usr_time_secs": 0.3, "sys_time_secs": 1.63, "bogo_ops_s_real_time": 2152.89, "bogo_ops_s_usr_sys_time": 9061.12, "cpu_used_per_instance": 5.94, "rss_max_kb": 2288, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 38008, "real_time_secs": 8.1, "usr_time_secs": 0.49, "sys_time_secs": 1.6, "bogo_ops_s_real_time": 4692.1, "bogo_ops_s_usr_sys_time": 18187.69, "cpu_used_per_instance": 6.45, "rss_max_kb": 3080, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 6632, "real_time_secs": 8.11, "usr_time_secs": 0.13, "sys_time_secs": 0.68, "bogo_ops_s_real_time": 817.78, "bogo_ops_s_usr_sys_time": 8212.34, "cpu_used_per_instance": 2.49, "rss_max_kb": 2168, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 17, "real_time_secs": 8.39, "usr_time_secs": 0.21, "sys_time_secs": 0.97, "bogo_ops_s_real_time": 2.03, "bogo_ops_s_usr_sys_time": 14.49, "cpu_used_per_instance": 3.5, "rss_max_kb": 4824, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 8, "real_time_secs": 8.75, "usr_time_secs": 0.06, "sys_time_secs": 0.81, "bogo_ops_s_real_time": 0.91, "bogo_ops_s_usr_sys_time": 9.26, "cpu_used_per_instance": 2.47, "rss_max_kb": 17916, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 2350493, "real_time_secs": 8.09, "usr_time_secs": 2.26, "sys_time_secs": 0.07, "bogo_ops_s_real_time": 290625.79, "bogo_ops_s_usr_sys_time": 1009971.7, "cpu_used_per_instance": 7.19, "rss_max_kb": 2168, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 31539, "real_time_secs": 8.15, "usr_time_secs": 0.91, "sys_time_secs": 2.17, "bogo_ops_s_real_time": 3871.11, "bogo_ops_s_usr_sys_time": 10240.61, "cpu_used_per_instance": 9.45, "rss_max_kb": 2164, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 586, "real_time_secs": 8.06, "usr_time_secs": 0.56, "sys_time_secs": 1.58, "bogo_ops_s_real_time": 72.72, "bogo_ops_s_usr_sys_time": 274.02, "cpu_used_per_instance": 6.63, "rss_max_kb": 2032, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1423036, "real_time_secs": 8.09, "usr_time_secs": 2.15, "sys_time_secs": 0.06, "bogo_ops_s_real_time": 175944.24, "bogo_ops_s_usr_sys_time": 644300.1, "cpu_used_per_instance": 6.83, "rss_max_kb": 2168, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 100726, "real_time_secs": 8.34, "usr_time_secs": 2.04, "sys_time_secs": 11.19, "bogo_ops_s_real_time": 12073.59, "bogo_ops_s_usr_sys_time": 7612.23, "cpu_used_per_instance": 39.65, "rss_max_kb": 2032, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 10731, "real_time_secs": 8.0, "usr_time_secs": 0.51, "sys_time_secs": 0.94, "bogo_ops_s_real_time": 1340.65, "bogo_ops_s_usr_sys_time": 7434.4, "cpu_used_per_instance": 4.51, "rss_max_kb": 2032, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 52, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:34:37.16605 2026-07-04 18:12:49.185895 +506 13 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-04 18:34:47.126744 2026-07-04 18:34:47.126748 +507 13 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:34:10' --until '2026-07-04 18:34:46' 0 OOM records 2026-07-04 18:34:10.02438 2026-07-04 18:34:46.702073 +508 13 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:34:10' --until '2026-07-04 18:34:46' 0 systemd errors records 2026-07-04 18:34:10.02438 2026-07-04 18:34:46.702073 +509 14 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 52.424, "kernel_time": 3.74, "userspace_time": 74.71000000000001, "total_time": 130.875} 2026-07-04 18:12:49.185889 2026-07-04 18:12:49.185895 +510 14 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 18:47:45.084009 2026-07-04 18:47:45.084012 +511 14 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:47:41' --until '2026-07-04 18:47:42' 0 OOM records 2026-07-04 18:47:41.188503 2026-07-04 18:47:42.930881 +512 14 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:47:41' --until '2026-07-04 18:47:42' 0 systemd errors records 2026-07-04 18:47:41.188503 2026-07-04 18:47:42.930881 +513 14 loader systemd-analyze critical-chain [{"service_name": "cloud-config.service", "slow_time_s": 7.318}, {"service_name": "cloud-init.service", "slow_time_s": 13.249}, {"service_name": "wicked.service", "slow_time_s": 14.412}, {"service_name": "cloud-init-local.service", "slow_time_s": 15.218}] 2026-07-04 18:12:49.185889 2026-07-04 18:12:49.185895 +514 14 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 18:47:58.206009 2026-07-04 18:47:58.206012 +515 14 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:47:47' --until '2026-07-04 18:47:55' 0 OOM records 2026-07-04 18:47:47.399341 2026-07-04 18:47:55.303355 +516 14 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:47:47' --until '2026-07-04 18:47:55' 0 systemd errors records 2026-07-04 18:47:47.399341 2026-07-04 18:47:55.303355 +751 32 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:44:45.138011 2026-07-13 16:44:45.138014 +541 14 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 144.5}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 46, "real_time_secs": 8.04, "usr_time_secs": 0.04, "sys_time_secs": 0.98, "bogo_ops_s_real_time": 5.72, "bogo_ops_s_usr_sys_time": 45.25, "cpu_used_per_instance": 12.64, "rss_max_kb": 2096, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 26604, "real_time_secs": 8.02, "usr_time_secs": 0.11, "sys_time_secs": 1.01, "bogo_ops_s_real_time": 3318.48, "bogo_ops_s_usr_sys_time": 23769.42, "cpu_used_per_instance": 13.96, "rss_max_kb": 4000, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 50365, "real_time_secs": 8.0, "usr_time_secs": 0.07, "sys_time_secs": 1.03, "bogo_ops_s_real_time": 6292.54, "bogo_ops_s_usr_sys_time": 45874.74, "cpu_used_per_instance": 13.72, "rss_max_kb": 2096, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 113077, "real_time_secs": 8.0, "usr_time_secs": 0.22, "sys_time_secs": 0.95, "bogo_ops_s_real_time": 14129.66, "bogo_ops_s_usr_sys_time": 96649.49, "cpu_used_per_instance": 14.62, "rss_max_kb": 6448, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 97856, "real_time_secs": 8.02, "usr_time_secs": 0.13, "sys_time_secs": 1.06, "bogo_ops_s_real_time": 12199.0, "bogo_ops_s_usr_sys_time": 82212.31, "cpu_used_per_instance": 14.84, "rss_max_kb": 2096, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 9, "real_time_secs": 8.11, "usr_time_secs": 0.04, "sys_time_secs": 0.67, "bogo_ops_s_real_time": 1.11, "bogo_ops_s_usr_sys_time": 12.69, "cpu_used_per_instance": 8.75, "rss_max_kb": 50188, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 11, "real_time_secs": 8.07, "usr_time_secs": 0.01, "sys_time_secs": 0.3, "bogo_ops_s_real_time": 1.36, "bogo_ops_s_usr_sys_time": 35.01, "cpu_used_per_instance": 3.89, "rss_max_kb": 34608, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 161841, "real_time_secs": 8.04, "usr_time_secs": 0.07, "sys_time_secs": 1.24, "bogo_ops_s_real_time": 20136.98, "bogo_ops_s_usr_sys_time": 123493.16, "cpu_used_per_instance": 16.31, "rss_max_kb": 1840, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 88049, "real_time_secs": 8.05, "usr_time_secs": 0.15, "sys_time_secs": 2.22, "bogo_ops_s_real_time": 10938.44, "bogo_ops_s_usr_sys_time": 37086.13, "cpu_used_per_instance": 29.49, "rss_max_kb": 1968, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 2476, "real_time_secs": 16.05, "usr_time_secs": 0.23, "sys_time_secs": 1.62, "bogo_ops_s_real_time": 154.23, "bogo_ops_s_usr_sys_time": 1337.8, "cpu_used_per_instance": 11.53, "rss_max_kb": 1840, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 117785, "real_time_secs": 8.04, "usr_time_secs": 0.37, "sys_time_secs": 0.97, "bogo_ops_s_real_time": 14654.81, "bogo_ops_s_usr_sys_time": 87839.54, "cpu_used_per_instance": 16.68, "rss_max_kb": 3988, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 216994, "real_time_secs": 8.12, "usr_time_secs": 0.87, "sys_time_secs": 16.43, "bogo_ops_s_real_time": 26711.76, "bogo_ops_s_usr_sys_time": 12543.09, "cpu_used_per_instance": 212.96, "rss_max_kb": 1968, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 15950, "real_time_secs": 8.02, "usr_time_secs": 0.14, "sys_time_secs": 0.99, "bogo_ops_s_real_time": 1989.45, "bogo_ops_s_usr_sys_time": 14039.27, "cpu_used_per_instance": 14.17, "rss_max_kb": 1840, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 13, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:55:29.559358 2026-07-04 18:12:49.185895 +542 14 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 2 --syscall-method all --mq 2 --pipe 2 --sem 2 --sem-sysv 2 --shm 2 --shm-sysv 2 --verify --dekker 2 --fifo 2 --futex 2 --peterson 2 --pipeherd 2 --sigq 2 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 146.52}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 47, "real_time_secs": 8.29, "usr_time_secs": 0.02, "sys_time_secs": 0.76, "bogo_ops_s_real_time": 5.67, "bogo_ops_s_usr_sys_time": 60.66, "cpu_used_per_instance": 4.68, "rss_max_kb": 1968, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 16085, "real_time_secs": 8.12, "usr_time_secs": 0.08, "sys_time_secs": 0.69, "bogo_ops_s_real_time": 1981.45, "bogo_ops_s_usr_sys_time": 20956.26, "cpu_used_per_instance": 4.73, "rss_max_kb": 3772, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 22711, "real_time_secs": 8.02, "usr_time_secs": 0.04, "sys_time_secs": 0.54, "bogo_ops_s_real_time": 2831.41, "bogo_ops_s_usr_sys_time": 38841.81, "cpu_used_per_instance": 3.64, "rss_max_kb": 2096, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 21645, "real_time_secs": 8.04, "usr_time_secs": 0.1, "sys_time_secs": 0.56, "bogo_ops_s_real_time": 2691.41, "bogo_ops_s_usr_sys_time": 32635.79, "cpu_used_per_instance": 4.12, "rss_max_kb": 6320, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 9879, "real_time_secs": 8.02, "usr_time_secs": 0.05, "sys_time_secs": 0.51, "bogo_ops_s_real_time": 1231.69, "bogo_ops_s_usr_sys_time": 17707.03, "cpu_used_per_instance": 3.48, "rss_max_kb": 1968, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 8, "real_time_secs": 8.09, "usr_time_secs": 0.02, "sys_time_secs": 0.34, "bogo_ops_s_real_time": 0.99, "bogo_ops_s_usr_sys_time": 22.49, "cpu_used_per_instance": 2.2, "rss_max_kb": 2096, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 4, "real_time_secs": 8.25, "usr_time_secs": 0.01, "sys_time_secs": 0.2, "bogo_ops_s_real_time": 0.48, "bogo_ops_s_usr_sys_time": 18.84, "cpu_used_per_instance": 1.29, "rss_max_kb": 26416, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 77644, "real_time_secs": 8.13, "usr_time_secs": 0.01, "sys_time_secs": 0.72, "bogo_ops_s_real_time": 9547.53, "bogo_ops_s_usr_sys_time": 105452.87, "cpu_used_per_instance": 4.53, "rss_max_kb": 1840, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 46325, "real_time_secs": 8.11, "usr_time_secs": 0.07, "sys_time_secs": 0.76, "bogo_ops_s_real_time": 5710.91, "bogo_ops_s_usr_sys_time": 56251.34, "cpu_used_per_instance": 5.08, "rss_max_kb": 1840, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 1508, "real_time_secs": 16.18, "usr_time_secs": 0.1, "sys_time_secs": 0.85, "bogo_ops_s_real_time": 93.22, "bogo_ops_s_usr_sys_time": 1595.67, "cpu_used_per_instance": 2.92, "rss_max_kb": 1712, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 50151, "real_time_secs": 8.13, "usr_time_secs": 0.29, "sys_time_secs": 0.34, "bogo_ops_s_real_time": 6166.52, "bogo_ops_s_usr_sys_time": 78609.54, "cpu_used_per_instance": 3.92, "rss_max_kb": 3888, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 596152, "real_time_secs": 8.14, "usr_time_secs": 1.6, "sys_time_secs": 23.77, "bogo_ops_s_real_time": 73237.64, "bogo_ops_s_usr_sys_time": 23499.36, "cpu_used_per_instance": 155.83, "rss_max_kb": 1840, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 16453, "real_time_secs": 8.05, "usr_time_secs": 0.08, "sys_time_secs": 0.44, "bogo_ops_s_real_time": 2043.25, "bogo_ops_s_usr_sys_time": 31613.76, "cpu_used_per_instance": 3.23, "rss_max_kb": 1840, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 26, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:55:39.169635 2026-07-04 18:12:49.185895 +543 14 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 3 --syscall-method all --mq 3 --pipe 3 --sem 3 --sem-sysv 3 --shm 3 --shm-sysv 3 --verify --dekker 3 --fifo 3 --futex 3 --peterson 3 --pipeherd 3 --sigq 3 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 157.41}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 51, "real_time_secs": 9.09, "usr_time_secs": 0.05, "sys_time_secs": 0.89, "bogo_ops_s_real_time": 5.61, "bogo_ops_s_usr_sys_time": 54.51, "cpu_used_per_instance": 3.43, "rss_max_kb": 2020, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 8972, "real_time_secs": 8.46, "usr_time_secs": 0.1, "sys_time_secs": 0.57, "bogo_ops_s_real_time": 1060.6, "bogo_ops_s_usr_sys_time": 13492.44, "cpu_used_per_instance": 2.62, "rss_max_kb": 3872, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 26272, "real_time_secs": 8.23, "usr_time_secs": 0.07, "sys_time_secs": 0.66, "bogo_ops_s_real_time": 3190.72, "bogo_ops_s_usr_sys_time": 35877.57, "cpu_used_per_instance": 2.96, "rss_max_kb": 2148, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 34548, "real_time_secs": 8.31, "usr_time_secs": 0.13, "sys_time_secs": 0.7, "bogo_ops_s_real_time": 4159.45, "bogo_ops_s_usr_sys_time": 41762.06, "cpu_used_per_instance": 3.32, "rss_max_kb": 6420, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 6438, "real_time_secs": 8.08, "usr_time_secs": 0.04, "sys_time_secs": 0.44, "bogo_ops_s_real_time": 796.69, "bogo_ops_s_usr_sys_time": 13533.63, "cpu_used_per_instance": 1.96, "rss_max_kb": 2020, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 16, "real_time_secs": 8.86, "usr_time_secs": 0.03, "sys_time_secs": 0.44, "bogo_ops_s_real_time": 1.81, "bogo_ops_s_usr_sys_time": 33.79, "cpu_used_per_instance": 1.78, "rss_max_kb": 9192, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 5, "real_time_secs": 8.94, "usr_time_secs": 0.02, "sys_time_secs": 0.24, "bogo_ops_s_real_time": 0.56, "bogo_ops_s_usr_sys_time": 19.38, "cpu_used_per_instance": 0.96, "rss_max_kb": 18148, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 103315, "real_time_secs": 8.67, "usr_time_secs": 0.04, "sys_time_secs": 0.82, "bogo_ops_s_real_time": 11918.6, "bogo_ops_s_usr_sys_time": 120223.89, "cpu_used_per_instance": 3.3, "rss_max_kb": 1892, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 84155, "real_time_secs": 8.82, "usr_time_secs": 0.1, "sys_time_secs": 1.36, "bogo_ops_s_real_time": 9541.83, "bogo_ops_s_usr_sys_time": 57647.91, "cpu_used_per_instance": 5.52, "rss_max_kb": 1892, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 1310, "real_time_secs": 17.42, "usr_time_secs": 0.19, "sys_time_secs": 0.96, "bogo_ops_s_real_time": 75.22, "bogo_ops_s_usr_sys_time": 1133.15, "cpu_used_per_instance": 2.21, "rss_max_kb": 1892, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 92529, "real_time_secs": 8.78, "usr_time_secs": 0.02, "sys_time_secs": 0.81, "bogo_ops_s_real_time": 10538.59, "bogo_ops_s_usr_sys_time": 110575.47, "cpu_used_per_instance": 3.18, "rss_max_kb": 3988, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 942003, "real_time_secs": 8.92, "usr_time_secs": 1.95, "sys_time_secs": 24.99, "bogo_ops_s_real_time": 105601.6, "bogo_ops_s_usr_sys_time": 34974.52, "cpu_used_per_instance": 100.65, "rss_max_kb": 1892, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 12650, "real_time_secs": 8.55, "usr_time_secs": 0.07, "sys_time_secs": 0.59, "bogo_ops_s_real_time": 1479.07, "bogo_ops_s_usr_sys_time": 19128.44, "cpu_used_per_instance": 2.58, "rss_max_kb": 1892, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 39, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:55:48.846848 2026-07-04 18:12:49.185895 +544 14 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 4 --syscall-method all --mq 4 --pipe 4 --sem 4 --sem-sysv 4 --shm 4 --shm-sysv 4 --verify --dekker 4 --fifo 4 --futex 4 --peterson 4 --pipeherd 4 --sigq 4 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 156.04}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 58, "real_time_secs": 9.12, "usr_time_secs": 0.06, "sys_time_secs": 1.17, "bogo_ops_s_real_time": 6.36, "bogo_ops_s_usr_sys_time": 47.24, "cpu_used_per_instance": 3.37, "rss_max_kb": 1968, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 17991, "real_time_secs": 8.03, "usr_time_secs": 0.15, "sys_time_secs": 0.94, "bogo_ops_s_real_time": 2241.76, "bogo_ops_s_usr_sys_time": 16481.57, "cpu_used_per_instance": 3.4, "rss_max_kb": 4000, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 42354, "real_time_secs": 8.13, "usr_time_secs": 0.06, "sys_time_secs": 0.92, "bogo_ops_s_real_time": 5208.14, "bogo_ops_s_usr_sys_time": 43307.63, "cpu_used_per_instance": 3.01, "rss_max_kb": 2096, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 33250, "real_time_secs": 8.1, "usr_time_secs": 0.24, "sys_time_secs": 0.85, "bogo_ops_s_real_time": 4105.75, "bogo_ops_s_usr_sys_time": 30386.22, "cpu_used_per_instance": 3.38, "rss_max_kb": 6420, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 8718, "real_time_secs": 8.01, "usr_time_secs": 0.08, "sys_time_secs": 0.55, "bogo_ops_s_real_time": 1088.28, "bogo_ops_s_usr_sys_time": 13867.57, "cpu_used_per_instance": 1.96, "rss_max_kb": 1840, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 26, "real_time_secs": 8.74, "usr_time_secs": 0.03, "sys_time_secs": 0.57, "bogo_ops_s_real_time": 2.98, "bogo_ops_s_usr_sys_time": 43.09, "cpu_used_per_instance": 1.73, "rss_max_kb": 2096, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 7, "real_time_secs": 9.11, "usr_time_secs": 0.02, "sys_time_secs": 0.29, "bogo_ops_s_real_time": 0.77, "bogo_ops_s_usr_sys_time": 22.15, "cpu_used_per_instance": 0.87, "rss_max_kb": 18352, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 127444, "real_time_secs": 8.81, "usr_time_secs": 0.06, "sys_time_secs": 0.95, "bogo_ops_s_real_time": 14464.96, "bogo_ops_s_usr_sys_time": 125614.67, "cpu_used_per_instance": 2.88, "rss_max_kb": 1840, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 86553, "real_time_secs": 8.82, "usr_time_secs": 0.12, "sys_time_secs": 1.54, "bogo_ops_s_real_time": 9817.4, "bogo_ops_s_usr_sys_time": 52191.36, "cpu_used_per_instance": 4.7, "rss_max_kb": 1840, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 1150, "real_time_secs": 17.2, "usr_time_secs": 0.21, "sys_time_secs": 1.3, "bogo_ops_s_real_time": 66.85, "bogo_ops_s_usr_sys_time": 760.71, "cpu_used_per_instance": 2.2, "rss_max_kb": 1840, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 114064, "real_time_secs": 8.71, "usr_time_secs": 0.06, "sys_time_secs": 0.93, "bogo_ops_s_real_time": 13099.09, "bogo_ops_s_usr_sys_time": 115168.93, "cpu_used_per_instance": 2.84, "rss_max_kb": 3988, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 1169160, "real_time_secs": 8.77, "usr_time_secs": 1.7, "sys_time_secs": 22.5, "bogo_ops_s_real_time": 133258.47, "bogo_ops_s_usr_sys_time": 48299.51, "cpu_used_per_instance": 68.98, "rss_max_kb": 1840, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 12915, "real_time_secs": 8.4, "usr_time_secs": 0.11, "sys_time_secs": 0.68, "bogo_ops_s_real_time": 1537.13, "bogo_ops_s_usr_sys_time": 16385.73, "cpu_used_per_instance": 2.35, "rss_max_kb": 1840, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 52, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-04 18:55:59.4821 2026-07-04 18:12:49.185895 +545 14 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-04 18:56:12.566647 2026-07-04 18:56:12.566649 +546 14 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-04 18:55:27' --until '2026-07-04 18:56:10' 0 OOM records 2026-07-04 18:55:27.134309 2026-07-04 18:56:10.233597 +547 14 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-04 18:55:27' --until '2026-07-04 18:56:10' 0 systemd errors records 2026-07-04 18:55:27.134309 2026-07-04 18:56:10.233597 +548 15 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-06 09:51:40.037484 2026-07-06 09:51:40.037489 +549 15 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-06 09:56:32.960178 2026-07-06 09:56:32.96018 +550 15 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-06 09:56:32' --until '2026-07-06 09:56:32' 0 OOM records 2026-07-06 09:56:32.115052 2026-07-06 09:56:32.540921 +551 15 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-06 09:56:32' --until '2026-07-06 09:56:32' 0 systemd errors records 2026-07-06 09:56:32.115052 2026-07-06 09:56:32.540921 +552 15 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-06 09:51:40.037484 2026-07-06 09:51:40.037489 +553 15 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-06 09:56:48.291705 2026-07-06 09:56:48.291708 +554 15 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-06 09:56:33' --until '2026-07-06 09:56:47' 0 OOM records 2026-07-06 09:56:33.80856 2026-07-06 09:56:47.871105 +555 15 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-06 09:56:33' --until '2026-07-06 09:56:47' 0 systemd errors records 2026-07-06 09:56:33.80856 2026-07-06 09:56:47.871105 +556 16 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-06 10:07:12.467982 2026-07-06 10:07:12.467987 +557 16 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-06 10:10:12.685493 2026-07-06 10:10:12.685495 +572 16 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1409MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260706-101109Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260706-101109Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260706-101109Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260706-101109Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260706-101109Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1409MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4859904, "io_kbytes": 4746, "bw_bytes": 971786, "bw": 949, "iops": 1898.020396, "runtime": 5001, "total_ios": 9492, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 129471, "max": 10274101, "mean": 246747.906764, "stddev": 183000.574341, "N": 9492}, "clat_ns": {"min": 42577, "max": 84704444, "mean": 250342.246629, "stddev": 874373.282963, "N": 9492, "percentile": {"1.000000": 44288, "5.000000": 45312, "10.000000": 47360, "20.000000": 207872, "30.000000": 214016, "40.000000": 222208, "50.000000": 232448, "60.000000": 257024, "70.000000": 284672, "80.000000": 313344, "90.000000": 362496, "95.000000": 399360, "99.000000": 518144, "99.500000": 569344, "99.900000": 716800, "99.950000": 1744896, "99.990000": 84410368}}, "lat_ns": {"min": 328132, "max": 84842634, "mean": 497090.153392, "stddev": 882870.671773, "N": 9492}, "bw_min": 891, "bw_max": 982, "bw_agg": 99.366733, "bw_mean": 943.25, "bw_dev": 39.007478, "bw_samples": 4, "iops_min": 1784, "iops_max": 1964, "iops_mean": 1887.25, "iops_stddev": 77.085991, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 17.656469, "sys_cpu": 56.208758, "ctx": 9534, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 12.442056, "100": 2.043826, "250": 43.952802, "500": 40.370839, "750": 1.09566, "1000": 0.02107}, "latency_ms": {"2": 0.031606, "4": 0.031606, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.010535, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-06 10:11:10.1602 2026-07-06 10:07:12.467987 +573 17 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-07 13:43:06.807714 2026-07-07 13:43:06.807721 +574 17 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 13:47:27.963009 2026-07-07 13:47:27.963014 +575 17 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 13:47:26' --until '2026-07-07 13:47:27' 0 OOM records 2026-07-07 13:47:26.593712 2026-07-07 13:47:27.307808 +576 17 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 13:47:26' --until '2026-07-07 13:47:27' 0 systemd errors records 2026-07-07 13:47:26.593712 2026-07-07 13:47:27.307808 +577 17 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-07 13:43:06.807714 2026-07-07 13:43:06.807721 +578 17 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 13:47:46.488996 2026-07-07 13:47:46.488999 +579 17 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 13:47:29' --until '2026-07-07 13:47:46' 0 OOM records 2026-07-07 13:47:29.468464 2026-07-07 13:47:46.068557 +580 17 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 13:47:29' --until '2026-07-07 13:47:46' 0 systemd errors records 2026-07-07 13:47:29.468464 2026-07-07 13:47:46.068557 +581 17 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 50% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 17.5}, "metrics": {"0": {"bogo_ops": 1393, "real_time_secs": 11.06, "usr_time_secs": 2.33, "sys_time_secs": 4.11, "bogo_ops_s_real_time": 126.0, "bogo_ops_s_usr_sys_time": 216.25, "cpu_used_per_instance": 14.57, "rss_max_kb": 2252, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-07 13:47:47.644993 2026-07-07 13:43:06.807721 +582 17 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 60% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 18.19}, "metrics": {"0": {"bogo_ops": 1648, "real_time_secs": 11.07, "usr_time_secs": 2.57, "sys_time_secs": 4.55, "bogo_ops_s_real_time": 148.92, "bogo_ops_s_usr_sys_time": 231.34, "cpu_used_per_instance": 16.09, "rss_max_kb": 2268, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-07 13:47:59.403734 2026-07-07 13:43:06.807721 +583 17 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 70% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 15.81}, "metrics": {"0": {"bogo_ops": 1085, "real_time_secs": 11.05, "usr_time_secs": 1.75, "sys_time_secs": 3.01, "bogo_ops_s_real_time": 98.23, "bogo_ops_s_usr_sys_time": 227.98, "cpu_used_per_instance": 10.77, "rss_max_kb": 2200, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-07 13:48:11.189029 2026-07-07 13:43:06.807721 +584 18 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-07 13:49:10.392122 2026-07-07 13:49:10.392128 +585 18 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 13:53:01.964986 2026-07-07 13:53:01.964991 +586 18 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 13:53:00' --until '2026-07-07 13:53:01' 0 OOM records 2026-07-07 13:53:00.622434 2026-07-07 13:53:01.306441 +587 18 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 13:53:00' --until '2026-07-07 13:53:01' 0 systemd errors records 2026-07-07 13:53:00.622434 2026-07-07 13:53:01.306441 +588 18 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-07 13:49:10.392122 2026-07-07 13:49:10.392128 +589 18 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 13:53:20.099086 2026-07-07 13:53:20.09909 +590 18 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 13:53:03' --until '2026-07-07 13:53:19' 0 OOM records 2026-07-07 13:53:03.377491 2026-07-07 13:53:19.677572 +591 18 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 13:53:03' --until '2026-07-07 13:53:19' 0 systemd errors records 2026-07-07 13:53:03.377491 2026-07-07 13:53:19.677572 +592 18 loader /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-07_13:53:21.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 18.01}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboEwd5G6 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12192130088806152}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10230469703674316}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acce2zFV4 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 55955\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13103818893432617}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11273336410522461}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 46815\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42415\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 33183\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12122416496276855}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accS2gCS0 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5635478496551514}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acchCnD0K as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2750284671783447}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11274290084838867}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accPCFefe as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accPCFefe/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14297151565551758}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accSPpw9A as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accSPpw9A/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16543841361999512}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acceycxEh as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.2098984718322754}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.22602343559265137}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20159125328063965}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2669334411621094}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.21501922607421875}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.7421951293945312}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.23251795768737793}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2920651435852051}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20899319648742676}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20838427543640137}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.21169495582580566}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.202544927597046}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.232869863510132}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.227245569229126}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20986080169677734}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binsQJ5a7 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.21921944618225098}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2149505615234375}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binFVW3La as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2121427059173584}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin2TrPrc as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3428335189819336}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_biniHRSFt as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.28068971633911133}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "36": {"test": "bpf_prog05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "37": {"test": "bpf_prog06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "38": {"test": "bpf_prog07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "39": {"test": "brk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "40": {"test": "brk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "41": {"test": "capget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "42": {"test": "capget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "43": {"test": "capset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "44": {"test": "capset02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "45": {"test": "capset03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "46": {"test": "capset04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "47": {"test": "cacheflush01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "48": {"test": "cachestat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "49": {"test": "cachestat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "50": {"test": "cachestat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "51": {"test": "cachestat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "52": {"test": "chdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "53": {"test": "chdir01A", "status": "pass", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0}, "54": {"test": "chdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "55": {"test": "chmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "56": {"test": "chmod01A", "status": "pass", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0}, "57": {"test": "chmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "58": {"test": "chmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "59": {"test": "chmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "60": {"test": "chmod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "61": {"test": "chmod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "62": {"test": "chmod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "63": {"test": "chown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "64": {"test": "chown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "65": {"test": "chown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "66": {"test": "chown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "67": {"test": "chown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "68": {"test": "chown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "69": {"test": "chown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "70": {"test": "chown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "71": {"test": "chown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "72": {"test": "chown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "73": {"test": "chroot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "74": {"test": "chroot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "75": {"test": "chroot03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "76": {"test": "chroot04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "77": {"test": "clock_adjtime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "78": {"test": "clock_adjtime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "79": {"test": "clock_getres01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "80": {"test": "clock_nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "81": {"test": "clock_nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "82": {"test": "clock_nanosleep03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "83": {"test": "clock_nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "84": {"test": "clock_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "85": {"test": "clock_gettime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "86": {"test": "clock_gettime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "87": {"test": "clock_gettime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "88": {"test": "leapsec01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "89": {"test": "clock_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "90": {"test": "clock_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "91": {"test": "clock_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "92": {"test": "clone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "93": {"test": "clone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "94": {"test": "clone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "95": {"test": "clone04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "96": {"test": "clone05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "97": {"test": "clone06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "98": {"test": "clone07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "99": {"test": "clone08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "100": {"test": "clone09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "101": {"test": "clone301", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "102": {"test": "clone302", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "103": {"test": "clone303", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "104": {"test": "close01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "105": {"test": "close02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "106": {"test": "close_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "107": {"test": "close_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "108": {"test": "confstr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "109": {"test": "connect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "110": {"test": "connect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "111": {"test": "creat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "112": {"test": "creat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "113": {"test": "creat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "114": {"test": "creat05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "115": {"test": "creat06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "116": {"test": "creat07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "117": {"test": "creat08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "118": {"test": "creat09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "119": {"test": "delete_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "120": {"test": "delete_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "121": {"test": "delete_module03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "122": {"test": "dup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "123": {"test": "dup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "124": {"test": "dup03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "125": {"test": "dup04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "126": {"test": "dup05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "127": {"test": "dup06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "128": {"test": "dup07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "129": {"test": "dup201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "130": {"test": "dup202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "131": {"test": "dup203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "132": {"test": "dup204", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "133": {"test": "dup205", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "134": {"test": "dup206", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "135": {"test": "dup207", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "136": {"test": "dup3_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "137": {"test": "dup3_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "138": {"test": "epoll_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "139": {"test": "epoll_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "140": {"test": "epoll_create1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "141": {"test": "epoll_create1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "142": {"test": "epoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "143": {"test": "epoll_ctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "144": {"test": "epoll_ctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "145": {"test": "epoll_ctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "146": {"test": "epoll_ctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "147": {"test": "epoll_ctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "148": {"test": "epoll_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "149": {"test": "epoll_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "150": {"test": "epoll_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "151": {"test": "epoll_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "152": {"test": "epoll_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "153": {"test": "epoll_wait06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "154": {"test": "epoll_wait07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "155": {"test": "epoll_pwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "156": {"test": "epoll_pwait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "157": {"test": "epoll_pwait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "158": {"test": "epoll_pwait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "159": {"test": "epoll_pwait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "160": {"test": "eventfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "161": {"test": "eventfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "162": {"test": "eventfd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "163": {"test": "eventfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "164": {"test": "eventfd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "165": {"test": "eventfd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "166": {"test": "eventfd2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "167": {"test": "eventfd2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "168": {"test": "eventfd2_03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "169": {"test": "execl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "170": {"test": "execle01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "171": {"test": "execlp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "172": {"test": "execv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "173": {"test": "execve01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "174": {"test": "execve02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "175": {"test": "execve03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "176": {"test": "execve04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "177": {"test": "execve05", "status": "pass", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0}, "178": {"test": "execve06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "179": {"test": "execvp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "180": {"test": "execveat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "181": {"test": "execveat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "182": {"test": "execveat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "183": {"test": "exit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "184": {"test": "exit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "185": {"test": "exit_group01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "186": {"test": "faccessat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "187": {"test": "faccessat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "188": {"test": "faccessat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "189": {"test": "faccessat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "190": {"test": "fallocate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "191": {"test": "fallocate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "192": {"test": "fallocate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "193": {"test": "fallocate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "194": {"test": "fallocate05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "195": {"test": "fallocate06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "196": {"test": "fsetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "197": {"test": "fsetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "198": {"test": "posix_fadvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "199": {"test": "posix_fadvise01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "200": {"test": "posix_fadvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "201": {"test": "posix_fadvise02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "202": {"test": "posix_fadvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "203": {"test": "posix_fadvise03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "204": {"test": "posix_fadvise04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "205": {"test": "posix_fadvise04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "206": {"test": "fchdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "207": {"test": "fchdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "208": {"test": "fchdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "209": {"test": "fchmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "210": {"test": "fchmod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "211": {"test": "fchmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "212": {"test": "fchmod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "213": {"test": "fchmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "214": {"test": "fchmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "215": {"test": "fchmodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "216": {"test": "fchmodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "217": {"test": "fchmodat2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "218": {"test": "fchmodat2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "219": {"test": "fchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "220": {"test": "fchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "221": {"test": "fchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "222": {"test": "fchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "223": {"test": "fchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "224": {"test": "fchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "225": {"test": "fchown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "226": {"test": "fchown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "227": {"test": "fchown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "228": {"test": "fchown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "229": {"test": "fchownat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "230": {"test": "fchownat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "231": {"test": "fcntl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "232": {"test": "fcntl01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "233": {"test": "fcntl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "234": {"test": "fcntl02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "235": {"test": "fcntl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "236": {"test": "fcntl03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "237": {"test": "fcntl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "238": {"test": "fcntl04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "239": {"test": "fcntl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "240": {"test": "fcntl05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "241": {"test": "fcntl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "242": {"test": "fcntl07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "243": {"test": "fcntl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "244": {"test": "fcntl08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "245": {"test": "fcntl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "246": {"test": "fcntl09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "247": {"test": "fcntl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "248": {"test": "fcntl10_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "249": {"test": "fcntl11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "250": {"test": "fcntl11_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "251": {"test": "fcntl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "252": {"test": "fcntl12_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "253": {"test": "fcntl13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "254": {"test": "fcntl13_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "255": {"test": "fcntl14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "256": {"test": "fcntl14_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "257": {"test": "fcntl15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "258": {"test": "fcntl15_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "259": {"test": "fcntl16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "260": {"test": "fcntl16_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "261": {"test": "fcntl17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "262": {"test": "fcntl17_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "263": {"test": "fcntl18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "264": {"test": "fcntl18_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "265": {"test": "fcntl19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "266": {"test": "fcntl19_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "267": {"test": "fcntl20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "268": {"test": "fcntl20_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "269": {"test": "fcntl21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "270": {"test": "fcntl21_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "271": {"test": "fcntl22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "272": {"test": "fcntl22_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "273": {"test": "fcntl23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "274": {"test": "fcntl23_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "275": {"test": "fcntl24", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "276": {"test": "fcntl24_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "277": {"test": "fcntl25", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "278": {"test": "fcntl25_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "279": {"test": "fcntl26", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "280": {"test": "fcntl26_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "281": {"test": "fcntl27", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "282": {"test": "fcntl27_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "283": {"test": "fcntl29", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "284": {"test": "fcntl29_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "285": {"test": "fcntl30", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "286": {"test": "fcntl30_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "287": {"test": "fcntl31", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "288": {"test": "fcntl31_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "289": {"test": "fcntl32", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "290": {"test": "fcntl32_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "291": {"test": "fcntl33", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "292": {"test": "fcntl33_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "293": {"test": "fcntl34", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "294": {"test": "fcntl34_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "295": {"test": "fcntl35", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "296": {"test": "fcntl35_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "297": {"test": "fcntl36", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "298": {"test": "fcntl36_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "299": {"test": "fcntl37", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "300": {"test": "fcntl37_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "301": {"test": "fcntl38", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "302": {"test": "fcntl38_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "303": {"test": "fcntl39", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "304": {"test": "fcntl39_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "305": {"test": "fdatasync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "306": {"test": "fdatasync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "307": {"test": "fdatasync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "308": {"test": "fgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "309": {"test": "fgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "310": {"test": "fgetxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "311": {"test": "finit_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "312": {"test": "finit_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "313": {"test": "flistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "314": {"test": "flistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "315": {"test": "flistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "316": {"test": "flock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "317": {"test": "flock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "318": {"test": "flock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "319": {"test": "flock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "320": {"test": "flock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "321": {"test": "fmtmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "322": {"test": "fork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "323": {"test": "fork03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "324": {"test": "fork04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "325": {"test": "fork05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "326": {"test": "fork06", "status": "pass", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0}, "327": {"test": "fork07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "328": {"test": "fork08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "329": {"test": "fork09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "330": {"test": "fork10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "331": {"test": "fork11", "status": "pass", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0}, "332": {"test": "fork13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "333": {"test": "fork14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "334": {"test": "fpathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "335": {"test": "fremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "336": {"test": "fremovexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "337": {"test": "fsconfig01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "338": {"test": "fsconfig02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "339": {"test": "fsconfig03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "340": {"test": "fsmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "341": {"test": "fsmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "342": {"test": "fsopen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "343": {"test": "fsopen02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "344": {"test": "fspick01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "345": {"test": "fspick02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "346": {"test": "fstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "347": {"test": "fstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "348": {"test": "fstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "349": {"test": "fstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "350": {"test": "fstatat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "351": {"test": "fstatfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "352": {"test": "fstatfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "353": {"test": "fstatfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "354": {"test": "fstatfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "355": {"test": "fsync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "356": {"test": "fsync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "357": {"test": "fsync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "358": {"test": "fsync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "359": {"test": "ftruncate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "360": {"test": "ftruncate01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "361": {"test": "ftruncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "362": {"test": "ftruncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "363": {"test": "ftruncate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "364": {"test": "ftruncate04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "365": {"test": "futimesat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "366": {"test": "getcontext01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "367": {"test": "getcpu01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "368": {"test": "getcpu02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "369": {"test": "getcwd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "370": {"test": "getcwd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "371": {"test": "getcwd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "372": {"test": "getcwd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "373": {"test": "getdents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "374": {"test": "getdents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "375": {"test": "getdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "376": {"test": "getegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "377": {"test": "getegid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "378": {"test": "getegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "379": {"test": "getegid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "380": {"test": "geteuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "381": {"test": "geteuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "382": {"test": "geteuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "383": {"test": "geteuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "384": {"test": "getgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "385": {"test": "getgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "386": {"test": "getgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "387": {"test": "getgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "388": {"test": "getgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "389": {"test": "getgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "390": {"test": "getgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "391": {"test": "getgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "392": {"test": "gethostbyname_r01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "393": {"test": "gethostid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "394": {"test": "gethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "395": {"test": "gethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "396": {"test": "getitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "397": {"test": "getitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "398": {"test": "getpagesize01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "399": {"test": "getpeername01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "400": {"test": "getpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "401": {"test": "getpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "402": {"test": "getpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "403": {"test": "getpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "404": {"test": "getpid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "405": {"test": "getppid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "406": {"test": "getppid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "407": {"test": "getpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "408": {"test": "getpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "409": {"test": "getrandom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "410": {"test": "getrandom02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "411": {"test": "getrandom03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "412": {"test": "getrandom04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "413": {"test": "getrandom05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "414": {"test": "getresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "415": {"test": "getresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "416": {"test": "getresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "417": {"test": "getresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "418": {"test": "getresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "419": {"test": "getresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "420": {"test": "getresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "421": {"test": "getresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "422": {"test": "getresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "423": {"test": "getresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "424": {"test": "getresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "425": {"test": "getresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "426": {"test": "getrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "427": {"test": "getrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "428": {"test": "getrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "429": {"test": "get_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "430": {"test": "get_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "431": {"test": "get_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "432": {"test": "getrusage01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "433": {"test": "getrusage02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "434": {"test": "getrusage03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "435": {"test": "getrusage04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "436": {"test": "getsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "437": {"test": "getsid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "438": {"test": "getsockname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "439": {"test": "getsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "440": {"test": "getsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "441": {"test": "gettid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "442": {"test": "gettid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "443": {"test": "gettimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "444": {"test": "gettimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "445": {"test": "getuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "446": {"test": "getuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "447": {"test": "getuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "448": {"test": "getuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "449": {"test": "getxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "450": {"test": "getxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "451": {"test": "getxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "452": {"test": "getxattr04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "453": {"test": "getxattr05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "454": {"test": "init_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "455": {"test": "init_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "456": {"test": "ioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "457": {"test": "ioctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "458": {"test": "ioctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "459": {"test": "ioctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "460": {"test": "ioctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "461": {"test": "ioctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "462": {"test": "ioctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "463": {"test": "ioctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "464": {"test": "ioctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "465": {"test": "ioctl_loop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "466": {"test": "ioctl_loop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "467": {"test": "ioctl_loop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "468": {"test": "ioctl_loop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "469": {"test": "ioctl_loop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "470": {"test": "ioctl_loop06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "471": {"test": "ioctl_loop07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "472": {"test": "ioctl_ns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "473": {"test": "ioctl_ns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "474": {"test": "ioctl_ns03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "475": {"test": "ioctl_ns04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "476": {"test": "ioctl_ns05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "477": {"test": "ioctl_ns06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "478": {"test": "ioctl_ns07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "479": {"test": "ioctl_sg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "480": {"test": "ioctl_ficlone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "481": {"test": "ioctl_ficlone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "482": {"test": "ioctl_ficlone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "483": {"test": "ioctl_ficlonerange01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "484": {"test": "ioctl_ficlonerange02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "485": {"test": "inotify_init1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "486": {"test": "inotify_init1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "487": {"test": "inotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "488": {"test": "inotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "489": {"test": "inotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "490": {"test": "inotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "491": {"test": "inotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "492": {"test": "inotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "493": {"test": "inotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "494": {"test": "inotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "495": {"test": "inotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "496": {"test": "inotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "497": {"test": "inotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "498": {"test": "inotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "499": {"test": "fanotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "500": {"test": "fanotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "501": {"test": "fanotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "502": {"test": "fanotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "503": {"test": "fanotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "504": {"test": "fanotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "505": {"test": "fanotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "506": {"test": "fanotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "507": {"test": "fanotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "508": {"test": "fanotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "509": {"test": "fanotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "510": {"test": "fanotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "511": {"test": "fanotify13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "512": {"test": "fanotify14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "513": {"test": "fanotify15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "514": {"test": "fanotify16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "515": {"test": "fanotify17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "516": {"test": "fanotify18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "517": {"test": "fanotify19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "518": {"test": "fanotify20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "519": {"test": "fanotify21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "520": {"test": "fanotify22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "521": {"test": "fanotify23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "522": {"test": "ioperm01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "523": {"test": "ioperm02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "524": {"test": "iopl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "525": {"test": "iopl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "526": {"test": "ioprio_get01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "527": {"test": "ioprio_set01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "528": {"test": "ioprio_set02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "529": {"test": "ioprio_set03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "530": {"test": "io_cancel01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "531": {"test": "io_cancel02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "532": {"test": "io_destroy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "533": {"test": "io_destroy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "534": {"test": "io_getevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "535": {"test": "io_getevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "536": {"test": "io_pgetevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "537": {"test": "io_pgetevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "538": {"test": "io_setup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "539": {"test": "io_setup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "540": {"test": "io_submit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "541": {"test": "io_submit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "542": {"test": "io_submit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "543": {"test": "keyctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "544": {"test": "keyctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "545": {"test": "keyctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "546": {"test": "keyctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "547": {"test": "keyctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "548": {"test": "keyctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "549": {"test": "keyctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "550": {"test": "keyctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "551": {"test": "keyctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "552": {"test": "kcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "553": {"test": "kcmp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "554": {"test": "kcmp03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "555": {"test": "kill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "556": {"test": "kill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "557": {"test": "kill05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "558": {"test": "kill06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "559": {"test": "kill07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "560": {"test": "kill08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "561": {"test": "kill09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "562": {"test": "kill10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "563": {"test": "kill11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "564": {"test": "kill12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "565": {"test": "kill13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "566": {"test": "landlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "567": {"test": "landlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "568": {"test": "landlock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "569": {"test": "landlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "570": {"test": "landlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "571": {"test": "landlock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "572": {"test": "landlock07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "573": {"test": "landlock08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "574": {"test": "lchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "575": {"test": "lchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "576": {"test": "lchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "577": {"test": "lchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "578": {"test": "lchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "579": {"test": "lchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "580": {"test": "lgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "581": {"test": "lgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "582": {"test": "link01", "status": "pass", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0}, "583": {"test": "link02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "584": {"test": "link04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "585": {"test": "link05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "586": {"test": "link08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "587": {"test": "linkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "588": {"test": "linkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "589": {"test": "listen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "590": {"test": "listmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "591": {"test": "listmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "592": {"test": "listmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "593": {"test": "listmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "594": {"test": "listxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "595": {"test": "listxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "596": {"test": "listxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "597": {"test": "llistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "598": {"test": "llistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "599": {"test": "llistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "600": {"test": "llseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "601": {"test": "llseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "602": {"test": "llseek03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "603": {"test": "lremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "604": {"test": "lseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "605": {"test": "lseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "606": {"test": "lseek07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "607": {"test": "lseek11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "608": {"test": "lstat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "609": {"test": "lstat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "610": {"test": "lstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "611": {"test": "lstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "612": {"test": "lstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "613": {"test": "lstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "614": {"test": "mallinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "615": {"test": "mallinfo2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "616": {"test": "mallopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "617": {"test": "mbind01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "618": {"test": "mbind02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "619": {"test": "mbind03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "620": {"test": "mbind04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "621": {"test": "memset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "622": {"test": "memcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "623": {"test": "memcpy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "624": {"test": "migrate_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "625": {"test": "migrate_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "626": {"test": "migrate_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "627": {"test": "mlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "628": {"test": "mlockall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "629": {"test": "mlockall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "630": {"test": "mkdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "631": {"test": "mkdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "632": {"test": "mkdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "633": {"test": "mkdir05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "634": {"test": "mkdir09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "635": {"test": "mkdirat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "636": {"test": "mkdirat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "637": {"test": "mknod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "638": {"test": "mknod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "639": {"test": "mknod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "640": {"test": "mknod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "641": {"test": "mknod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "642": {"test": "mknod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "643": {"test": "mknod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "644": {"test": "mknod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "645": {"test": "mknod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "646": {"test": "mknodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "647": {"test": "mknodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "648": {"test": "mlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "649": {"test": "mlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "650": {"test": "mlock03", "status": "pass", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0}, "651": {"test": "mlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "652": {"test": "mlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "653": {"test": "mlock201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "654": {"test": "mlock202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "655": {"test": "mlock203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "656": {"test": "qmm01", "status": "pass", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0}, "657": {"test": "mmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "658": {"test": "mmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "659": {"test": "mmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "660": {"test": "mmap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "661": {"test": "mmap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "662": {"test": "mmap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "663": {"test": "mmap08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "664": {"test": "mmap09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "665": {"test": "mmap12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "666": {"test": "mmap13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "667": {"test": "mmap14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "668": {"test": "mmap15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "669": {"test": "mmap16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "670": {"test": "mmap17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "671": {"test": "mmap18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "672": {"test": "mmap19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "673": {"test": "mmap20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "674": {"test": "modify_ldt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "675": {"test": "modify_ldt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "676": {"test": "modify_ldt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "677": {"test": "mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "678": {"test": "mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "679": {"test": "mount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "680": {"test": "mount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "681": {"test": "mount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "682": {"test": "mount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "683": {"test": "mount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "684": {"test": "mount_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "685": {"test": "move_mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "686": {"test": "move_mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "687": {"test": "move_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "688": {"test": "move_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "689": {"test": "move_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "690": {"test": "move_pages04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "691": {"test": "move_pages05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "692": {"test": "move_pages06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "693": {"test": "move_pages07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "694": {"test": "move_pages09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "695": {"test": "move_pages10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "696": {"test": "move_pages11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "697": {"test": "move_pages12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "698": {"test": "mprotect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "699": {"test": "mprotect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "700": {"test": "mprotect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "701": {"test": "mprotect04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "702": {"test": "mprotect05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "703": {"test": "pkey01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "704": {"test": "mq_notify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "705": {"test": "mq_notify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "706": {"test": "mq_notify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "707": {"test": "mq_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "708": {"test": "mq_timedreceive01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "709": {"test": "mq_timedsend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "710": {"test": "mq_unlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "711": {"test": "mremap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "712": {"test": "mremap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "713": {"test": "mremap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "714": {"test": "mremap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "715": {"test": "mremap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "716": {"test": "mremap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "717": {"test": "mseal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "718": {"test": "mseal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "719": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "720": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "721": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "722": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "723": {"test": "msgctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "724": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "725": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "726": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "727": {"test": "msgget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "728": {"test": "msgget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "729": {"test": "msgget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "730": {"test": "msgget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "731": {"test": "msgget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "732": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "733": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "734": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "735": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "736": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "737": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "738": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "739": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "740": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "741": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "742": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "743": {"test": "msync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "744": {"test": "msync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "745": {"test": "msync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "746": {"test": "msync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "747": {"test": "munlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "748": {"test": "munlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "749": {"test": "munlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "750": {"test": "munmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "751": {"test": "munmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "752": {"test": "munmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "753": {"test": "nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "754": {"test": "nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "755": {"test": "nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "756": {"test": "name_to_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "757": {"test": "name_to_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "758": {"test": "nftw01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "759": {"test": "nftw6401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "760": {"test": "nice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "761": {"test": "nice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "762": {"test": "nice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "763": {"test": "nice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "764": {"test": "nice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "765": {"test": "open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "766": {"test": "open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "767": {"test": "open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "768": {"test": "open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "769": {"test": "open06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "770": {"test": "open07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "771": {"test": "open08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "772": {"test": "open09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "773": {"test": "open10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "774": {"test": "open11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "775": {"test": "open12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "776": {"test": "open13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "777": {"test": "open14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "778": {"test": "open15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "779": {"test": "openat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "780": {"test": "openat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "781": {"test": "openat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "782": {"test": "openat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "783": {"test": "openat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "784": {"test": "openat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "785": {"test": "openat203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "786": {"test": "open_by_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "787": {"test": "open_by_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "788": {"test": "open_tree01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "789": {"test": "open_tree02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "790": {"test": "mincore01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "791": {"test": "mincore02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "792": {"test": "mincore03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "793": {"test": "mincore04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "794": {"test": "madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "795": {"test": "madvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "796": {"test": "madvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "797": {"test": "madvise05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "798": {"test": "madvise06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "799": {"test": "madvise07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "800": {"test": "madvise08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "801": {"test": "madvise09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "802": {"test": "madvise10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "803": {"test": "madvise11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "804": {"test": "madvise12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "805": {"test": "newuname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "806": {"test": "pathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "807": {"test": "pathconf02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "808": {"test": "pause01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "809": {"test": "pause02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "810": {"test": "pause03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "811": {"test": "personality01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "812": {"test": "personality02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "813": {"test": "pidfd_getfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "814": {"test": "pidfd_getfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "815": {"test": "pidfd_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "816": {"test": "pidfd_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "817": {"test": "pidfd_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "818": {"test": "pidfd_open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "819": {"test": "pidfd_send_signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "820": {"test": "pidfd_send_signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "821": {"test": "pidfd_send_signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "822": {"test": "pipe01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "823": {"test": "pipe02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "824": {"test": "pipe03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "825": {"test": "pipe04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "826": {"test": "pipe05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "827": {"test": "pipe06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "828": {"test": "pipe07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "829": {"test": "pipe08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "830": {"test": "pipe09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "831": {"test": "pipe10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "832": {"test": "pipe11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "833": {"test": "pipe12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "834": {"test": "pipe13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "835": {"test": "pipe14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "836": {"test": "pipe15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "837": {"test": "pipe2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "838": {"test": "pipe2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "839": {"test": "pipe2_04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "840": {"test": "pivot_root01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "841": {"test": "poll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "842": {"test": "poll02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "843": {"test": "ppoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "844": {"test": "prctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "845": {"test": "prctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "846": {"test": "prctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "847": {"test": "prctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "848": {"test": "prctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "849": {"test": "prctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "850": {"test": "prctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "851": {"test": "prctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "852": {"test": "prctl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "853": {"test": "pread01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "854": {"test": "pread01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "855": {"test": "pread02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "856": {"test": "pread02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "857": {"test": "preadv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "858": {"test": "preadv01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "859": {"test": "preadv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "860": {"test": "preadv02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "861": {"test": "preadv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "862": {"test": "preadv03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "863": {"test": "preadv201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "864": {"test": "preadv201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "865": {"test": "preadv202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "866": {"test": "preadv202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "867": {"test": "preadv203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "868": {"test": "preadv203_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "869": {"test": "profil01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "870": {"test": "process_vm_readv01", "status": "pass", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0}, "871": {"test": "process_vm_readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "872": {"test": "process_vm_readv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "873": {"test": "process_vm_writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "874": {"test": "process_vm_writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "875": {"test": "process_madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "876": {"test": "prot_hsymlinks", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "877": {"test": "dirtyc0w", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "878": {"test": "dirtyc0w_shmem", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "879": {"test": "dirtypipe", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "880": {"test": "pselect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "881": {"test": "pselect01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "882": {"test": "pselect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "883": {"test": "pselect02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "884": {"test": "pselect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "885": {"test": "pselect03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "886": {"test": "ptrace01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "887": {"test": "ptrace02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "888": {"test": "ptrace03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "889": {"test": "ptrace04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "890": {"test": "ptrace05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "891": {"test": "ptrace06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "892": {"test": "ptrace07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "893": {"test": "ptrace08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "894": {"test": "ptrace09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "895": {"test": "ptrace10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "896": {"test": "ptrace11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "897": {"test": "pwrite01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "898": {"test": "pwrite02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "899": {"test": "pwrite03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "900": {"test": "pwrite04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "901": {"test": "pwrite01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "902": {"test": "pwrite02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "903": {"test": "pwrite03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "904": {"test": "pwrite04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "905": {"test": "pwritev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "906": {"test": "pwritev01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "907": {"test": "pwritev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "908": {"test": "pwritev02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "909": {"test": "pwritev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "910": {"test": "pwritev03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "911": {"test": "pwritev201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "912": {"test": "pwritev201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "913": {"test": "pwritev202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "914": {"test": "pwritev202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "915": {"test": "quotactl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "916": {"test": "quotactl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "917": {"test": "quotactl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "918": {"test": "quotactl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "919": {"test": "quotactl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "920": {"test": "quotactl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "921": {"test": "quotactl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "922": {"test": "quotactl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "923": {"test": "quotactl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "924": {"test": "read01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "925": {"test": "read02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "926": {"test": "read03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "927": {"test": "read04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "928": {"test": "readahead01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "929": {"test": "readahead02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "930": {"test": "readdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "931": {"test": "readdir21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "932": {"test": "readlink01A", "status": "pass", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "933": {"test": "readlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "934": {"test": "readlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "935": {"test": "readlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "936": {"test": "readlinkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "937": {"test": "readv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "938": {"test": "readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "939": {"test": "realpath01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "940": {"test": "reboot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "941": {"test": "reboot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "942": {"test": "recv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "943": {"test": "recvfrom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "944": {"test": "recvmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "945": {"test": "recvmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "946": {"test": "recvmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "947": {"test": "recvmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "948": {"test": "remap_file_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "949": {"test": "remap_file_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "950": {"test": "removexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "951": {"test": "removexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "952": {"test": "rename01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "953": {"test": "rename01A", "status": "pass", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0}, "954": {"test": "rename03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "955": {"test": "rename04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "956": {"test": "rename05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "957": {"test": "rename06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "958": {"test": "rename07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "959": {"test": "rename08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "960": {"test": "rename09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "961": {"test": "rename10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "962": {"test": "rename11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "963": {"test": "rename12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "964": {"test": "rename13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "965": {"test": "rename14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "966": {"test": "rename15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "967": {"test": "renameat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "968": {"test": "renameat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "969": {"test": "renameat202", "status": "pass", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0}, "970": {"test": "request_key01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "971": {"test": "request_key02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "972": {"test": "request_key03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "973": {"test": "request_key04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "974": {"test": "request_key05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "975": {"test": "request_key06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "976": {"test": "rmdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "977": {"test": "rmdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "978": {"test": "rmdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "979": {"test": "rmdir03A", "status": "pass", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0}, "980": {"test": "rt_sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "981": {"test": "rt_sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "982": {"test": "rt_sigaction03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "983": {"test": "rt_sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "984": {"test": "rt_sigprocmask02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "985": {"test": "rt_sigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "986": {"test": "rt_sigqueueinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "987": {"test": "rt_sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "988": {"test": "rt_sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "989": {"test": "rt_tgsigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "990": {"test": "sbrk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "991": {"test": "sbrk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "992": {"test": "sbrk03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "993": {"test": "sched_get_priority_max01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "994": {"test": "sched_get_priority_max02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "995": {"test": "sched_get_priority_min01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "996": {"test": "sched_get_priority_min02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "997": {"test": "sched_getparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "998": {"test": "sched_getparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "999": {"test": "sched_rr_get_interval01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1000": {"test": "sched_rr_get_interval02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1001": {"test": "sched_rr_get_interval03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1002": {"test": "sched_setparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1003": {"test": "sched_setparam02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1004": {"test": "sched_setparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1005": {"test": "sched_setparam04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1006": {"test": "sched_setparam05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1007": {"test": "sched_getscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1008": {"test": "sched_getscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1009": {"test": "sched_setscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1010": {"test": "sched_setscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1011": {"test": "sched_setscheduler03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1012": {"test": "sched_setscheduler04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1013": {"test": "sched_yield01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1014": {"test": "sched_setaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1015": {"test": "sched_getaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1016": {"test": "sched_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1017": {"test": "sched_getattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1018": {"test": "sched_getattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1019": {"test": "seccomp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1020": {"test": "select01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1021": {"test": "select02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1022": {"test": "select03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1023": {"test": "select04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1024": {"test": "semctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1025": {"test": "semctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1026": {"test": "semctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1027": {"test": "semctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1028": {"test": "semctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1029": {"test": "semctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1030": {"test": "semctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1031": {"test": "semctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1032": {"test": "semctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1033": {"test": "semget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1034": {"test": "semget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1035": {"test": "semget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1036": {"test": "semop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1037": {"test": "semop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1038": {"test": "semop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1039": {"test": "semop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1040": {"test": "semop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1041": {"test": "send01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1042": {"test": "send02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1043": {"test": "sendfile02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1044": {"test": "sendfile02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1045": {"test": "sendfile03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1046": {"test": "sendfile03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1047": {"test": "sendfile04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1048": {"test": "sendfile04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1049": {"test": "sendfile05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1050": {"test": "sendfile05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1051": {"test": "sendfile06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1052": {"test": "sendfile06_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1053": {"test": "sendfile07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1054": {"test": "sendfile07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1055": {"test": "sendfile08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1056": {"test": "sendfile08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1057": {"test": "sendfile09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1058": {"test": "sendfile09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1059": {"test": "sendmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1060": {"test": "sendmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1061": {"test": "sendmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1062": {"test": "sendmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1063": {"test": "sendmmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1064": {"test": "sendto01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1065": {"test": "sendto02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1066": {"test": "sendto03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1067": {"test": "set_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1068": {"test": "set_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1069": {"test": "set_mempolicy03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1070": {"test": "set_mempolicy04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1071": {"test": "set_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1072": {"test": "set_thread_area01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1073": {"test": "set_tid_address01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1074": {"test": "setdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1075": {"test": "setdomainname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1076": {"test": "setdomainname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1077": {"test": "setfsgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1078": {"test": "setfsgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1079": {"test": "setfsgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1080": {"test": "setfsgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1081": {"test": "setfsgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1082": {"test": "setfsgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1083": {"test": "setfsuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1084": {"test": "setfsuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1085": {"test": "setfsuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1086": {"test": "setfsuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1087": {"test": "setfsuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1088": {"test": "setfsuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1089": {"test": "setfsuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1090": {"test": "setfsuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1091": {"test": "setgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1092": {"test": "setgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1093": {"test": "setgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1094": {"test": "setgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1095": {"test": "setgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1096": {"test": "setgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1097": {"test": "setegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1098": {"test": "setegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1099": {"test": "sgetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1100": {"test": "setgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1101": {"test": "setgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1102": {"test": "setgroups02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1103": {"test": "setgroups02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1104": {"test": "setgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1105": {"test": "setgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1106": {"test": "sethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1107": {"test": "sethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1108": {"test": "sethostname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1109": {"test": "setitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1110": {"test": "setitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1111": {"test": "setns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1112": {"test": "setns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1113": {"test": "setpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1114": {"test": "setpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1115": {"test": "setpgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1116": {"test": "setpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1117": {"test": "setpgrp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1118": {"test": "setpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1119": {"test": "setpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1120": {"test": "setregid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1121": {"test": "setregid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1122": {"test": "setregid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1123": {"test": "setregid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1124": {"test": "setregid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1125": {"test": "setregid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1126": {"test": "setregid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1127": {"test": "setregid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1128": {"test": "setresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1129": {"test": "setresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1130": {"test": "setresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1131": {"test": "setresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1132": {"test": "setresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1133": {"test": "setresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1134": {"test": "setresgid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1135": {"test": "setresgid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1136": {"test": "setresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1137": {"test": "setresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1138": {"test": "setresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1139": {"test": "setresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1140": {"test": "setresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1141": {"test": "setresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1142": {"test": "setresuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1143": {"test": "setresuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1144": {"test": "setresuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1145": {"test": "setresuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1146": {"test": "setreuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1147": {"test": "setreuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1148": {"test": "setreuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1149": {"test": "setreuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1150": {"test": "setreuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1151": {"test": "setreuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1152": {"test": "setreuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1153": {"test": "setreuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1154": {"test": "setreuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1155": {"test": "setreuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1156": {"test": "setreuid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1157": {"test": "setreuid06_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1158": {"test": "setreuid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1159": {"test": "setreuid07_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1160": {"test": "setrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1161": {"test": "setrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1162": {"test": "setrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1163": {"test": "setrlimit04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1164": {"test": "setrlimit05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1165": {"test": "setrlimit06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1166": {"test": "setsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1167": {"test": "setsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1168": {"test": "setsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1169": {"test": "setsockopt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1170": {"test": "setsockopt04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1171": {"test": "setsockopt05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1172": {"test": "setsockopt06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1173": {"test": "setsockopt07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1174": {"test": "setsockopt08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1175": {"test": "setsockopt09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1176": {"test": "setsockopt10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1177": {"test": "settimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1178": {"test": "settimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1179": {"test": "setuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1180": {"test": "setuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1181": {"test": "setuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1182": {"test": "setuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1183": {"test": "setuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1184": {"test": "setuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1185": {"test": "setxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1186": {"test": "setxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1187": {"test": "setxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1188": {"test": "shmat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1189": {"test": "shmat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1190": {"test": "shmat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1191": {"test": "shmat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1192": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1193": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1194": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1195": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1196": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1197": {"test": "shmctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1198": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1199": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1200": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1201": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1202": {"test": "shmget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1203": {"test": "shmget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1204": {"test": "shmget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1205": {"test": "shmget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1206": {"test": "shmget06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1207": {"test": "shutdown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1208": {"test": "shutdown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1209": {"test": "sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1210": {"test": "sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1211": {"test": "sigaltstack01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1212": {"test": "sigaltstack02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1213": {"test": "sighold02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1214": {"test": "signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1215": {"test": "signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1216": {"test": "signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1217": {"test": "signal04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1218": {"test": "signal05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1219": {"test": "signal06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1220": {"test": "signalfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1221": {"test": "signalfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1222": {"test": "signalfd4_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1223": {"test": "signalfd4_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1224": {"test": "sigpending02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1225": {"test": "sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1226": {"test": "sigrelse01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1227": {"test": "sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1228": {"test": "sigsuspend02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1229": {"test": "sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1230": {"test": "sigwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1231": {"test": "sigwaitinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1232": {"test": "socket01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1233": {"test": "socket02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1234": {"test": "socketcall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1235": {"test": "socketcall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1236": {"test": "socketcall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1237": {"test": "socketpair01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1238": {"test": "socketpair02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1239": {"test": "sockioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1240": {"test": "splice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1241": {"test": "splice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1242": {"test": "splice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1243": {"test": "splice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1244": {"test": "splice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1245": {"test": "splice06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1246": {"test": "splice07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1247": {"test": "splice08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1248": {"test": "splice09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1249": {"test": "tee01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1250": {"test": "tee02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1251": {"test": "ssetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1252": {"test": "stat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1253": {"test": "stat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1254": {"test": "stat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1255": {"test": "stat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1256": {"test": "stat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1257": {"test": "stat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1258": {"test": "stat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1259": {"test": "stat04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1260": {"test": "statmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1261": {"test": "statmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1262": {"test": "statmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1263": {"test": "statmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1264": {"test": "statmount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1265": {"test": "statmount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1266": {"test": "statmount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1267": {"test": "statmount08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1268": {"test": "statfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1269": {"test": "statfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1270": {"test": "statfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1271": {"test": "statfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1272": {"test": "statfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1273": {"test": "statfs03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1274": {"test": "statvfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1275": {"test": "statvfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1276": {"test": "stime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1277": {"test": "stime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1278": {"test": "string01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1279": {"test": "swapoff01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1280": {"test": "swapoff02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1281": {"test": "swapon01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1282": {"test": "swapon02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1283": {"test": "swapon03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1284": {"test": "switch01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1285": {"test": "symlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1286": {"test": "symlink02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1287": {"test": "symlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1288": {"test": "symlink04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1289": {"test": "symlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1290": {"test": "sync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1291": {"test": "syncfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1292": {"test": "sync_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1293": {"test": "sync_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1294": {"test": "syscall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1295": {"test": "sysconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1296": {"test": "sysctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1297": {"test": "sysctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1298": {"test": "sysctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1299": {"test": "sysfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1300": {"test": "sysfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1301": {"test": "sysfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1302": {"test": "sysfs04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1303": {"test": "sysfs05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1304": {"test": "sysinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1305": {"test": "sysinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1306": {"test": "sysinfo03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1307": {"test": "syslog11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1308": {"test": "syslog12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1309": {"test": "tgkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1310": {"test": "tgkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1311": {"test": "tgkill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1312": {"test": "time01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1313": {"test": "times01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1314": {"test": "times03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1315": {"test": "timerfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1316": {"test": "timerfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1317": {"test": "timerfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1318": {"test": "timerfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1319": {"test": "timerfd_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1320": {"test": "timerfd_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1321": {"test": "timerfd_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1322": {"test": "timer_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1323": {"test": "timer_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1324": {"test": "timer_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1325": {"test": "timer_delete01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1326": {"test": "timer_delete02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1327": {"test": "timer_getoverrun01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1328": {"test": "timer_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1329": {"test": "timer_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1330": {"test": "timer_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1331": {"test": "timer_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1332": {"test": "tkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1333": {"test": "tkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1334": {"test": "truncate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1335": {"test": "truncate02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1336": {"test": "truncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1337": {"test": "truncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1338": {"test": "ulimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1339": {"test": "umask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1340": {"test": "uname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1341": {"test": "uname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1342": {"test": "uname04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1343": {"test": "unlink01", "status": "pass", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "1344": {"test": "unlink05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1345": {"test": "unlink07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1346": {"test": "unlink08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1347": {"test": "unlink09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1348": {"test": "unlink10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1349": {"test": "unlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1350": {"test": "unshare01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1351": {"test": "unshare02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1352": {"test": "umount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1353": {"test": "umount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1354": {"test": "umount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1355": {"test": "umount2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1356": {"test": "umount2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1357": {"test": "userfaultfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1358": {"test": "ustat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1359": {"test": "ustat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1360": {"test": "utime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1361": {"test": "utime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1362": {"test": "utime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1363": {"test": "utime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1364": {"test": "utime05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1365": {"test": "utime06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1366": {"test": "utime07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1367": {"test": "utimes01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1368": {"test": "utimensat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1369": {"test": "vfork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1370": {"test": "vfork02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1371": {"test": "vhangup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1372": {"test": "vhangup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1373": {"test": "vmsplice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1374": {"test": "vmsplice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1375": {"test": "vmsplice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1376": {"test": "vmsplice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1377": {"test": "wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1378": {"test": "wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1379": {"test": "wait401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1380": {"test": "wait402", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1381": {"test": "wait403", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1382": {"test": "waitpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1383": {"test": "waitpid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1384": {"test": "waitpid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1385": {"test": "waitpid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1386": {"test": "waitpid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1387": {"test": "waitpid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1388": {"test": "waitpid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1389": {"test": "waitpid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1390": {"test": "waitpid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1391": {"test": "waitpid12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1392": {"test": "waitpid13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1393": {"test": "waitid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1394": {"test": "waitid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1395": {"test": "waitid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1396": {"test": "waitid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1397": {"test": "waitid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1398": {"test": "waitid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1399": {"test": "waitid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1400": {"test": "waitid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1401": {"test": "waitid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1402": {"test": "waitid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1403": {"test": "waitid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1404": {"test": "write01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1405": {"test": "write02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1406": {"test": "write03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1407": {"test": "write04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1408": {"test": "write05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1409": {"test": "write06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1410": {"test": "writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1411": {"test": "writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1412": {"test": "writev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1413": {"test": "writev05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1414": {"test": "writev06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1415": {"test": "writev07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1416": {"test": "perf_event_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1417": {"test": "perf_event_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1418": {"test": "futex_cmp_requeue01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1419": {"test": "futex_cmp_requeue02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1420": {"test": "futex_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1421": {"test": "futex_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1422": {"test": "futex_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1423": {"test": "futex_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1424": {"test": "futex_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1425": {"test": "futex_waitv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1426": {"test": "futex_waitv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1427": {"test": "futex_waitv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1428": {"test": "futex_wake01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1429": {"test": "futex_wake02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1430": {"test": "futex_wake03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1431": {"test": "futex_wake04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1432": {"test": "futex_wait_bitset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1433": {"test": "memfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1434": {"test": "memfd_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1435": {"test": "memfd_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1436": {"test": "memfd_create04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1437": {"test": "copy_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1438": {"test": "copy_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1439": {"test": "copy_file_range03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1440": {"test": "statx01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1441": {"test": "statx02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1442": {"test": "statx03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1443": {"test": "statx04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1444": {"test": "statx05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1445": {"test": "statx06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1446": {"test": "statx07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1447": {"test": "statx08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1448": {"test": "statx09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1449": {"test": "statx10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1450": {"test": "statx11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1451": {"test": "statx12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1452": {"test": "membarrier01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1453": {"test": "io_uring01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1454": {"test": "io_uring02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1455": {"test": "perf_event_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "summary": {"passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}}} 2026-07-07 13:53:21.282266 2026-07-07 13:49:10.392128 +593 18 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 13:54:21.082651 2026-07-07 13:54:21.082654 +594 18 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 13:53:20' --until '2026-07-07 13:54:20' 0 OOM records 2026-07-07 13:53:20.9307 2026-07-07 13:54:20.638042 +595 18 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 13:53:20' --until '2026-07-07 13:54:20' 0 systemd errors records 2026-07-07 13:53:20.9307 2026-07-07 13:54:20.638042 +596 19 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-07 13:49:10.431634 2026-07-07 13:49:10.43164 +597 19 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 14:04:13.085778 2026-07-07 14:04:13.085784 +598 19 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 14:04:11' --until '2026-07-07 14:04:12' 0 OOM records 2026-07-07 14:04:11.742451 2026-07-07 14:04:12.434361 +616 20 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 50% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 15.9}, "metrics": {"0": {"bogo_ops": 1720, "real_time_secs": 11.03, "usr_time_secs": 1.84, "sys_time_secs": 3.03, "bogo_ops_s_real_time": 155.88, "bogo_ops_s_usr_sys_time": 353.14, "cpu_used_per_instance": 11.04, "rss_max_kb": 2192, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-07 14:29:12.159508 2026-07-07 14:25:23.396212 +617 20 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 60% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 15.44}, "metrics": {"0": {"bogo_ops": 1670, "real_time_secs": 11.03, "usr_time_secs": 1.71, "sys_time_secs": 2.7, "bogo_ops_s_real_time": 151.36, "bogo_ops_s_usr_sys_time": 378.44, "cpu_used_per_instance": 10.0, "rss_max_kb": 2276, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-07 14:29:23.590912 2026-07-07 14:25:23.396212 +618 20 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 70% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 16.41}, "metrics": {"0": {"bogo_ops": 2128, "real_time_secs": 11.07, "usr_time_secs": 1.94, "sys_time_secs": 3.4, "bogo_ops_s_real_time": 192.24, "bogo_ops_s_usr_sys_time": 398.44, "cpu_used_per_instance": 12.06, "rss_max_kb": 2276, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-07 14:29:35.021118 2026-07-07 14:25:23.396212 +619 20 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 80% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 15.86}, "metrics": {"0": {"bogo_ops": 1852, "real_time_secs": 11.04, "usr_time_secs": 1.73, "sys_time_secs": 3.09, "bogo_ops_s_real_time": 167.81, "bogo_ops_s_usr_sys_time": 384.25, "cpu_used_per_instance": 10.92, "rss_max_kb": 2360, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-07 14:29:46.453288 2026-07-07 14:25:23.396212 +620 21 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-07 14:30:31.718818 2026-07-07 14:30:31.718825 +621 21 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 14:34:50.594672 2026-07-07 14:34:50.594675 +622 21 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 14:34:49' --until '2026-07-07 14:34:50' 0 OOM records 2026-07-07 14:34:49.741616 2026-07-07 14:34:50.171887 +623 21 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 14:34:49' --until '2026-07-07 14:34:50' 0 systemd errors records 2026-07-07 14:34:49.741616 2026-07-07 14:34:50.171887 +624 21 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-07 14:30:31.718818 2026-07-07 14:30:31.718825 +625 21 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 14:35:05.597718 2026-07-07 14:35:05.597722 +626 21 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 14:34:51' --until '2026-07-07 14:35:05' 0 OOM records 2026-07-07 14:34:51.419993 2026-07-07 14:35:05.171344 +627 21 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 14:34:51' --until '2026-07-07 14:35:05' 0 systemd errors records 2026-07-07 14:34:51.419993 2026-07-07 14:35:05.171344 +628 21 loader /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-07_14:35:06.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 14.39}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abottHnfl as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11757397651672363}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09648990631103516}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accEYivcj as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 53991\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10988116264343262}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11509418487548828}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 36377\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 36233\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 39219\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11265683174133301}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accJ2oqbd as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5637073516845703}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accgNml5q as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.27106618881225586}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1087946891784668}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accJTFpgf as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accJTFpgf/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14331483840942383}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accTHSNma as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accTHSNma/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15401601791381836}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accfdShKa as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1920185089111328}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09620070457458496}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08662271499633789}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11878347396850586}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09624743461608887}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.5852751731872559}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08932614326477051}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10579490661621094}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08903193473815918}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0957193374633789}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09664344787597656}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.092484712600708}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.091926336288452}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1017847061157227}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08908653259277344}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binTGd1bC as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09807562828063965}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1051321029663086}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binVt4JLJ as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09279012680053711}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binOFU70L as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14976239204406738}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin23nFpZ as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12711572647094727}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "36": {"test": "bpf_prog05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "37": {"test": "bpf_prog06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "38": {"test": "bpf_prog07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "39": {"test": "brk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "40": {"test": "brk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "41": {"test": "capget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "42": {"test": "capget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "43": {"test": "capset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "44": {"test": "capset02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "45": {"test": "capset03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "46": {"test": "capset04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "47": {"test": "cacheflush01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "48": {"test": "cachestat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "49": {"test": "cachestat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "50": {"test": "cachestat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "51": {"test": "cachestat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "52": {"test": "chdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "53": {"test": "chdir01A", "status": "pass", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0}, "54": {"test": "chdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "55": {"test": "chmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "56": {"test": "chmod01A", "status": "pass", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0}, "57": {"test": "chmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "58": {"test": "chmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "59": {"test": "chmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "60": {"test": "chmod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "61": {"test": "chmod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "62": {"test": "chmod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "63": {"test": "chown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "64": {"test": "chown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "65": {"test": "chown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "66": {"test": "chown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "67": {"test": "chown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "68": {"test": "chown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "69": {"test": "chown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "70": {"test": "chown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "71": {"test": "chown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "72": {"test": "chown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "73": {"test": "chroot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "74": {"test": "chroot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "75": {"test": "chroot03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "76": {"test": "chroot04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "77": {"test": "clock_adjtime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "78": {"test": "clock_adjtime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "79": {"test": "clock_getres01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "80": {"test": "clock_nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "81": {"test": "clock_nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "82": {"test": "clock_nanosleep03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "83": {"test": "clock_nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "84": {"test": "clock_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "85": {"test": "clock_gettime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "86": {"test": "clock_gettime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "87": {"test": "clock_gettime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "88": {"test": "leapsec01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "89": {"test": "clock_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "90": {"test": "clock_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "91": {"test": "clock_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "92": {"test": "clone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "93": {"test": "clone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "94": {"test": "clone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "95": {"test": "clone04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "96": {"test": "clone05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "97": {"test": "clone06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "98": {"test": "clone07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "99": {"test": "clone08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "100": {"test": "clone09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "101": {"test": "clone301", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "102": {"test": "clone302", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "103": {"test": "clone303", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "104": {"test": "close01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "105": {"test": "close02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "106": {"test": "close_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "107": {"test": "close_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "108": {"test": "confstr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "109": {"test": "connect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "110": {"test": "connect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "111": {"test": "creat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "112": {"test": "creat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "113": {"test": "creat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "114": {"test": "creat05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "115": {"test": "creat06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "116": {"test": "creat07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "117": {"test": "creat08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "118": {"test": "creat09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "119": {"test": "delete_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "120": {"test": "delete_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "121": {"test": "delete_module03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "122": {"test": "dup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "123": {"test": "dup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "124": {"test": "dup03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "125": {"test": "dup04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "126": {"test": "dup05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "127": {"test": "dup06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "128": {"test": "dup07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "129": {"test": "dup201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "130": {"test": "dup202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "131": {"test": "dup203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "132": {"test": "dup204", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "133": {"test": "dup205", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "134": {"test": "dup206", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "135": {"test": "dup207", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "136": {"test": "dup3_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "137": {"test": "dup3_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "138": {"test": "epoll_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "139": {"test": "epoll_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "140": {"test": "epoll_create1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "141": {"test": "epoll_create1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "142": {"test": "epoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "143": {"test": "epoll_ctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "144": {"test": "epoll_ctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "145": {"test": "epoll_ctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "146": {"test": "epoll_ctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "147": {"test": "epoll_ctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "148": {"test": "epoll_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "149": {"test": "epoll_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "150": {"test": "epoll_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "151": {"test": "epoll_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "152": {"test": "epoll_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "153": {"test": "epoll_wait06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "154": {"test": "epoll_wait07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "155": {"test": "epoll_pwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "156": {"test": "epoll_pwait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "157": {"test": "epoll_pwait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "158": {"test": "epoll_pwait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "159": {"test": "epoll_pwait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "160": {"test": "eventfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "161": {"test": "eventfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "162": {"test": "eventfd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "163": {"test": "eventfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "164": {"test": "eventfd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "165": {"test": "eventfd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "166": {"test": "eventfd2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "167": {"test": "eventfd2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "168": {"test": "eventfd2_03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "169": {"test": "execl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "170": {"test": "execle01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "171": {"test": "execlp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "172": {"test": "execv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "173": {"test": "execve01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "174": {"test": "execve02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "175": {"test": "execve03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "176": {"test": "execve04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "177": {"test": "execve05", "status": "pass", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0}, "178": {"test": "execve06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "179": {"test": "execvp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "180": {"test": "execveat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "181": {"test": "execveat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "182": {"test": "execveat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "183": {"test": "exit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "184": {"test": "exit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "185": {"test": "exit_group01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "186": {"test": "faccessat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "187": {"test": "faccessat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "188": {"test": "faccessat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "189": {"test": "faccessat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "190": {"test": "fallocate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "191": {"test": "fallocate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "192": {"test": "fallocate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "193": {"test": "fallocate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "194": {"test": "fallocate05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "195": {"test": "fallocate06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "196": {"test": "fsetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "197": {"test": "fsetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "198": {"test": "posix_fadvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "199": {"test": "posix_fadvise01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "200": {"test": "posix_fadvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "201": {"test": "posix_fadvise02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "202": {"test": "posix_fadvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "203": {"test": "posix_fadvise03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "204": {"test": "posix_fadvise04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "205": {"test": "posix_fadvise04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "206": {"test": "fchdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "207": {"test": "fchdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "208": {"test": "fchdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "209": {"test": "fchmod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "210": {"test": "fchmod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "211": {"test": "fchmod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "212": {"test": "fchmod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "213": {"test": "fchmod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "214": {"test": "fchmod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "215": {"test": "fchmodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "216": {"test": "fchmodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "217": {"test": "fchmodat2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "218": {"test": "fchmodat2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "219": {"test": "fchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "220": {"test": "fchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "221": {"test": "fchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "222": {"test": "fchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "223": {"test": "fchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "224": {"test": "fchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "225": {"test": "fchown04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "226": {"test": "fchown04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "227": {"test": "fchown05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "228": {"test": "fchown05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "229": {"test": "fchownat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "230": {"test": "fchownat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "231": {"test": "fcntl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "232": {"test": "fcntl01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "233": {"test": "fcntl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "234": {"test": "fcntl02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "235": {"test": "fcntl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "236": {"test": "fcntl03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "237": {"test": "fcntl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "238": {"test": "fcntl04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "239": {"test": "fcntl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "240": {"test": "fcntl05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "241": {"test": "fcntl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "242": {"test": "fcntl07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "243": {"test": "fcntl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "244": {"test": "fcntl08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "245": {"test": "fcntl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "246": {"test": "fcntl09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "247": {"test": "fcntl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "248": {"test": "fcntl10_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "249": {"test": "fcntl11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "250": {"test": "fcntl11_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "251": {"test": "fcntl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "252": {"test": "fcntl12_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "253": {"test": "fcntl13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "254": {"test": "fcntl13_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "255": {"test": "fcntl14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "256": {"test": "fcntl14_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "257": {"test": "fcntl15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "258": {"test": "fcntl15_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "259": {"test": "fcntl16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "260": {"test": "fcntl16_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "261": {"test": "fcntl17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "262": {"test": "fcntl17_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "263": {"test": "fcntl18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "264": {"test": "fcntl18_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "265": {"test": "fcntl19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "266": {"test": "fcntl19_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "267": {"test": "fcntl20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "268": {"test": "fcntl20_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "269": {"test": "fcntl21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "270": {"test": "fcntl21_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "271": {"test": "fcntl22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "272": {"test": "fcntl22_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "273": {"test": "fcntl23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "274": {"test": "fcntl23_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "275": {"test": "fcntl24", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "276": {"test": "fcntl24_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "277": {"test": "fcntl25", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "278": {"test": "fcntl25_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "279": {"test": "fcntl26", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "280": {"test": "fcntl26_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "281": {"test": "fcntl27", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "282": {"test": "fcntl27_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "283": {"test": "fcntl29", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "284": {"test": "fcntl29_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "285": {"test": "fcntl30", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "286": {"test": "fcntl30_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "287": {"test": "fcntl31", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "288": {"test": "fcntl31_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "289": {"test": "fcntl32", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "290": {"test": "fcntl32_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "291": {"test": "fcntl33", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "292": {"test": "fcntl33_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "293": {"test": "fcntl34", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "294": {"test": "fcntl34_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "295": {"test": "fcntl35", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "296": {"test": "fcntl35_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "297": {"test": "fcntl36", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "298": {"test": "fcntl36_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "299": {"test": "fcntl37", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "300": {"test": "fcntl37_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "301": {"test": "fcntl38", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "302": {"test": "fcntl38_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "303": {"test": "fcntl39", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "304": {"test": "fcntl39_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "305": {"test": "fdatasync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "306": {"test": "fdatasync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "307": {"test": "fdatasync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "308": {"test": "fgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "309": {"test": "fgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "310": {"test": "fgetxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "311": {"test": "finit_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "312": {"test": "finit_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "313": {"test": "flistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "314": {"test": "flistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "315": {"test": "flistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "316": {"test": "flock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "317": {"test": "flock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "318": {"test": "flock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "319": {"test": "flock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "320": {"test": "flock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "321": {"test": "fmtmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "322": {"test": "fork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "323": {"test": "fork03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "324": {"test": "fork04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "325": {"test": "fork05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "326": {"test": "fork06", "status": "pass", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0}, "327": {"test": "fork07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "328": {"test": "fork08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "329": {"test": "fork09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "330": {"test": "fork10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "331": {"test": "fork11", "status": "pass", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0}, "332": {"test": "fork13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "333": {"test": "fork14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "334": {"test": "fpathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "335": {"test": "fremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "336": {"test": "fremovexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "337": {"test": "fsconfig01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "338": {"test": "fsconfig02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "339": {"test": "fsconfig03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "340": {"test": "fsmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "341": {"test": "fsmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "342": {"test": "fsopen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "343": {"test": "fsopen02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "344": {"test": "fspick01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "345": {"test": "fspick02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "346": {"test": "fstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "347": {"test": "fstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "348": {"test": "fstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "349": {"test": "fstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "350": {"test": "fstatat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "351": {"test": "fstatfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "352": {"test": "fstatfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "353": {"test": "fstatfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "354": {"test": "fstatfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "355": {"test": "fsync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "356": {"test": "fsync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "357": {"test": "fsync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "358": {"test": "fsync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "359": {"test": "ftruncate01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "360": {"test": "ftruncate01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "361": {"test": "ftruncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "362": {"test": "ftruncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "363": {"test": "ftruncate04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "364": {"test": "ftruncate04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "365": {"test": "futimesat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "366": {"test": "getcontext01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "367": {"test": "getcpu01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "368": {"test": "getcpu02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "369": {"test": "getcwd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "370": {"test": "getcwd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "371": {"test": "getcwd03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "372": {"test": "getcwd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "373": {"test": "getdents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "374": {"test": "getdents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "375": {"test": "getdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "376": {"test": "getegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "377": {"test": "getegid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "378": {"test": "getegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "379": {"test": "getegid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "380": {"test": "geteuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "381": {"test": "geteuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "382": {"test": "geteuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "383": {"test": "geteuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "384": {"test": "getgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "385": {"test": "getgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "386": {"test": "getgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "387": {"test": "getgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "388": {"test": "getgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "389": {"test": "getgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "390": {"test": "getgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "391": {"test": "getgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "392": {"test": "gethostbyname_r01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "393": {"test": "gethostid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "394": {"test": "gethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "395": {"test": "gethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "396": {"test": "getitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "397": {"test": "getitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "398": {"test": "getpagesize01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "399": {"test": "getpeername01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "400": {"test": "getpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "401": {"test": "getpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "402": {"test": "getpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "403": {"test": "getpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "404": {"test": "getpid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "405": {"test": "getppid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "406": {"test": "getppid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "407": {"test": "getpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "408": {"test": "getpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "409": {"test": "getrandom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "410": {"test": "getrandom02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "411": {"test": "getrandom03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "412": {"test": "getrandom04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "413": {"test": "getrandom05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "414": {"test": "getresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "415": {"test": "getresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "416": {"test": "getresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "417": {"test": "getresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "418": {"test": "getresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "419": {"test": "getresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "420": {"test": "getresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "421": {"test": "getresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "422": {"test": "getresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "423": {"test": "getresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "424": {"test": "getresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "425": {"test": "getresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "426": {"test": "getrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "427": {"test": "getrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "428": {"test": "getrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "429": {"test": "get_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "430": {"test": "get_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "431": {"test": "get_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "432": {"test": "getrusage01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "433": {"test": "getrusage02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "434": {"test": "getrusage03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "435": {"test": "getrusage04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "436": {"test": "getsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "437": {"test": "getsid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "438": {"test": "getsockname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "439": {"test": "getsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "440": {"test": "getsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "441": {"test": "gettid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "442": {"test": "gettid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "443": {"test": "gettimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "444": {"test": "gettimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "445": {"test": "getuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "446": {"test": "getuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "447": {"test": "getuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "448": {"test": "getuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "449": {"test": "getxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "450": {"test": "getxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "451": {"test": "getxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "452": {"test": "getxattr04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "453": {"test": "getxattr05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "454": {"test": "init_module01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "455": {"test": "init_module02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "456": {"test": "ioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "457": {"test": "ioctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "458": {"test": "ioctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "459": {"test": "ioctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "460": {"test": "ioctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "461": {"test": "ioctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "462": {"test": "ioctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "463": {"test": "ioctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "464": {"test": "ioctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "465": {"test": "ioctl_loop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "466": {"test": "ioctl_loop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "467": {"test": "ioctl_loop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "468": {"test": "ioctl_loop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "469": {"test": "ioctl_loop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "470": {"test": "ioctl_loop06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "471": {"test": "ioctl_loop07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "472": {"test": "ioctl_ns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "473": {"test": "ioctl_ns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "474": {"test": "ioctl_ns03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "475": {"test": "ioctl_ns04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "476": {"test": "ioctl_ns05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "477": {"test": "ioctl_ns06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "478": {"test": "ioctl_ns07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "479": {"test": "ioctl_sg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "480": {"test": "ioctl_ficlone01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "481": {"test": "ioctl_ficlone02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "482": {"test": "ioctl_ficlone03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "483": {"test": "ioctl_ficlonerange01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "484": {"test": "ioctl_ficlonerange02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "485": {"test": "inotify_init1_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "486": {"test": "inotify_init1_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "487": {"test": "inotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "488": {"test": "inotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "489": {"test": "inotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "490": {"test": "inotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "491": {"test": "inotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "492": {"test": "inotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "493": {"test": "inotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "494": {"test": "inotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "495": {"test": "inotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "496": {"test": "inotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "497": {"test": "inotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "498": {"test": "inotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "499": {"test": "fanotify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "500": {"test": "fanotify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "501": {"test": "fanotify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "502": {"test": "fanotify04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "503": {"test": "fanotify05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "504": {"test": "fanotify06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "505": {"test": "fanotify07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "506": {"test": "fanotify08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "507": {"test": "fanotify09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "508": {"test": "fanotify10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "509": {"test": "fanotify11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "510": {"test": "fanotify12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "511": {"test": "fanotify13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "512": {"test": "fanotify14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "513": {"test": "fanotify15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "514": {"test": "fanotify16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "515": {"test": "fanotify17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "516": {"test": "fanotify18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "517": {"test": "fanotify19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "518": {"test": "fanotify20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "519": {"test": "fanotify21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "520": {"test": "fanotify22", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "521": {"test": "fanotify23", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "522": {"test": "ioperm01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "523": {"test": "ioperm02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "524": {"test": "iopl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "525": {"test": "iopl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "526": {"test": "ioprio_get01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "527": {"test": "ioprio_set01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "528": {"test": "ioprio_set02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "529": {"test": "ioprio_set03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "530": {"test": "io_cancel01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "531": {"test": "io_cancel02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "532": {"test": "io_destroy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "533": {"test": "io_destroy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "534": {"test": "io_getevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "535": {"test": "io_getevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "536": {"test": "io_pgetevents01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "537": {"test": "io_pgetevents02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "538": {"test": "io_setup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "539": {"test": "io_setup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "540": {"test": "io_submit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "541": {"test": "io_submit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "542": {"test": "io_submit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "543": {"test": "keyctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "544": {"test": "keyctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "545": {"test": "keyctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "546": {"test": "keyctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "547": {"test": "keyctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "548": {"test": "keyctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "549": {"test": "keyctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "550": {"test": "keyctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "551": {"test": "keyctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "552": {"test": "kcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "553": {"test": "kcmp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "554": {"test": "kcmp03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "555": {"test": "kill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "556": {"test": "kill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "557": {"test": "kill05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "558": {"test": "kill06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "559": {"test": "kill07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "560": {"test": "kill08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "561": {"test": "kill09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "562": {"test": "kill10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "563": {"test": "kill11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "564": {"test": "kill12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "565": {"test": "kill13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "566": {"test": "landlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "567": {"test": "landlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "568": {"test": "landlock03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "569": {"test": "landlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "570": {"test": "landlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "571": {"test": "landlock06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "572": {"test": "landlock07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "573": {"test": "landlock08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "574": {"test": "lchown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "575": {"test": "lchown01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "576": {"test": "lchown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "577": {"test": "lchown03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "578": {"test": "lchown02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "579": {"test": "lchown03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "580": {"test": "lgetxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "581": {"test": "lgetxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "582": {"test": "link01", "status": "pass", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0}, "583": {"test": "link02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "584": {"test": "link04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "585": {"test": "link05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "586": {"test": "link08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "587": {"test": "linkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "588": {"test": "linkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "589": {"test": "listen01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "590": {"test": "listmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "591": {"test": "listmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "592": {"test": "listmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "593": {"test": "listmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "594": {"test": "listxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "595": {"test": "listxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "596": {"test": "listxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "597": {"test": "llistxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "598": {"test": "llistxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "599": {"test": "llistxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "600": {"test": "llseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "601": {"test": "llseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "602": {"test": "llseek03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "603": {"test": "lremovexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "604": {"test": "lseek01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "605": {"test": "lseek02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "606": {"test": "lseek07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "607": {"test": "lseek11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "608": {"test": "lstat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "609": {"test": "lstat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "610": {"test": "lstat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "611": {"test": "lstat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "612": {"test": "lstat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "613": {"test": "lstat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "614": {"test": "mallinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "615": {"test": "mallinfo2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "616": {"test": "mallopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "617": {"test": "mbind01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "618": {"test": "mbind02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "619": {"test": "mbind03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "620": {"test": "mbind04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "621": {"test": "memset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "622": {"test": "memcmp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "623": {"test": "memcpy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "624": {"test": "migrate_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "625": {"test": "migrate_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "626": {"test": "migrate_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "627": {"test": "mlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "628": {"test": "mlockall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "629": {"test": "mlockall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "630": {"test": "mkdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "631": {"test": "mkdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "632": {"test": "mkdir04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "633": {"test": "mkdir05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "634": {"test": "mkdir09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "635": {"test": "mkdirat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "636": {"test": "mkdirat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "637": {"test": "mknod01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "638": {"test": "mknod02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "639": {"test": "mknod03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "640": {"test": "mknod04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "641": {"test": "mknod05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "642": {"test": "mknod06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "643": {"test": "mknod07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "644": {"test": "mknod08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "645": {"test": "mknod09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "646": {"test": "mknodat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "647": {"test": "mknodat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "648": {"test": "mlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "649": {"test": "mlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "650": {"test": "mlock03", "status": "pass", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0}, "651": {"test": "mlock04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "652": {"test": "mlock05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "653": {"test": "mlock201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "654": {"test": "mlock202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "655": {"test": "mlock203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "656": {"test": "qmm01", "status": "pass", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0}, "657": {"test": "mmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "658": {"test": "mmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "659": {"test": "mmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "660": {"test": "mmap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "661": {"test": "mmap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "662": {"test": "mmap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "663": {"test": "mmap08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "664": {"test": "mmap09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "665": {"test": "mmap12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "666": {"test": "mmap13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "667": {"test": "mmap14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "668": {"test": "mmap15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "669": {"test": "mmap16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "670": {"test": "mmap17", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "671": {"test": "mmap18", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "672": {"test": "mmap19", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "673": {"test": "mmap20", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "674": {"test": "modify_ldt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "675": {"test": "modify_ldt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "676": {"test": "modify_ldt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "677": {"test": "mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "678": {"test": "mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "679": {"test": "mount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "680": {"test": "mount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "681": {"test": "mount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "682": {"test": "mount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "683": {"test": "mount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "684": {"test": "mount_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "685": {"test": "move_mount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "686": {"test": "move_mount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "687": {"test": "move_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "688": {"test": "move_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "689": {"test": "move_pages03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "690": {"test": "move_pages04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "691": {"test": "move_pages05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "692": {"test": "move_pages06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "693": {"test": "move_pages07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "694": {"test": "move_pages09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "695": {"test": "move_pages10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "696": {"test": "move_pages11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "697": {"test": "move_pages12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "698": {"test": "mprotect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "699": {"test": "mprotect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "700": {"test": "mprotect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "701": {"test": "mprotect04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "702": {"test": "mprotect05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "703": {"test": "pkey01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "704": {"test": "mq_notify01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "705": {"test": "mq_notify02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "706": {"test": "mq_notify03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "707": {"test": "mq_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "708": {"test": "mq_timedreceive01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "709": {"test": "mq_timedsend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "710": {"test": "mq_unlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "711": {"test": "mremap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "712": {"test": "mremap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "713": {"test": "mremap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "714": {"test": "mremap04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "715": {"test": "mremap05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "716": {"test": "mremap06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "717": {"test": "mseal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "718": {"test": "mseal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "719": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "720": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "721": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "722": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "723": {"test": "msgctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "724": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "725": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "726": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "727": {"test": "msgget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "728": {"test": "msgget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "729": {"test": "msgget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "730": {"test": "msgget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "731": {"test": "msgget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "732": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "733": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "734": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "735": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "736": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "737": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "738": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "739": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "740": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "741": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "742": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "743": {"test": "msync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "744": {"test": "msync02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "745": {"test": "msync03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "746": {"test": "msync04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "747": {"test": "munlock01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "748": {"test": "munlock02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "749": {"test": "munlockall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "750": {"test": "munmap01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "751": {"test": "munmap02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "752": {"test": "munmap03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "753": {"test": "nanosleep01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "754": {"test": "nanosleep02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "755": {"test": "nanosleep04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "756": {"test": "name_to_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "757": {"test": "name_to_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "758": {"test": "nftw01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "759": {"test": "nftw6401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "760": {"test": "nice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "761": {"test": "nice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "762": {"test": "nice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "763": {"test": "nice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "764": {"test": "nice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "765": {"test": "open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "766": {"test": "open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "767": {"test": "open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "768": {"test": "open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "769": {"test": "open06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "770": {"test": "open07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "771": {"test": "open08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "772": {"test": "open09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "773": {"test": "open10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "774": {"test": "open11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "775": {"test": "open12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "776": {"test": "open13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "777": {"test": "open14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "778": {"test": "open15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "779": {"test": "openat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "780": {"test": "openat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "781": {"test": "openat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "782": {"test": "openat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "783": {"test": "openat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "784": {"test": "openat202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "785": {"test": "openat203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "786": {"test": "open_by_handle_at01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "787": {"test": "open_by_handle_at02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "788": {"test": "open_tree01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "789": {"test": "open_tree02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "790": {"test": "mincore01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "791": {"test": "mincore02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "792": {"test": "mincore03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "793": {"test": "mincore04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "794": {"test": "madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "795": {"test": "madvise02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "796": {"test": "madvise03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "797": {"test": "madvise05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "798": {"test": "madvise06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "799": {"test": "madvise07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "800": {"test": "madvise08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "801": {"test": "madvise09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "802": {"test": "madvise10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "803": {"test": "madvise11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "804": {"test": "madvise12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "805": {"test": "newuname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "806": {"test": "pathconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "807": {"test": "pathconf02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "808": {"test": "pause01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "809": {"test": "pause02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "810": {"test": "pause03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "811": {"test": "personality01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "812": {"test": "personality02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "813": {"test": "pidfd_getfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "814": {"test": "pidfd_getfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "815": {"test": "pidfd_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "816": {"test": "pidfd_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "817": {"test": "pidfd_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "818": {"test": "pidfd_open04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "819": {"test": "pidfd_send_signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "820": {"test": "pidfd_send_signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "821": {"test": "pidfd_send_signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "822": {"test": "pipe01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "823": {"test": "pipe02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "824": {"test": "pipe03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "825": {"test": "pipe04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "826": {"test": "pipe05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "827": {"test": "pipe06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "828": {"test": "pipe07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "829": {"test": "pipe08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "830": {"test": "pipe09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "831": {"test": "pipe10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "832": {"test": "pipe11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "833": {"test": "pipe12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "834": {"test": "pipe13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "835": {"test": "pipe14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "836": {"test": "pipe15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "837": {"test": "pipe2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "838": {"test": "pipe2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "839": {"test": "pipe2_04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "840": {"test": "pivot_root01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "841": {"test": "poll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "842": {"test": "poll02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "843": {"test": "ppoll01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "844": {"test": "prctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "845": {"test": "prctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "846": {"test": "prctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "847": {"test": "prctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "848": {"test": "prctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "849": {"test": "prctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "850": {"test": "prctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "851": {"test": "prctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "852": {"test": "prctl10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "853": {"test": "pread01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "854": {"test": "pread01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "855": {"test": "pread02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "856": {"test": "pread02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "857": {"test": "preadv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "858": {"test": "preadv01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "859": {"test": "preadv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "860": {"test": "preadv02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "861": {"test": "preadv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "862": {"test": "preadv03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "863": {"test": "preadv201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "864": {"test": "preadv201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "865": {"test": "preadv202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "866": {"test": "preadv202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "867": {"test": "preadv203", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "868": {"test": "preadv203_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "869": {"test": "profil01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "870": {"test": "process_vm_readv01", "status": "pass", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0}, "871": {"test": "process_vm_readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "872": {"test": "process_vm_readv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "873": {"test": "process_vm_writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "874": {"test": "process_vm_writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "875": {"test": "process_madvise01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "876": {"test": "prot_hsymlinks", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "877": {"test": "dirtyc0w", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "878": {"test": "dirtyc0w_shmem", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "879": {"test": "dirtypipe", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "880": {"test": "pselect01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "881": {"test": "pselect01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "882": {"test": "pselect02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "883": {"test": "pselect02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "884": {"test": "pselect03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "885": {"test": "pselect03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "886": {"test": "ptrace01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "887": {"test": "ptrace02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "888": {"test": "ptrace03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "889": {"test": "ptrace04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "890": {"test": "ptrace05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "891": {"test": "ptrace06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "892": {"test": "ptrace07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "893": {"test": "ptrace08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "894": {"test": "ptrace09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "895": {"test": "ptrace10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "896": {"test": "ptrace11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "897": {"test": "pwrite01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "898": {"test": "pwrite02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "899": {"test": "pwrite03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "900": {"test": "pwrite04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "901": {"test": "pwrite01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "902": {"test": "pwrite02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "903": {"test": "pwrite03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "904": {"test": "pwrite04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "905": {"test": "pwritev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "906": {"test": "pwritev01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "907": {"test": "pwritev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "908": {"test": "pwritev02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "909": {"test": "pwritev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "910": {"test": "pwritev03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "911": {"test": "pwritev201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "912": {"test": "pwritev201_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "913": {"test": "pwritev202", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "914": {"test": "pwritev202_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "915": {"test": "quotactl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "916": {"test": "quotactl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "917": {"test": "quotactl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "918": {"test": "quotactl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "919": {"test": "quotactl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "920": {"test": "quotactl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "921": {"test": "quotactl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "922": {"test": "quotactl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "923": {"test": "quotactl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "924": {"test": "read01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "925": {"test": "read02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "926": {"test": "read03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "927": {"test": "read04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "928": {"test": "readahead01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "929": {"test": "readahead02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "930": {"test": "readdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "931": {"test": "readdir21", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "932": {"test": "readlink01A", "status": "pass", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "933": {"test": "readlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "934": {"test": "readlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "935": {"test": "readlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "936": {"test": "readlinkat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "937": {"test": "readv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "938": {"test": "readv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "939": {"test": "realpath01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "940": {"test": "reboot01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "941": {"test": "reboot02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "942": {"test": "recv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "943": {"test": "recvfrom01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "944": {"test": "recvmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "945": {"test": "recvmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "946": {"test": "recvmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "947": {"test": "recvmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "948": {"test": "remap_file_pages01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "949": {"test": "remap_file_pages02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "950": {"test": "removexattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "951": {"test": "removexattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "952": {"test": "rename01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "953": {"test": "rename01A", "status": "pass", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0}, "954": {"test": "rename03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "955": {"test": "rename04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "956": {"test": "rename05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "957": {"test": "rename06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "958": {"test": "rename07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "959": {"test": "rename08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "960": {"test": "rename09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "961": {"test": "rename10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "962": {"test": "rename11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "963": {"test": "rename12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "964": {"test": "rename13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "965": {"test": "rename14", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "966": {"test": "rename15", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "967": {"test": "renameat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "968": {"test": "renameat201", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "969": {"test": "renameat202", "status": "pass", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0}, "970": {"test": "request_key01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "971": {"test": "request_key02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "972": {"test": "request_key03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "973": {"test": "request_key04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "974": {"test": "request_key05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "975": {"test": "request_key06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "976": {"test": "rmdir01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "977": {"test": "rmdir02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "978": {"test": "rmdir03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "979": {"test": "rmdir03A", "status": "pass", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0}, "980": {"test": "rt_sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "981": {"test": "rt_sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "982": {"test": "rt_sigaction03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "983": {"test": "rt_sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "984": {"test": "rt_sigprocmask02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "985": {"test": "rt_sigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "986": {"test": "rt_sigqueueinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "987": {"test": "rt_sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "988": {"test": "rt_sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "989": {"test": "rt_tgsigqueueinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "990": {"test": "sbrk01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "991": {"test": "sbrk02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "992": {"test": "sbrk03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "993": {"test": "sched_get_priority_max01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "994": {"test": "sched_get_priority_max02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "995": {"test": "sched_get_priority_min01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "996": {"test": "sched_get_priority_min02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "997": {"test": "sched_getparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "998": {"test": "sched_getparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "999": {"test": "sched_rr_get_interval01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1000": {"test": "sched_rr_get_interval02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1001": {"test": "sched_rr_get_interval03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1002": {"test": "sched_setparam01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1003": {"test": "sched_setparam02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1004": {"test": "sched_setparam03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1005": {"test": "sched_setparam04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1006": {"test": "sched_setparam05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1007": {"test": "sched_getscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1008": {"test": "sched_getscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1009": {"test": "sched_setscheduler01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1010": {"test": "sched_setscheduler02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1011": {"test": "sched_setscheduler03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1012": {"test": "sched_setscheduler04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1013": {"test": "sched_yield01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1014": {"test": "sched_setaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1015": {"test": "sched_getaffinity01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1016": {"test": "sched_setattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1017": {"test": "sched_getattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1018": {"test": "sched_getattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1019": {"test": "seccomp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1020": {"test": "select01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1021": {"test": "select02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1022": {"test": "select03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1023": {"test": "select04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1024": {"test": "semctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1025": {"test": "semctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1026": {"test": "semctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1027": {"test": "semctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1028": {"test": "semctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1029": {"test": "semctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1030": {"test": "semctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1031": {"test": "semctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1032": {"test": "semctl09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1033": {"test": "semget01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1034": {"test": "semget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1035": {"test": "semget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1036": {"test": "semop01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1037": {"test": "semop02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1038": {"test": "semop03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1039": {"test": "semop04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1040": {"test": "semop05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1041": {"test": "send01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1042": {"test": "send02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1043": {"test": "sendfile02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1044": {"test": "sendfile02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1045": {"test": "sendfile03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1046": {"test": "sendfile03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1047": {"test": "sendfile04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1048": {"test": "sendfile04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1049": {"test": "sendfile05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1050": {"test": "sendfile05_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1051": {"test": "sendfile06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1052": {"test": "sendfile06_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1053": {"test": "sendfile07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1054": {"test": "sendfile07_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1055": {"test": "sendfile08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1056": {"test": "sendfile08_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1057": {"test": "sendfile09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1058": {"test": "sendfile09_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1059": {"test": "sendmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1060": {"test": "sendmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1061": {"test": "sendmsg03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1062": {"test": "sendmmsg01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1063": {"test": "sendmmsg02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1064": {"test": "sendto01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1065": {"test": "sendto02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1066": {"test": "sendto03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1067": {"test": "set_mempolicy01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1068": {"test": "set_mempolicy02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1069": {"test": "set_mempolicy03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1070": {"test": "set_mempolicy04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1071": {"test": "set_robust_list01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1072": {"test": "set_thread_area01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1073": {"test": "set_tid_address01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1074": {"test": "setdomainname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1075": {"test": "setdomainname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1076": {"test": "setdomainname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1077": {"test": "setfsgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1078": {"test": "setfsgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1079": {"test": "setfsgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1080": {"test": "setfsgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1081": {"test": "setfsgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1082": {"test": "setfsgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1083": {"test": "setfsuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1084": {"test": "setfsuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1085": {"test": "setfsuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1086": {"test": "setfsuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1087": {"test": "setfsuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1088": {"test": "setfsuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1089": {"test": "setfsuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1090": {"test": "setfsuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1091": {"test": "setgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1092": {"test": "setgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1093": {"test": "setgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1094": {"test": "setgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1095": {"test": "setgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1096": {"test": "setgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1097": {"test": "setegid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1098": {"test": "setegid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1099": {"test": "sgetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1100": {"test": "setgroups01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1101": {"test": "setgroups01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1102": {"test": "setgroups02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1103": {"test": "setgroups02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1104": {"test": "setgroups03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1105": {"test": "setgroups03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1106": {"test": "sethostname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1107": {"test": "sethostname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1108": {"test": "sethostname03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1109": {"test": "setitimer01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1110": {"test": "setitimer02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1111": {"test": "setns01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1112": {"test": "setns02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1113": {"test": "setpgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1114": {"test": "setpgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1115": {"test": "setpgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1116": {"test": "setpgrp01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1117": {"test": "setpgrp02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1118": {"test": "setpriority01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1119": {"test": "setpriority02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1120": {"test": "setregid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1121": {"test": "setregid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1122": {"test": "setregid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1123": {"test": "setregid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1124": {"test": "setregid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1125": {"test": "setregid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1126": {"test": "setregid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1127": {"test": "setregid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1128": {"test": "setresgid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1129": {"test": "setresgid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1130": {"test": "setresgid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1131": {"test": "setresgid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1132": {"test": "setresgid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1133": {"test": "setresgid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1134": {"test": "setresgid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1135": {"test": "setresgid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1136": {"test": "setresuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1137": {"test": "setresuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1138": {"test": "setresuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1139": {"test": "setresuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1140": {"test": "setresuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1141": {"test": "setresuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1142": {"test": "setresuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1143": {"test": "setresuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1144": {"test": "setresuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1145": {"test": "setresuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1146": {"test": "setreuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1147": {"test": "setreuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1148": {"test": "setreuid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1149": {"test": "setreuid02_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1150": {"test": "setreuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1151": {"test": "setreuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1152": {"test": "setreuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1153": {"test": "setreuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1154": {"test": "setreuid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1155": {"test": "setreuid05_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1156": {"test": "setreuid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1157": {"test": "setreuid06_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1158": {"test": "setreuid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1159": {"test": "setreuid07_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1160": {"test": "setrlimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1161": {"test": "setrlimit02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1162": {"test": "setrlimit03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1163": {"test": "setrlimit04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1164": {"test": "setrlimit05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1165": {"test": "setrlimit06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1166": {"test": "setsid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1167": {"test": "setsockopt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1168": {"test": "setsockopt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1169": {"test": "setsockopt03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1170": {"test": "setsockopt04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1171": {"test": "setsockopt05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1172": {"test": "setsockopt06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1173": {"test": "setsockopt07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1174": {"test": "setsockopt08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1175": {"test": "setsockopt09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1176": {"test": "setsockopt10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1177": {"test": "settimeofday01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1178": {"test": "settimeofday02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1179": {"test": "setuid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1180": {"test": "setuid01_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1181": {"test": "setuid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1182": {"test": "setuid03_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1183": {"test": "setuid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1184": {"test": "setuid04_16", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1185": {"test": "setxattr01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1186": {"test": "setxattr02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1187": {"test": "setxattr03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1188": {"test": "shmat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1189": {"test": "shmat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1190": {"test": "shmat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1191": {"test": "shmat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1192": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1193": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1194": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1195": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1196": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1197": {"test": "shmctl06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1198": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1199": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1200": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1201": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1202": {"test": "shmget02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1203": {"test": "shmget03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1204": {"test": "shmget04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1205": {"test": "shmget05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1206": {"test": "shmget06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1207": {"test": "shutdown01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1208": {"test": "shutdown02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1209": {"test": "sigaction01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1210": {"test": "sigaction02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1211": {"test": "sigaltstack01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1212": {"test": "sigaltstack02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1213": {"test": "sighold02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1214": {"test": "signal01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1215": {"test": "signal02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1216": {"test": "signal03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1217": {"test": "signal04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1218": {"test": "signal05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1219": {"test": "signal06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1220": {"test": "signalfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1221": {"test": "signalfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1222": {"test": "signalfd4_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1223": {"test": "signalfd4_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1224": {"test": "sigpending02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1225": {"test": "sigprocmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1226": {"test": "sigrelse01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1227": {"test": "sigsuspend01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1228": {"test": "sigsuspend02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1229": {"test": "sigtimedwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1230": {"test": "sigwait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1231": {"test": "sigwaitinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1232": {"test": "socket01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1233": {"test": "socket02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1234": {"test": "socketcall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1235": {"test": "socketcall02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1236": {"test": "socketcall03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1237": {"test": "socketpair01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1238": {"test": "socketpair02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1239": {"test": "sockioctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1240": {"test": "splice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1241": {"test": "splice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1242": {"test": "splice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1243": {"test": "splice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1244": {"test": "splice05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1245": {"test": "splice06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1246": {"test": "splice07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1247": {"test": "splice08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1248": {"test": "splice09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1249": {"test": "tee01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1250": {"test": "tee02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1251": {"test": "ssetmask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1252": {"test": "stat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1253": {"test": "stat01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1254": {"test": "stat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1255": {"test": "stat02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1256": {"test": "stat03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1257": {"test": "stat03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1258": {"test": "stat04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1259": {"test": "stat04_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1260": {"test": "statmount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1261": {"test": "statmount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1262": {"test": "statmount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1263": {"test": "statmount04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1264": {"test": "statmount05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1265": {"test": "statmount06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1266": {"test": "statmount07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1267": {"test": "statmount08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1268": {"test": "statfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1269": {"test": "statfs01_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1270": {"test": "statfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1271": {"test": "statfs02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1272": {"test": "statfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1273": {"test": "statfs03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1274": {"test": "statvfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1275": {"test": "statvfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1276": {"test": "stime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1277": {"test": "stime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1278": {"test": "string01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1279": {"test": "swapoff01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1280": {"test": "swapoff02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1281": {"test": "swapon01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1282": {"test": "swapon02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1283": {"test": "swapon03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1284": {"test": "switch01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1285": {"test": "symlink01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1286": {"test": "symlink02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1287": {"test": "symlink03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1288": {"test": "symlink04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1289": {"test": "symlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1290": {"test": "sync01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1291": {"test": "syncfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1292": {"test": "sync_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1293": {"test": "sync_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1294": {"test": "syscall01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1295": {"test": "sysconf01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1296": {"test": "sysctl01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1297": {"test": "sysctl03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1298": {"test": "sysctl04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1299": {"test": "sysfs01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1300": {"test": "sysfs02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1301": {"test": "sysfs03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1302": {"test": "sysfs04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1303": {"test": "sysfs05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1304": {"test": "sysinfo01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1305": {"test": "sysinfo02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1306": {"test": "sysinfo03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1307": {"test": "syslog11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1308": {"test": "syslog12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1309": {"test": "tgkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1310": {"test": "tgkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1311": {"test": "tgkill03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1312": {"test": "time01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1313": {"test": "times01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1314": {"test": "times03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1315": {"test": "timerfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1316": {"test": "timerfd02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1317": {"test": "timerfd04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1318": {"test": "timerfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1319": {"test": "timerfd_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1320": {"test": "timerfd_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1321": {"test": "timerfd_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1322": {"test": "timer_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1323": {"test": "timer_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1324": {"test": "timer_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1325": {"test": "timer_delete01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1326": {"test": "timer_delete02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1327": {"test": "timer_getoverrun01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1328": {"test": "timer_gettime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1329": {"test": "timer_settime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1330": {"test": "timer_settime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1331": {"test": "timer_settime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1332": {"test": "tkill01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1333": {"test": "tkill02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1334": {"test": "truncate02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1335": {"test": "truncate02_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1336": {"test": "truncate03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1337": {"test": "truncate03_64", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1338": {"test": "ulimit01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1339": {"test": "umask01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1340": {"test": "uname01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1341": {"test": "uname02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1342": {"test": "uname04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1343": {"test": "unlink01", "status": "pass", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0}, "1344": {"test": "unlink05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1345": {"test": "unlink07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1346": {"test": "unlink08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1347": {"test": "unlink09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1348": {"test": "unlink10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1349": {"test": "unlinkat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1350": {"test": "unshare01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1351": {"test": "unshare02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1352": {"test": "umount01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1353": {"test": "umount02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1354": {"test": "umount03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1355": {"test": "umount2_01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1356": {"test": "umount2_02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1357": {"test": "userfaultfd01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1358": {"test": "ustat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1359": {"test": "ustat02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1360": {"test": "utime01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1361": {"test": "utime02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1362": {"test": "utime03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1363": {"test": "utime04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1364": {"test": "utime05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1365": {"test": "utime06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1366": {"test": "utime07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1367": {"test": "utimes01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1368": {"test": "utimensat01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1369": {"test": "vfork01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1370": {"test": "vfork02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1371": {"test": "vhangup01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1372": {"test": "vhangup02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1373": {"test": "vmsplice01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1374": {"test": "vmsplice02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1375": {"test": "vmsplice03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1376": {"test": "vmsplice04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1377": {"test": "wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1378": {"test": "wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1379": {"test": "wait401", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1380": {"test": "wait402", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1381": {"test": "wait403", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1382": {"test": "waitpid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1383": {"test": "waitpid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1384": {"test": "waitpid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1385": {"test": "waitpid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1386": {"test": "waitpid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1387": {"test": "waitpid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1388": {"test": "waitpid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1389": {"test": "waitpid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1390": {"test": "waitpid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1391": {"test": "waitpid12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1392": {"test": "waitpid13", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1393": {"test": "waitid01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1394": {"test": "waitid02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1395": {"test": "waitid03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1396": {"test": "waitid04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1397": {"test": "waitid05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1398": {"test": "waitid06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1399": {"test": "waitid07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1400": {"test": "waitid08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1401": {"test": "waitid09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1402": {"test": "waitid10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1403": {"test": "waitid11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1404": {"test": "write01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1405": {"test": "write02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1406": {"test": "write03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1407": {"test": "write04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1408": {"test": "write05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1409": {"test": "write06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1410": {"test": "writev01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1411": {"test": "writev02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1412": {"test": "writev03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1413": {"test": "writev05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1414": {"test": "writev06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1415": {"test": "writev07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1416": {"test": "perf_event_open01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1417": {"test": "perf_event_open02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1418": {"test": "futex_cmp_requeue01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1419": {"test": "futex_cmp_requeue02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1420": {"test": "futex_wait01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1421": {"test": "futex_wait02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1422": {"test": "futex_wait03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1423": {"test": "futex_wait04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1424": {"test": "futex_wait05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1425": {"test": "futex_waitv01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1426": {"test": "futex_waitv02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1427": {"test": "futex_waitv03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1428": {"test": "futex_wake01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1429": {"test": "futex_wake02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1430": {"test": "futex_wake03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1431": {"test": "futex_wake04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1432": {"test": "futex_wait_bitset01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1433": {"test": "memfd_create01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1434": {"test": "memfd_create02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1435": {"test": "memfd_create03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1436": {"test": "memfd_create04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1437": {"test": "copy_file_range01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1438": {"test": "copy_file_range02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1439": {"test": "copy_file_range03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1440": {"test": "statx01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1441": {"test": "statx02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1442": {"test": "statx03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1443": {"test": "statx04", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1444": {"test": "statx05", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1445": {"test": "statx06", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1446": {"test": "statx07", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1447": {"test": "statx08", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1448": {"test": "statx09", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1449": {"test": "statx10", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1450": {"test": "statx11", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1451": {"test": "statx12", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1452": {"test": "membarrier01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1453": {"test": "io_uring01", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1454": {"test": "io_uring02", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "1455": {"test": "perf_event_open03", "status": "pass", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0}, "summary": {"passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}}} 2026-07-07 14:35:06.735937 2026-07-07 14:30:31.718825 +629 21 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 14:35:49.283407 2026-07-07 14:35:49.283411 +630 21 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 14:35:06' --until '2026-07-07 14:35:48' 0 OOM records 2026-07-07 14:35:06.42009 2026-07-07 14:35:48.859099 +631 21 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 14:35:06' --until '2026-07-07 14:35:48' 0 systemd errors records 2026-07-07 14:35:06.42009 2026-07-07 14:35:48.859099 +632 22 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-07 14:43:33.120166 2026-07-07 14:43:33.120172 +633 22 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 14:46:54.764663 2026-07-07 14:46:54.764666 +634 22 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 14:46:53' --until '2026-07-07 14:46:54' 0 OOM records 2026-07-07 14:46:53.90304 2026-07-07 14:46:54.339031 +635 22 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 14:46:53' --until '2026-07-07 14:46:54' 0 systemd errors records 2026-07-07 14:46:53.90304 2026-07-07 14:46:54.339031 +636 22 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-07 14:43:33.120166 2026-07-07 14:43:33.120172 +637 22 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 14:47:09.657704 2026-07-07 14:47:09.657708 +638 22 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 14:46:55' --until '2026-07-07 14:47:09' 0 OOM records 2026-07-07 14:46:55.58848 2026-07-07 14:47:09.232724 +639 22 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 14:46:55' --until '2026-07-07 14:47:09' 0 systemd errors records 2026-07-07 14:46:55.58848 2026-07-07 14:47:09.232724 +640 22 loader /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-07_14:47:10.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 14.22}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboS0rmgN as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11977553367614746}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0955204963684082}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accQY2ZEg as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 39989\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1118917465209961}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11113262176513672}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 38143\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46027\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 43065\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11703681945800781}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accyinF9F as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.542870044708252}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accKUKh4K as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2847268581390381}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12030410766601562}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc6VkkEl as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc6VkkEl/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14623045921325684}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accxjGmwd as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accxjGmwd/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15852069854736328}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accZmXA3T as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1965372562408447}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1043236255645752}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0894613265991211}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12415504455566406}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10240340232849121}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.358933448791504}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09490323066711426}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1047818660736084}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08975982666015625}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0943443775177002}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09733152389526367}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.090200424194336}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0932388305664062}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.093125343322754}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09127187728881836}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binwDHABE as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10337352752685547}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11175274848937988}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bindrG5q4 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09130525588989258}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binu8zrj3 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14406323432922363}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin4nWmeU as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13439178466796875}, "summary": {"passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}}} 2026-07-07 14:47:10.818276 2026-07-07 14:43:33.120172 +641 22 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-07 14:47:53.600684 2026-07-07 14:47:53.600688 +642 22 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-07 14:47:10' --until '2026-07-07 14:47:53' 0 OOM records 2026-07-07 14:47:10.491546 2026-07-07 14:47:53.147036 +643 22 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-07 14:47:10' --until '2026-07-07 14:47:53' 0 systemd errors records 2026-07-07 14:47:10.491546 2026-07-07 14:47:53.147036 +644 23 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-12 15:07:02.289289 2026-07-12 15:07:02.289295 +645 23 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-12 15:11:28.366153 2026-07-12 15:11:28.366155 +646 23 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-12 15:11:27' --until '2026-07-12 15:11:27' 0 OOM records 2026-07-12 15:11:27.511555 2026-07-12 15:11:27.944362 +647 23 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-12 15:11:27' --until '2026-07-12 15:11:27' 0 systemd errors records 2026-07-12 15:11:27.511555 2026-07-12 15:11:27.944362 +660 25 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-12 15:20:18.04516 2026-07-12 15:20:18.045165 +661 25 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-12 15:24:49.191562 2026-07-12 15:24:49.191564 +662 25 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-12 15:24:48' --until '2026-07-12 15:24:48' 0 OOM records 2026-07-12 15:24:48.342337 2026-07-12 15:24:48.771494 +663 25 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-12 15:24:48' --until '2026-07-12 15:24:48' 0 systemd errors records 2026-07-12 15:24:48.342337 2026-07-12 15:24:48.771494 +664 25 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-12 15:20:18.04516 2026-07-12 15:20:18.045165 +665 25 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-12 15:25:04.926814 2026-07-12 15:25:04.926816 +666 25 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-12 15:24:50' --until '2026-07-12 15:25:04' 0 OOM records 2026-07-12 15:24:50.058479 2026-07-12 15:25:04.505845 +667 25 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-12 15:24:50' --until '2026-07-12 15:25:04' 0 systemd errors records 2026-07-12 15:24:50.058479 2026-07-12 15:25:04.505845 +668 25 loader /usr/bin/perf bench --format default --repeat 3 sched messaging {"tool": "perf", "test_type": {"benchmark": "sched/messaging"}, "time": {"duration_sec": 13.663}, "metrics": {}} 2026-07-12 15:26:44.010372 2026-07-12 15:26:53.824323 +669 25 loader /usr/bin/perf bench --format default --repeat 3 sched messaging --thread {"tool": "perf", "test_type": {"benchmark": "sched/messaging"}, "time": {"duration_sec": 12.994}, "metrics": {}} 2026-07-12 15:26:53.826922 2026-07-12 15:27:02.53978 +670 26 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-13 13:55:02.044357 2026-07-13 13:55:02.044362 +671 26 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 13:58:43.715463 2026-07-13 13:58:43.715465 +672 26 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 13:58:42' --until '2026-07-13 13:58:43' 0 OOM records 2026-07-13 13:58:42.872204 2026-07-13 13:58:43.297414 +673 26 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 13:58:42' --until '2026-07-13 13:58:43' 0 systemd errors records 2026-07-13 13:58:42.872204 2026-07-13 13:58:43.297414 +674 26 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-13 13:55:02.044357 2026-07-13 13:55:02.044362 +675 26 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 13:58:59.029531 2026-07-13 13:58:59.029533 +676 26 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 13:58:44' --until '2026-07-13 13:58:58' 0 OOM records 2026-07-13 13:58:44.573106 2026-07-13 13:58:58.609661 +677 26 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 13:58:44' --until '2026-07-13 13:58:58' 0 systemd errors records 2026-07-13 13:58:44.573106 2026-07-13 13:58:58.609661 +678 26 loader /usr/bin/stress-ng --timeout 200 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --perf --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 783795.32}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 783789.47, "usr_time_secs": 0.49, "sys_time_secs": 5.36, "bogo_ops_s_real_time": 0.0, "bogo_ops_s_usr_sys_time": 388.31, "cpu_used_per_instance": 0.0, "rss_max_kb": 4856, "top10_slowest": [["syslog", 618192426.0, 484738813, 751646039], ["execve", 45915554.0, 35228458, 56602650], ["execveat", 42754176.5, 39856908, 45651445], ["fdatasync", 25976796.5, 14871484, 37082109], ["sync", 14557482.5, 14071699, 15043266], ["pwritev2", 14454012.5, 14126069, 14781956], ["clone", 9764152.0, 5839670, 13688634], ["fork", 7136293.0, 4967276, 9305310], ["clone3", 7066492.5, 5807427, 8325558], ["fsync", 5677360.0, 5263777, 6090943]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-13 13:59:00.091849 2026-07-13 13:55:02.044362 +679 26 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 14:01:11.048073 2026-07-13 14:01:11.048075 +680 26 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 13:58:59' --until '2026-07-13 14:01:10' 0 OOM records 2026-07-13 13:58:59.880232 2026-07-13 14:01:10.6283 +681 26 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 13:58:59' --until '2026-07-13 14:01:10' 0 systemd errors records 2026-07-13 13:58:59.880232 2026-07-13 14:01:10.6283 +682 27 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-13 14:11:08.428817 2026-07-13 14:11:08.42882 +683 27 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 14:13:37.012713 2026-07-13 14:13:37.012716 +684 27 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 14:13:36' --until '2026-07-13 14:13:36' 0 OOM records 2026-07-13 14:13:36.240041 2026-07-13 14:13:36.560117 +685 27 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 14:13:36' --until '2026-07-13 14:13:36' 0 systemd errors records 2026-07-13 14:13:36.240041 2026-07-13 14:13:36.560117 +686 27 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-13 14:11:08.428817 2026-07-13 14:11:08.42882 +687 27 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 14:13:52.360864 2026-07-13 14:13:52.360866 +688 27 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 14:13:37' --until '2026-07-13 14:13:51' 1 OOM records 2026-07-13 14:13:37.882662 2026-07-13 14:13:51.939552 +689 27 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 14:13:37' --until '2026-07-13 14:13:51' 0 systemd errors records 2026-07-13 14:13:37.882662 2026-07-13 14:13:51.939552 +690 27 loader /usr/bin/stress-ng --timeout 30 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 20.94}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 18.05, "usr_time_secs": 0.49, "sys_time_secs": 2.4, "bogo_ops_s_real_time": 125.85, "bogo_ops_s_usr_sys_time": 785.54, "cpu_used_per_instance": 4.01, "rss_max_kb": 5032, "top10_slowest": [["syslog", 15193328871.5, 863590726, 29523067017], ["sync", 56777733.0, 16035313, 97520153], ["execveat", 36140362.5, 29193642, 43087083], ["execve", 30048392.5, 29675944, 30420841], ["fdatasync", 14381725.5, 4668690, 24094761], ["pwritev2", 10537786.5, 8056595, 13018978], ["fsync", 9559885.0, 6905971, 12213799], ["clone", 9040071.5, 3802350, 14277793], ["clock_nanosleep", 8366182.0, 381231, 16351133], ["syncfs", 5686039.5, 4520557, 6851522]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-13 14:13:53.44584 2026-07-13 14:11:08.42882 +692 27 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 14:13:53' --until '2026-07-13 14:14:15' 1 OOM records 2026-07-13 14:13:53.222264 2026-07-13 14:14:15.082597 +693 27 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 14:13:53' --until '2026-07-13 14:14:15' 0 systemd errors records 2026-07-13 14:13:53.222264 2026-07-13 14:14:15.082597 +694 28 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-13 14:21:37.936884 2026-07-13 14:21:37.936893 +695 28 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 14:24:34.729119 2026-07-13 14:24:34.729122 +696 28 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 14:24:33' --until '2026-07-13 14:24:34' 0 OOM records 2026-07-13 14:24:33.952916 2026-07-13 14:24:34.278779 +697 28 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 14:24:33' --until '2026-07-13 14:24:34' 0 systemd errors records 2026-07-13 14:24:33.952916 2026-07-13 14:24:34.278779 +698 28 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-13 14:21:37.936884 2026-07-13 14:21:37.936893 +699 28 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 14:24:50.297761 2026-07-13 14:24:50.297764 +700 28 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 14:24:35' --until '2026-07-13 14:24:49' 1 OOM records 2026-07-13 14:24:35.633849 2026-07-13 14:24:49.876546 +701 28 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 14:24:35' --until '2026-07-13 14:24:49' 0 systemd errors records 2026-07-13 14:24:35.633849 2026-07-13 14:24:49.876546 +702 28 loader /usr/bin/stress-ng --timeout 30 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --perf --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 24.32}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 18.15, "usr_time_secs": 0.54, "sys_time_secs": 5.63, "bogo_ops_s_real_time": 125.18, "bogo_ops_s_usr_sys_time": 368.38, "cpu_used_per_instance": 8.49, "rss_max_kb": 4996, "top10_slowest": [["syslog", 15037585278.5, 978852800, 29096317757], ["execve", 50235585.0, 41398925, 59072245], ["sync", 50194427.0, 12081567, 88307287], ["execveat", 43257994.0, 38942315, 47573673], ["clone3", 15931285.5, 10965193, 20897378], ["clone", 15197310.5, 14464080, 15930541], ["fdatasync", 14895235.0, 14325200, 15465270], ["pwritev2", 13472237.0, 12547168, 14397306], ["clock_nanosleep", 11688779.5, 615835, 22761724], ["fsync", 10608998.5, 8106746, 13111251]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-13 14:24:51.399147 2026-07-13 14:21:37.936893 +703 28 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 14:25:13.760578 2026-07-13 14:25:13.760581 +704 28 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 14:24:51' --until '2026-07-13 14:25:13' 1 OOM records 2026-07-13 14:24:51.187805 2026-07-13 14:25:13.34116 +705 28 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 14:24:51' --until '2026-07-13 14:25:13' 0 systemd errors records 2026-07-13 14:24:51.187805 2026-07-13 14:25:13.34116 +706 29 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-13 16:04:29.025341 2026-07-13 16:04:29.025347 +707 29 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:06:50.627061 2026-07-13 16:06:50.627065 +708 29 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:06:49' --until '2026-07-13 16:06:50' 0 OOM records 2026-07-13 16:06:49.78168 2026-07-13 16:06:50.205961 +709 29 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:06:49' --until '2026-07-13 16:06:50' 0 systemd errors records 2026-07-13 16:06:49.78168 2026-07-13 16:06:50.205961 +710 29 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-13 16:04:29.025341 2026-07-13 16:04:29.025347 +711 29 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:07:06.16054 2026-07-13 16:07:06.160542 +712 29 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:06:51' --until '2026-07-13 16:07:05' 1 OOM records 2026-07-13 16:06:51.498438 2026-07-13 16:07:05.739425 +713 29 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:06:51' --until '2026-07-13 16:07:05' 0 systemd errors records 2026-07-13 16:06:51.498438 2026-07-13 16:07:05.739425 +714 29 loader /usr/bin/stress-ng --timeout 30 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --perf --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 28.3}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 22.41, "usr_time_secs": 0.55, "sys_time_secs": 5.34, "bogo_ops_s_real_time": 101.38, "bogo_ops_s_usr_sys_time": 385.86, "cpu_used_per_instance": 6.57, "rss_max_kb": 4888, "top10_slowest": [["syslog", 796952933.0, 774658315, 819247551], ["execve", 40280606.0, 38330840, 42230372], ["execveat", 39937969.0, 38469078, 41406860], ["sync", 16719717.0, 14471184, 18968250], ["pwritev2", 15533604.0, 12993213, 18073995], ["fdatasync", 14173178.0, 7193235, 21153121], ["clone", 10882784.5, 5734506, 16031063], ["clone3", 10076420.5, 6212212, 13940629], ["fsync", 6172309.0, 4511791, 7832827], ["fork", 5886064.5, 5374759, 6397370]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-13 16:07:07.229718 2026-07-13 16:04:29.025347 +715 29 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:07:29.592911 2026-07-13 16:07:29.592913 +716 29 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:07:07' --until '2026-07-13 16:07:29' 1 OOM records 2026-07-13 16:07:07.016305 2026-07-13 16:07:29.17265 +717 29 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:07:07' --until '2026-07-13 16:07:29' 0 systemd errors records 2026-07-13 16:07:07.016305 2026-07-13 16:07:29.17265 +718 30 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-13 16:21:37.83234 2026-07-13 16:21:37.832345 +719 30 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:23:48.033246 2026-07-13 16:23:48.033248 +720 30 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:23:47' --until '2026-07-13 16:23:47' 0 OOM records 2026-07-13 16:23:47.25352 2026-07-13 16:23:47.577321 +721 30 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:23:47' --until '2026-07-13 16:23:47' 0 systemd errors records 2026-07-13 16:23:47.25352 2026-07-13 16:23:47.577321 +722 30 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-13 16:21:37.83234 2026-07-13 16:21:37.832345 +723 30 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:24:04.150826 2026-07-13 16:24:04.150828 +724 30 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:23:48' --until '2026-07-13 16:24:03' 1 OOM records 2026-07-13 16:23:48.892805 2026-07-13 16:24:03.729693 +725 30 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:23:48' --until '2026-07-13 16:24:03' 0 systemd errors records 2026-07-13 16:23:48.892805 2026-07-13 16:24:03.729693 +726 30 loader /usr/bin/stress-ng --timeout 30 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --perf --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 23.36}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 17.35, "usr_time_secs": 0.54, "sys_time_secs": 5.47, "bogo_ops_s_real_time": 130.95, "bogo_ops_s_usr_sys_time": 377.75, "cpu_used_per_instance": 8.67, "rss_max_kb": 4928, "top10_slowest": [["syslog", 14779120126.0, 356257372, 29201982880], ["sync", 44192135.5, 13359326, 75024945], ["execve", 42934991.0, 40859463, 45010519], ["execveat", 41997149.0, 39963343, 44030955], ["fdatasync", 18093167.5, 11915762, 24270573], ["pwritev2", 14221385.0, 13675069, 14767701], ["fsync", 9010103.0, 4979367, 13040839], ["msync", 8565658.0, 150517, 16980799], ["fork", 8225836.0, 7584487, 8867185], ["clone3", 7944115.5, 7267427, 8620804]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-13 16:24:05.234489 2026-07-13 16:21:37.832345 +727 30 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:24:28.197874 2026-07-13 16:24:28.197876 +728 30 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:24:05' --until '2026-07-13 16:24:27' 1 OOM records 2026-07-13 16:24:05.018982 2026-07-13 16:24:27.777917 +729 30 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:24:05' --until '2026-07-13 16:24:27' 0 systemd errors records 2026-07-13 16:24:05.018982 2026-07-13 16:24:27.777917 +730 31 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-13 16:27:19.069985 2026-07-13 16:27:19.06999 +731 31 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:31:37.924498 2026-07-13 16:31:37.9245 +732 31 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:31:37' --until '2026-07-13 16:31:37' 0 OOM records 2026-07-13 16:31:37.124376 2026-07-13 16:31:37.465075 +733 31 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:31:37' --until '2026-07-13 16:31:37' 0 systemd errors records 2026-07-13 16:31:37.124376 2026-07-13 16:31:37.465075 +734 31 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-13 16:27:19.069985 2026-07-13 16:27:19.06999 +735 31 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:31:53.750271 2026-07-13 16:31:53.750273 +736 31 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:31:38' --until '2026-07-13 16:31:53' 1 OOM records 2026-07-13 16:31:38.790195 2026-07-13 16:31:53.330251 +737 31 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:31:38' --until '2026-07-13 16:31:53' 0 systemd errors records 2026-07-13 16:31:38.790195 2026-07-13 16:31:53.330251 +738 31 loader /usr/bin/stress-ng --timeout 30 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --perf --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 21.43}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 15.25, "usr_time_secs": 0.57, "sys_time_secs": 5.61, "bogo_ops_s_real_time": 148.96, "bogo_ops_s_usr_sys_time": 367.71, "cpu_used_per_instance": 10.13, "rss_max_kb": 4928, "top10_slowest": [["syslog", 671919719.5, 530178476, 813660963], ["execve", 46537222.5, 46279135, 46795310], ["execveat", 41941305.5, 41847558, 42035053], ["fdatasync", 17499389.5, 14764846, 20233933], ["clone3", 17177444.5, 7338105, 27016784], ["sync", 16908027.0, 9887695, 23928359], ["syncfs", 14447849.5, 14252169, 14643530], ["pwritev2", 11090579.0, 8599131, 13582027], ["clone", 10760527.5, 6759689, 14761366], ["msync", 8682653.5, 88697, 17276610]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-13 16:31:54.823888 2026-07-13 16:27:19.06999 +739 31 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:32:16.58913 2026-07-13 16:32:16.589136 +740 31 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:31:54' --until '2026-07-13 16:32:16' 1 OOM records 2026-07-13 16:31:54.604707 2026-07-13 16:32:16.167418 +741 31 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:31:54' --until '2026-07-13 16:32:16' 0 systemd errors records 2026-07-13 16:31:54.604707 2026-07-13 16:32:16.167418 +742 32 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-13 16:41:15.377122 2026-07-13 16:41:15.377127 +743 32 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:44:05.434591 2026-07-13 16:44:05.434595 +744 32 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:44:04' --until '2026-07-13 16:44:05' 0 OOM records 2026-07-13 16:44:04.58138 2026-07-13 16:44:05.010914 +745 32 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:44:04' --until '2026-07-13 16:44:05' 0 systemd errors records 2026-07-13 16:44:04.58138 2026-07-13 16:44:05.010914 +746 32 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-13 16:41:15.377122 2026-07-13 16:41:15.377127 +747 32 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 16:44:21.675617 2026-07-13 16:44:21.67562 +748 32 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:44:06' --until '2026-07-13 16:44:21' 1 OOM records 2026-07-13 16:44:06.300599 2026-07-13 16:44:21.254012 +749 32 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:44:06' --until '2026-07-13 16:44:21' 0 systemd errors records 2026-07-13 16:44:06.300599 2026-07-13 16:44:21.254012 +750 32 loader /usr/bin/stress-ng --timeout 30 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --perf --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 18.29}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 12.1, "usr_time_secs": 0.6, "sys_time_secs": 5.59, "bogo_ops_s_real_time": 187.72, "bogo_ops_s_usr_sys_time": 367.03, "cpu_used_per_instance": 12.79, "rss_max_kb": 4900, "top10_slowest": [["syslog", 646349466.0, 519998013, 772700919], ["execve", 47342543.5, 44016920, 50668167], ["execveat", 46061640.5, 42991689, 49131592], ["fdatasync", 22316377.5, 16454871, 28177884], ["sync", 17152627.5, 16605088, 17700167], ["pwritev2", 15083616.0, 7414776, 22752456], ["clone", 12719992.5, 6799474, 18640511], ["fsync", 10547525.5, 10250421, 10844630], ["clone3", 10003648.0, 5645227, 14362069], ["fork", 7729483.0, 5720658, 9738308]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-13 16:44:22.768761 2026-07-13 16:41:15.377127 +752 32 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 16:44:22' --until '2026-07-13 16:44:44' 1 OOM records 2026-07-13 16:44:22.539465 2026-07-13 16:44:44.71597 +753 32 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 16:44:22' --until '2026-07-13 16:44:44' 0 systemd errors records 2026-07-13 16:44:22.539465 2026-07-13 16:44:44.71597 +754 33 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-13 17:13:04.210529 2026-07-13 17:13:04.210533 +755 33 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 17:20:35.31389 2026-07-13 17:20:35.313892 +756 33 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 17:20:34' --until '2026-07-13 17:20:34' 0 OOM records 2026-07-13 17:20:34.454833 2026-07-13 17:20:34.892936 +757 33 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 17:20:34' --until '2026-07-13 17:20:34' 0 systemd errors records 2026-07-13 17:20:34.454833 2026-07-13 17:20:34.892936 +758 33 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-13 17:13:04.210529 2026-07-13 17:13:04.210533 +759 33 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 17:20:51.041725 2026-07-13 17:20:51.041727 +760 33 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 17:20:36' --until '2026-07-13 17:20:50' 0 OOM records 2026-07-13 17:20:36.173539 2026-07-13 17:20:50.62035 +761 33 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 17:20:36' --until '2026-07-13 17:20:50' 0 systemd errors records 2026-07-13 17:20:36.173539 2026-07-13 17:20:50.62035 +762 33 loader /usr/bin/stress-ng --timeout 30 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --perf --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 795759.56}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 795753.3, "usr_time_secs": 0.56, "sys_time_secs": 5.7, "bogo_ops_s_real_time": 0.0, "bogo_ops_s_usr_sys_time": 362.81, "cpu_used_per_instance": 0.0, "rss_max_kb": 5032, "stats": {"cpu_clock": 5176245988, "task_clock": 5291814884, "page_faults_total": 9656, "page_faults_minor": 9656, "page_faults_major": 0, "context_switches": 1540, "cgroup_switches": 936, "cpu_migrations": 196, "alignment_faults": 0, "emulation_faults": 0, "page_faults_user": 9048, "page_faults_kernel": 608, "system_call_enter": 14044, "system_call_exit": 14052, "tlb_flushes": 2932, "software_i/o_tlb_bounces": 0, "kmalloc": 27588, "kfree": 28512, "kmem_cache_alloc": 94620, "kmem_cache_free": 27552, "mm_page_alloc": 8808, "mm_page_free": 1140, "mmap_lock_start": 3088, "mmap_lock_release": 3088, "mmap_lock_acquire": 3192, "rcu_utilization": 23016, "rcu_stall_warning": 0, "rcu_preempt_task": 176, "sched_migrate_task": 360, "sched_move_numa": 0, "sched_wakeup": 692, "sched_proc_exec": 16, "sched_proc_exit": 0, "sched_proc_fork": 264, "sched_proc_free": 176, "sched_proc_wait": 896, "sched_switch": 1540, "sched_wait_task": 0, "new_task": 264, "signal_generate": 656, "signal_deliver": 188, "irq_entry": 24, "irq_exit": 24, "soft_irq_entry": 4764, "soft_irq_exit": 4760, "tasklet_entry": 0, "tasklet_exit": 0, "nmi_handler": 0, "ipi_entry": 0, "ipi_raise": 0, "ipi_send_cpu": 1168, "ipi_send_cpu_mask": 0, "ipi_exit": 0, "x86_platform_ipi_entry": 0, "call_function_entry": 0, "irq_work_entry": 0, "local_timer_entry": 5224, "reschedule_entry": 408, "thermal_apic_entry": 0, "block_bio_complete": 0, "iomap_read_page": 0, "iomap_write_page": 0, "io_uring_submit_req": 0, "io_uring_complete": 0, "writeback_dirty_inode": 728, "writeback_dirty_folio": 164, "migrate_mm_pages": 0, "skb_consume": 244, "skb_kfree": 0, "lock_contention_begin": 9516, "lock_contention_end": 9344, "maple_tree_op": 228, "maple_tree_read": 1188, "maple_tree_write": 17716, "qdisc_enqueue": 0, "qdisc_dequeue": 0, "msr_read": 0, "msr_write": 0, "iommu_io_page_fault": 0, "iommu_map": 0, "iommu_unmap": 0, "filemap_page_cache_add": 208, "filemap_page_cache_del": 228, "filemap_page_fault": 1020, "filemap_map_pages": 3964, "oom_compact_retry": 0, "oom_wake_reaper": 0, "oom_mark_victim": 0, "oom_score_adjust_update": 4, "thermal_zone_trip": 0}, "top10_slowest": [["syslog", 14721634531.5, 484697302, 28958571761], ["execve", 64574875.5, 39198090, 89951661], ["execveat", 56481764.5, 39097975, 73865554], ["sync", 51215863.0, 14838678, 87593048], ["fdatasync", 33482340.0, 13286797, 53677883], ["fork", 16315762.5, 5747600, 26883925], ["pwritev2", 15389729.5, 13798534, 16980925], ["clone", 13781463.5, 6609266, 20953661], ["clone3", 11809735.0, 8431914, 15187556], ["vfork", 8486197.0, 8049413, 8922981]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-13 17:20:52.187386 2026-07-13 17:13:04.210533 +763 33 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 17:21:13.955777 2026-07-13 17:21:13.95578 +764 33 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 17:20:51' --until '2026-07-13 17:21:13' 0 OOM records 2026-07-13 17:20:51.973827 2026-07-13 17:21:13.535307 +765 33 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 17:20:51' --until '2026-07-13 17:21:13' 0 systemd errors records 2026-07-13 17:20:51.973827 2026-07-13 17:21:13.535307 +766 34 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-13 18:00:18.953544 2026-07-13 18:00:18.953549 +767 34 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 18:03:38.461544 2026-07-13 18:03:38.461546 +768 34 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 18:03:37' --until '2026-07-13 18:03:38' 0 OOM records 2026-07-13 18:03:37.680977 2026-07-13 18:03:38.010528 +769 34 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 18:03:37' --until '2026-07-13 18:03:38' 0 systemd errors records 2026-07-13 18:03:37.680977 2026-07-13 18:03:38.010528 +770 34 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-13 18:00:18.953544 2026-07-13 18:00:18.953549 +771 34 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 18:03:54.072774 2026-07-13 18:03:54.072776 +772 34 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 18:03:39' --until '2026-07-13 18:03:53' 0 OOM records 2026-07-13 18:03:39.31397 2026-07-13 18:03:53.653056 +773 34 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 18:03:39' --until '2026-07-13 18:03:53' 0 systemd errors records 2026-07-13 18:03:39.31397 2026-07-13 18:03:53.653056 +774 34 loader /usr/bin/stress-ng --timeout 30 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --perf --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 798379.15}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 798372.99, "usr_time_secs": 0.51, "sys_time_secs": 5.65, "bogo_ops_s_real_time": 0.0, "bogo_ops_s_usr_sys_time": 368.56, "cpu_used_per_instance": 0.0, "rss_max_kb": 5024, "stats": {"cpu_clock_____________________": 4618248348, "task_clock____________________": 4732190928, "page_faults_total_____________": 9580, "page_faults_minor_____________": 9576, "page_faults_major_____________": 4, "context_switches______________": 1440, "cgroup_switches_______________": 872, "cpu_migrations________________": 204, "alignment_faults______________": 0, "emulation_faults______________": 0, "page_faults_user______________": 8964, "page_faults_kernel____________": 616, "system_call_enter_____________": 12752, "system_call_exit______________": 12764, "tlb_flushes___________________": 2884, "software_i/o_tlb_bounces______": 0, "kmalloc_______________________": 27720, "kfree_________________________": 28556, "kmem_cache_alloc______________": 94724, "kmem_cache_free_______________": 25768, "mm_page_alloc_________________": 8184, "mm_page_free__________________": 1000, "mmap_lock_start_______________": 3092, "mmap_lock_release_____________": 3092, "mmap_lock_acquire_____________": 3196, "rcu_utilization_______________": 19544, "rcu_stall_warning_____________": 0, "rcu_preempt_task______________": 152, "sched_migrate_task____________": 252, "sched_move_numa_______________": 0, "sched_wakeup__________________": 604, "sched_proc_exec_______________": 16, "sched_proc_exit_______________": 0, "sched_proc_fork_______________": 264, "sched_proc_free_______________": 216, "sched_proc_wait_______________": 496, "sched_switch__________________": 1440, "sched_wait_task_______________": 0, "new_task______________________": 264, "signal_generate_______________": 256, "signal_deliver________________": 116, "irq_entry_____________________": 36, "irq_exit______________________": 36, "soft_irq_entry________________": 4224, "soft_irq_exit_________________": 4224, "tasklet_entry_________________": 0, "tasklet_exit__________________": 0, "nmi_handler___________________": 0, "ipi_entry_____________________": 0, "ipi_raise_____________________": 0, "ipi_send_cpu__________________": 1388, "ipi_send_cpu_mask_____________": 0, "ipi_exit______________________": 0, "x86_platform_ipi_entry________": 0, "call_function_entry___________": 0, "irq_work_entry________________": 0, "local_timer_entry_____________": 4712, "reschedule_entry______________": 264, "thermal_apic_entry____________": 0, "block_bio_complete____________": 0, "iomap_read_page_______________": 0, "iomap_write_page______________": 0, "io_uring_submit_req___________": 0, "io_uring_complete_____________": 0, "writeback_dirty_inode_________": 660, "writeback_dirty_folio_________": 164, "migrate_mm_pages______________": 0, "skb_consume___________________": 232, "skb_kfree_____________________": 4, "lock_contention_begin_________": 5160, "lock_contention_end___________": 5040, "maple_tree_op_________________": 220, "maple_tree_read_______________": 1192, "maple_tree_write______________": 17716, "qdisc_enqueue_________________": 0, "qdisc_dequeue_________________": 0, "msr_read______________________": 0, "msr_write_____________________": 0, "iommu_io_page_fault___________": 0, "iommu_map_____________________": 0, "iommu_unmap___________________": 0, "filemap_page_cache_add________": 212, "filemap_page_cache_del________": 228, "filemap_page_fault____________": 1012, "filemap_map_pages_____________": 3904, "oom_compact_retry_____________": 0, "oom_wake_reaper_______________": 0, "oom_mark_victim_______________": 0, "oom_score_adjust_update_______": 4, "thermal_zone_trip_____________": 0}, "top10_slowest": [["syslog", 665309324.0, 458616134, 872002514], ["execve", 69692738.5, 37524422, 101861055], ["execveat", 42411037.0, 42297193, 42524881], ["clone", 18704579.5, 6582136, 30827023], ["fdatasync", 18237920.5, 14107031, 22368810], ["sync", 16779591.5, 15723899, 17835284], ["clone3", 10726771.5, 6242165, 15211378], ["pwritev2", 9197818.0, 7488811, 10906825], ["fork", 9117321.5, 5254556, 12980087], ["msync", 8115646.0, 83915, 16147377]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-13 18:03:55.14438 2026-07-13 18:00:18.953549 +775 34 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 18:04:17.711653 2026-07-13 18:04:17.711655 +776 34 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 18:03:54' --until '2026-07-13 18:04:17' 0 OOM records 2026-07-13 18:03:54.922932 2026-07-13 18:04:17.28905 +777 34 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 18:03:54' --until '2026-07-13 18:04:17' 0 systemd errors records 2026-07-13 18:03:54.922932 2026-07-13 18:04:17.28905 +778 35 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-13 18:19:06.432917 2026-07-13 18:19:06.432921 +779 35 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 18:21:12.645611 2026-07-13 18:21:12.645614 +780 35 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 18:21:11' --until '2026-07-13 18:21:12' 0 OOM records 2026-07-13 18:21:11.791261 2026-07-13 18:21:12.224346 +781 35 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 18:21:11' --until '2026-07-13 18:21:12' 0 systemd errors records 2026-07-13 18:21:11.791261 2026-07-13 18:21:12.224346 +782 35 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-13 18:19:06.432917 2026-07-13 18:19:06.432921 +784 35 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 18:21:13' --until '2026-07-13 18:21:28' 1 OOM records 2026-07-13 18:21:13.546319 2026-07-13 18:21:28.081151 +785 35 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 18:21:13' --until '2026-07-13 18:21:28' 0 systemd errors records 2026-07-13 18:21:13.546319 2026-07-13 18:21:28.081151 +786 35 loader /usr/bin/stress-ng --timeout 30 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --perf --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 21.59}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 15.86, "usr_time_secs": 0.53, "sys_time_secs": 5.2, "bogo_ops_s_real_time": 143.27, "bogo_ops_s_usr_sys_time": 396.21, "cpu_used_per_instance": 9.04, "rss_max_kb": 5020, "stats": {"cpu_clock": 4393884464, "task_clock": 4470912592, "page_faults_total": 9628, "page_faults_minor": 9628, "page_faults_major": 0, "context_switches": 1092, "cgroup_switches": 732, "cpu_migrations": 112, "alignment_faults": 0, "emulation_faults": 0, "page_faults_user": 9032, "page_faults_kernel": 596, "system_call_enter": 13084, "system_call_exit": 13096, "tlb_flushes": 3004, "software_i/o_tlb_bounces": 0, "kmalloc": 27692, "kfree": 28020, "kmem_cache_alloc": 94688, "kmem_cache_free": 22376, "mm_page_alloc": 8660, "mm_page_free": 1040, "mmap_lock_start": 3068, "mmap_lock_release": 3068, "mmap_lock_acquire": 3172, "rcu_utilization": 17544, "rcu_stall_warning": 0, "rcu_preempt_task": 80, "sched_migrate_task": 264, "sched_move_numa": 0, "sched_wakeup": 428, "sched_proc_exec": 16, "sched_proc_exit": 0, "sched_proc_fork": 264, "sched_proc_free": 180, "sched_proc_wait": 600, "sched_switch": 1092, "sched_wait_task": 0, "new_task": 264, "signal_generate": 360, "signal_deliver": 128, "irq_entry": 32, "irq_exit": 32, "soft_irq_entry": 3688, "soft_irq_exit": 3688, "tasklet_entry": 0, "tasklet_exit": 0, "nmi_handler": 0, "ipi_entry": 0, "ipi_raise": 0, "ipi_send_cpu": 1300, "ipi_send_cpu_mask": 0, "ipi_exit": 0, "x86_platform_ipi_entry": 0, "call_function_entry": 0, "irq_work_entry": 0, "local_timer_entry": 4372, "reschedule_entry": 180, "thermal_apic_entry": 0, "block_bio_complete": 0, "iomap_read_page": 0, "iomap_write_page": 0, "io_uring_submit_req": 0, "io_uring_complete": 0, "writeback_dirty_inode": 664, "writeback_dirty_folio": 164, "migrate_mm_pages": 0, "skb_consume": 232, "skb_kfree": 4, "lock_contention_begin": 5288, "lock_contention_end": 5248, "maple_tree_op": 232, "maple_tree_read": 1168, "maple_tree_write": 17724, "qdisc_enqueue": 0, "qdisc_dequeue": 0, "msr_read": 0, "msr_write": 0, "iommu_io_page_fault": 0, "iommu_map": 0, "iommu_unmap": 0, "filemap_page_cache_add": 200, "filemap_page_cache_del": 228, "filemap_page_fault": 1016, "filemap_map_pages": 3940, "oom_compact_retry": 0, "oom_wake_reaper": 0, "oom_mark_victim": 0, "oom_score_adjust_update": 4, "thermal_zone_trip": 0}, "top10_slowest": [["syslog", 500441474.0, 467492515, 533390433], ["execve", 43528640.0, 40141815, 46915465], ["execveat", 39739833.0, 38570319, 40909347], ["fdatasync", 14994096.5, 12793709, 17194484], ["pwritev2", 13897576.0, 12950625, 14844527], ["sync", 12072399.0, 8260473, 15884325], ["clone", 10471992.0, 6440620, 14503364], ["vfork", 6590773.5, 5277845, 7903702], ["clone3", 6442801.5, 6354229, 6531374], ["syncfs", 5646621.5, 3500608, 7792635]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-13 18:21:29.572472 2026-07-13 18:19:06.432921 +787 35 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-13 18:21:51.932228 2026-07-13 18:21:51.932231 +788 35 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 18:21:29' --until '2026-07-13 18:21:51' 1 OOM records 2026-07-13 18:21:29.360135 2026-07-13 18:21:51.510883 +789 35 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 18:21:29' --until '2026-07-13 18:21:51' 0 systemd errors records 2026-07-13 18:21:29.360135 2026-07-13 18:21:51.510883 +790 36 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 52.424, "kernel_time": 3.74, "userspace_time": 74.71000000000001, "total_time": 130.875} 2026-07-13 18:39:40.808806 2026-07-13 18:39:40.808813 +791 36 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-13 18:45:25.633812 2026-07-13 18:45:25.633815 +792 36 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 18:45:21' --until '2026-07-13 18:45:23' 0 OOM records 2026-07-13 18:45:21.856857 2026-07-13 18:45:23.3867 +793 36 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 18:45:21' --until '2026-07-13 18:45:23' 0 systemd errors records 2026-07-13 18:45:21.856857 2026-07-13 18:45:23.3867 +794 36 loader systemd-analyze critical-chain [{"service_name": "cloud-config.service", "slow_time_s": 7.318}, {"service_name": "cloud-init.service", "slow_time_s": 13.249}, {"service_name": "wicked.service", "slow_time_s": 14.412}, {"service_name": "cloud-init-local.service", "slow_time_s": 15.218}] 2026-07-13 18:39:40.808806 2026-07-13 18:39:40.808813 +795 36 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-13 18:45:36.772 2026-07-13 18:45:36.772003 +796 36 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 18:45:27' --until '2026-07-13 18:45:34' 0 OOM records 2026-07-13 18:45:27.839044 2026-07-13 18:45:34.429247 +797 36 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 18:45:27' --until '2026-07-13 18:45:34' 0 systemd errors records 2026-07-13 18:45:27.839044 2026-07-13 18:45:34.429247 +798 36 loader /usr/bin/stress-ng --timeout 30 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --perf --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 34.51}, "metrics": {"0": {"bogo_ops": 2352, "real_time_secs": 32.77, "usr_time_secs": 0.63, "sys_time_secs": 1.11, "bogo_ops_s_real_time": 71.77, "bogo_ops_s_usr_sys_time": 1356.42, "cpu_used_per_instance": 1.32, "rss_max_kb": 5652, "stats": null, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-13 18:45:40.956869 2026-07-13 18:39:40.808813 +799 36 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-13 18:46:18.053809 2026-07-13 18:46:18.053812 +800 36 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-13 18:45:40' --until '2026-07-13 18:46:15' 0 OOM records 2026-07-13 18:45:40.008953 2026-07-13 18:46:15.91504 +801 36 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-13 18:45:40' --until '2026-07-13 18:46:15' 0 systemd errors records 2026-07-13 18:45:40.008953 2026-07-13 18:46:15.91504 +802 37 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-16 11:06:54.761816 2026-07-16 11:06:54.761821 +803 37 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:10:36.757469 2026-07-16 11:10:36.757471 +804 37 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:10:35' --until '2026-07-16 11:10:36' 0 OOM records 2026-07-16 11:10:35.883545 2026-07-16 11:10:36.337343 +805 37 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:10:35' --until '2026-07-16 11:10:36' 0 systemd errors records 2026-07-16 11:10:35.883545 2026-07-16 11:10:36.337343 +806 37 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-16 11:06:54.761816 2026-07-16 11:06:54.761821 +807 37 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:10:52.696229 2026-07-16 11:10:52.696232 +808 37 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:10:37' --until '2026-07-16 11:10:52' 0 OOM records 2026-07-16 11:10:37.625606 2026-07-16 11:10:52.275687 +809 37 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:10:37' --until '2026-07-16 11:10:52' 0 systemd errors records 2026-07-16 11:10:37.625606 2026-07-16 11:10:52.275687 +810 37 loader /usr/bin/iperf3 --time 50 --port 5201 --client 10.5.0.10 --version4 --json {"tool": "iperf3", "test_type": {"protocol": "TCP"}, "time": {"duration_sec": 50.0}, "metrics": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 38510, "remote_host": "10.5.0.10", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux 99567e0fdf54 6.17.0-35-generic #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 19:30:42 UTC 2 x86_64", "timestamp": {"time": "Thu, 16 Jul 2026 11:10:56 GMT", "timesecs": 1784200256}, "connecting_to": {"host": "10.5.0.10", "port": 5201}, "cookie": "xjjbu2j4vfy6nnvpqeyh3dyaauqt3lbxco37", "tcp_mss_default": 1448, "target_bitrate": 0, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.00049, "seconds": 1.0004899501800537, "bytes": 114294784, "bits_per_second": 913910501.3852932, "retransmits": 1, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 479, "rttvar": 528, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.00049, "seconds": 1.0004899501800537, "bytes": 114294784, "bits_per_second": 913910501.3852932, "retransmits": 1, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.00049, "end": 2.000502, "seconds": 1.0000120401382446, "bytes": 94109696, "bits_per_second": 752868503.3591396, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 486, "rttvar": 526, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 1.00049, "end": 2.000502, "seconds": 1.0000120401382446, "bytes": 94109696, "bits_per_second": 752868503.3591396, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.000502, "end": 3.001017, "seconds": 1.0005149841308594, "bytes": 103546880, "bits_per_second": 827948659.5791504, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 418, "rttvar": 580, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 2.000502, "end": 3.001017, "seconds": 1.0005149841308594, "bytes": 103546880, "bits_per_second": 827948659.5791504, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.001017, "end": 4.001018, "seconds": 1.0000009536743164, "bytes": 98697216, "bits_per_second": 789576975.000718, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 700, "rttvar": 721, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 3.001017, "end": 4.001018, "seconds": 1.0000009536743164, "bytes": 98697216, "bits_per_second": 789576975.000718, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.001018, "end": 5.000491, "seconds": 0.999472975730896, "bytes": 94109696, "bits_per_second": 753274561.9754598, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 629, "rttvar": 660, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 4.001018, "end": 5.000491, "seconds": 0.999472975730896, "bytes": 94109696, "bits_per_second": 753274561.9754598, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.000491, "end": 6.000494, "seconds": 1.0000029802322388, "bytes": 93847552, "bits_per_second": 750778178.5066682, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 447, "rttvar": 587, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 5.000491, "end": 6.000494, "seconds": 1.0000029802322388, "bytes": 93847552, "bits_per_second": 750778178.5066682, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.000494, "end": 7.001019, "seconds": 1.0005249977111816, "bytes": 93061120, "bits_per_second": 744098310.0903084, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 461, "rttvar": 650, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 6.000494, "end": 7.001019, "seconds": 1.0005249977111816, "bytes": 93061120, "bits_per_second": 744098310.0903084, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.001019, "end": 8.000492, "seconds": 0.999472975730896, "bytes": 93061120, "bits_per_second": 744881530.644257, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 598, "rttvar": 636, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 7.001019, "end": 8.000492, "seconds": 0.999472975730896, "bytes": 93061120, "bits_per_second": 744881530.644257, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.000492, "end": 9.000551, "seconds": 1.0000590085983276, "bytes": 92536832, "bits_per_second": 740250974.8275647, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 424, "rttvar": 533, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 8.000492, "end": 9.000551, "seconds": 1.0000590085983276, "bytes": 92536832, "bits_per_second": 740250974.8275647, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.000551, "end": 10.000494, "seconds": 0.9999430179595947, "bytes": 95420416, "bits_per_second": 763406828.478746, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 389, "rttvar": 553, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 9.000551, "end": 10.000494, "seconds": 0.9999430179595947, "bytes": 95420416, "bits_per_second": 763406828.478746, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.000494, "end": 11.000496, "seconds": 1.0000020265579224, "bytes": 104857600, "bits_per_second": 838859100.003445, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 592, "rttvar": 639, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 10.000494, "end": 11.000496, "seconds": 1.0000020265579224, "bytes": 104857600, "bits_per_second": 838859100.003445, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.000496, "end": 12.000498, "seconds": 1.0000020265579224, "bytes": 94502912, "bits_per_second": 756021763.878105, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 502, "rttvar": 586, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 11.000496, "end": 12.000498, "seconds": 1.0000020265579224, "bytes": 94502912, "bits_per_second": 756021763.878105, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.000498, "end": 13.000495, "seconds": 0.9999970197677612, "bytes": 97124352, "bits_per_second": 776997131.631901, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 518, "rttvar": 597, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 12.000498, "end": 13.000495, "seconds": 0.9999970197677612, "bytes": 97124352, "bits_per_second": 776997131.631901, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.000495, "end": 14.000495, "seconds": 1, "bytes": 95027200, "bits_per_second": 760217600, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 555, "rttvar": 700, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 13.000495, "end": 14.000495, "seconds": 1, "bytes": 95027200, "bits_per_second": 760217600, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.000495, "end": 15.000492, "seconds": 0.9999970197677612, "bytes": 95682560, "bits_per_second": 765462761.2567986, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 493, "rttvar": 500, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 14.000495, "end": 15.000492, "seconds": 0.9999970197677612, "bytes": 95682560, "bits_per_second": 765462761.2567986, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.000492, "end": 16.000494, "seconds": 1.0000020265579224, "bytes": 97910784, "bits_per_second": 783284684.628217, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 564, "rttvar": 720, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 15.000492, "end": 16.000494, "seconds": 1.0000020265579224, "bytes": 97910784, "bits_per_second": 783284684.628217, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.000494, "end": 17.000493, "seconds": 0.9999989867210388, "bytes": 107872256, "bits_per_second": 862978922.438386, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 435, "rttvar": 474, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 16.000494, "end": 17.000493, "seconds": 0.9999989867210388, "bytes": 107872256, "bits_per_second": 862978922.438386, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.000493, "end": 18.000498, "seconds": 1.0000050067901611, "bytes": 99745792, "bits_per_second": 797962340.7700033, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 569, "rttvar": 717, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 17.000493, "end": 18.000498, "seconds": 1.0000050067901611, "bytes": 99745792, "bits_per_second": 797962340.7700033, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.000498, "end": 19.000499, "seconds": 1.0000009536743164, "bytes": 88735744, "bits_per_second": 709885275.0006456, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 23552, "rtt": 559, "rttvar": 645, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 18.000498, "end": 19.000499, "seconds": 1.0000009536743164, "bytes": 88735744, "bits_per_second": 709885275.0006456, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.000499, "end": 20.000499, "seconds": 1, "bytes": 104333312, "bits_per_second": 834666496, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 517, "rttvar": 618, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 19.000499, "end": 20.000499, "seconds": 1, "bytes": 104333312, "bits_per_second": 834666496, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.000499, "end": 21.000497, "seconds": 0.9999979734420776, "bytes": 93978624, "bits_per_second": 751830515.6280878, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 417, "rttvar": 574, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 20.000499, "end": 21.000497, "seconds": 0.9999979734420776, "bytes": 93978624, "bits_per_second": 751830515.6280878, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.000497, "end": 22.000496, "seconds": 0.9999989867210388, "bytes": 95551488, "bits_per_second": 764412678.563285, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 465, "rttvar": 317, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 21.000497, "end": 22.000496, "seconds": 0.9999989867210388, "bytes": 95551488, "bits_per_second": 764412678.563285, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.000496, "end": 23.000492, "seconds": 0.9999960064888, "bytes": 97255424, "bits_per_second": 778046499.1374084, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 423, "rttvar": 520, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 22.000496, "end": 23.000492, "seconds": 0.9999960064888, "bytes": 97255424, "bits_per_second": 778046499.1374084, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.000492, "end": 24.000912, "seconds": 1.0004199743270874, "bytes": 95813632, "bits_per_second": 766187277.013913, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 435, "rttvar": 437, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 23.000492, "end": 24.000912, "seconds": 1.0004199743270874, "bytes": 95813632, "bits_per_second": 766187277.013913, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.000912, "end": 25.000494, "seconds": 0.9995819926261902, "bytes": 94502912, "bits_per_second": 756339451.467817, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 454, "rttvar": 491, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 24.000912, "end": 25.000494, "seconds": 0.9995819926261902, "bytes": 94502912, "bits_per_second": 756339451.467817, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.000494, "end": 26.000497, "seconds": 1.0000029802322388, "bytes": 106823680, "bits_per_second": 854586893.1325903, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 290, "rttvar": 371, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 25.000494, "end": 26.000497, "seconds": 1.0000029802322388, "bytes": 106823680, "bits_per_second": 854586893.1325903, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.000497, "end": 27.000498, "seconds": 1.0000009536743164, "bytes": 104595456, "bits_per_second": 836762850.000761, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 378, "rttvar": 516, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 26.000497, "end": 27.000498, "seconds": 1.0000009536743164, "bytes": 104595456, "bits_per_second": 836762850.000761, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.000498, "end": 28.000495, "seconds": 0.9999970197677612, "bytes": 103415808, "bits_per_second": 827328929.6323482, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 354, "rttvar": 449, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 27.000498, "end": 28.000495, "seconds": 0.9999970197677612, "bytes": 103415808, "bits_per_second": 827328929.6323482, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.000495, "end": 29.001031, "seconds": 1.00053596496582, "bytes": 99745792, "bits_per_second": 797538883.099779, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 402, "rttvar": 566, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 28.000495, "end": 29.001031, "seconds": 1.00053596496582, "bytes": 99745792, "bits_per_second": 797538883.099779, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.001031, "end": 30.000505, "seconds": 0.9994739890098572, "bytes": 97779712, "bits_per_second": 782649378.174348, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 434, "rttvar": 583, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 29.001031, "end": 30.000505, "seconds": 0.9994739890098572, "bytes": 97779712, "bits_per_second": 782649378.174348, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.000505, "end": 31.000499, "seconds": 0.9999939799308777, "bytes": 103022592, "bits_per_second": 824185697.6548696, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 541, "rttvar": 658, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 30.000505, "end": 31.000499, "seconds": 0.9999939799308777, "bytes": 103022592, "bits_per_second": 824185697.6548696, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.000499, "end": 32.000495, "seconds": 0.9999960064888, "bytes": 97517568, "bits_per_second": 780143659.512442, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 509, "rttvar": 587, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 31.000499, "end": 32.000495, "seconds": 0.9999960064888, "bytes": 97517568, "bits_per_second": 780143659.512442, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.000495, "end": 33.000857, "seconds": 1.0003620386123657, "bytes": 95158272, "bits_per_second": 760990667.994536, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 585, "rttvar": 712, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 32.000495, "end": 33.000857, "seconds": 1.0003620386123657, "bytes": 95158272, "bits_per_second": 760990667.994536, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.000857, "end": 34.000497, "seconds": 0.9996399879455566, "bytes": 100270080, "bits_per_second": 802449531.504424, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 525, "rttvar": 583, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 33.000857, "end": 34.000497, "seconds": 0.9996399879455566, "bytes": 100270080, "bits_per_second": 802449531.504424, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.000497, "end": 35.000493, "seconds": 0.9999960064888, "bytes": 94371840, "bits_per_second": 754977735.0120405, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 557, "rttvar": 593, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 34.000497, "end": 35.000493, "seconds": 0.9999960064888, "bytes": 94371840, "bits_per_second": 754977735.0120405, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.000493, "end": 36.000494, "seconds": 1.0000009536743164, "bytes": 106299392, "bits_per_second": 850394325.0007734, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 244, "rttvar": 332, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 35.000493, "end": 36.000494, "seconds": 1.0000009536743164, "bytes": 106299392, "bits_per_second": 850394325.0007734, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.000494, "end": 37.001019, "seconds": 1.0005249977111816, "bytes": 106168320, "bits_per_second": 848900888.9762675, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 501, "rttvar": 676, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 36.000494, "end": 37.001019, "seconds": 1.0005249977111816, "bytes": 106168320, "bits_per_second": 848900888.9762675, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.001019, "end": 38.001016, "seconds": 0.9999970197677612, "bytes": 95289344, "bits_per_second": 762317023.8817707, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 506, "rttvar": 589, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 37.001019, "end": 38.001016, "seconds": 0.9999970197677612, "bytes": 95289344, "bits_per_second": 762317023.8817707, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.001016, "end": 39.000498, "seconds": 0.999481976032257, "bytes": 94502912, "bits_per_second": 756415137.170618, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 502, "rttvar": 621, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 38.001016, "end": 39.000498, "seconds": 0.999481976032257, "bytes": 94502912, "bits_per_second": 756415137.170618, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.000498, "end": 40.0005, "seconds": 1.0000020265579224, "bytes": 102629376, "bits_per_second": 821033344.128372, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 375, "rttvar": 437, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 39.000498, "end": 40.0005, "seconds": 1.0000020265579224, "bytes": 102629376, "bits_per_second": 821033344.128372, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.0005, "end": 41.001017, "seconds": 1.0005170106887817, "bytes": 99090432, "bits_per_second": 792313821.285526, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 23552, "rtt": 505, "rttvar": 424, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 40.0005, "end": 41.001017, "seconds": 1.0005170106887817, "bytes": 99090432, "bits_per_second": 792313821.285526, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.001017, "end": 42.001019, "seconds": 1.0000020265579224, "bytes": 95944704, "bits_per_second": 767556076.5031523, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 525, "rttvar": 666, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 41.001017, "end": 42.001019, "seconds": 1.0000020265579224, "bytes": 95944704, "bits_per_second": 767556076.5031523, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.001019, "end": 43.000491, "seconds": 0.9994720220565796, "bytes": 103415808, "bits_per_second": 827763504.8729413, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 454, "rttvar": 459, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 42.001019, "end": 43.000491, "seconds": 0.9994720220565796, "bytes": 103415808, "bits_per_second": 827763504.8729413, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.000491, "end": 44.000492, "seconds": 1.0000009536743164, "bytes": 98697216, "bits_per_second": 789576975.000718, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 347, "rttvar": 350, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 43.000491, "end": 44.000492, "seconds": 1.0000009536743164, "bytes": 98697216, "bits_per_second": 789576975.000718, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.000492, "end": 45.000496, "seconds": 1.0000040531158447, "bytes": 93847552, "bits_per_second": 750777373.0123336, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 0, "rtt": 628, "rttvar": 645, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 44.000492, "end": 45.000496, "seconds": 1.0000040531158447, "bytes": 93847552, "bits_per_second": 750777373.0123336, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 45.000496, "end": 46.000495, "seconds": 0.9999989867210388, "bytes": 98566144, "bits_per_second": 788529951.0008097, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 487, "rttvar": 532, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 45.000496, "end": 46.000495, "seconds": 0.9999989867210388, "bytes": 98566144, "bits_per_second": 788529951.0008097, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 46.000495, "end": 47.000502, "seconds": 1.0000070333480835, "bytes": 104333312, "bits_per_second": 834660625.541289, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 23552, "rtt": 565, "rttvar": 569, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 46.000495, "end": 47.000502, "seconds": 1.0000070333480835, "bytes": 104333312, "bits_per_second": 834660625.541289, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 47.000502, "end": 48.000493, "seconds": 0.999990999698639, "bytes": 103022592, "bits_per_second": 824188153.9417638, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 341, "rttvar": 417, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 47.000502, "end": 48.000493, "seconds": 0.999990999698639, "bytes": 103022592, "bits_per_second": 824188153.9417638, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 48.000493, "end": 49.001018, "seconds": 1.0005249977111816, "bytes": 100663296, "bits_per_second": 804883805.8441646, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 480, "rttvar": 532, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 48.000493, "end": 49.001018, "seconds": 1.0005249977111816, "bytes": 100663296, "bits_per_second": 804883805.8441646, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 49.001018, "end": 50.000881, "seconds": 0.999863028526306, "bytes": 104071168, "bits_per_second": 832683397.872127, "retransmits": 0, "snd_cwnd": 262088, "snd_wnd": 111616, "rtt": 444, "rttvar": 385, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 49.001018, "end": 50.000881, "seconds": 0.999863028526306, "bytes": 104071168, "bits_per_second": 832683397.872127, "retransmits": 0, "omitted": false, "sender": true}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 50.000881, "seconds": 50.000881, "bytes": 4944822272, "bits_per_second": 791157623.322677, "retransmits": 1, "max_snd_cwnd": 262088, "max_snd_wnd": 111616, "max_rtt": 700, "min_rtt": 244, "mean_rtt": 480, "sender": true}, "receiver": {"socket": 5, "start": 0, "end": 78.26399, "seconds": 50.000881, "bytes": 4943380480, "bits_per_second": 505303190.39445853, "sender": true}}], "sum_sent": {"start": 0, "end": 50.000881, "seconds": 50.000881, "bytes": 4944822272, "bits_per_second": 791157623.322677, "retransmits": 1, "sender": true}, "sum_received": {"start": 0, "end": 78.26399, "seconds": 78.26399, "bytes": 4943380480, "bits_per_second": 505303190.39445853, "sender": true}, "cpu_utilization_percent": {"host_total": 1.7642629336199274, "host_user": 0.05171702543791077, "host_system": 1.7125579042446688, "remote_total": 93.58113692055625, "remote_user": 7.04158549361241, "remote_system": 86.53940832318064}, "sender_tcp_congestion": "cubic", "receiver_tcp_congestion": "cubic"}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 38510}], "version": "iperf 3.18", "system_info": "Linux qemux86-64 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64", "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "timestamp": {"time": "Sat, 04 Jul 2026 12:18:45 GMT", "timesecs": 1783167525}, "accepted_connection": {"host": "10.5.0.11", "port": 38508}, "cookie": "xjjbu2j4vfy6nnvpqeyh3dyaauqt3lbxco37", "tcp_mss_default": 0, "target_bitrate": 0, "fq_rate": 0, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.029266, "seconds": 1.0292659997940063, "bytes": 75628544, "bits_per_second": 587825063.803806, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.029266, "seconds": 1.0292659997940063, "bytes": 75628544, "bits_per_second": 587825063.803806, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.029266, "end": 2.00196, "seconds": 0.9726939797401428, "bytes": 61997056, "bits_per_second": 509899781.7715507, "omitted": false, "sender": false}], "sum": {"start": 1.029266, "end": 2.00196, "seconds": 0.9726939797401428, "bytes": 61997056, "bits_per_second": 509899781.7715507, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.00196, "end": 3.052201, "seconds": 1.0502409934997559, "bytes": 64487424, "bits_per_second": 491220010.6385582, "omitted": false, "sender": false}], "sum": {"start": 2.00196, "end": 3.052201, "seconds": 1.0502409934997559, "bytes": 64487424, "bits_per_second": 491220010.6385582, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.052201, "end": 4.001862, "seconds": 0.9496610164642334, "bytes": 59113472, "bits_per_second": 497975348.8889379, "omitted": false, "sender": false}], "sum": {"start": 3.052201, "end": 4.001862, "seconds": 0.9496610164642334, "bytes": 59113472, "bits_per_second": 497975348.8889379, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.001862, "end": 5.00707, "seconds": 1.0052080154418945, "bytes": 66846720, "bits_per_second": 532003079.74554974, "omitted": false, "sender": false}], "sum": {"start": 4.001862, "end": 5.00707, "seconds": 1.0052080154418945, "bytes": 66846720, "bits_per_second": 532003079.74554974, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.00707, "end": 6.04368, "seconds": 1.0366100072860718, "bytes": 66846720, "bits_per_second": 515887128.467996, "omitted": false, "sender": false}], "sum": {"start": 5.00707, "end": 6.04368, "seconds": 1.0366100072860718, "bytes": 66846720, "bits_per_second": 515887128.467996, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.04368, "end": 7.009229, "seconds": 0.9655489921569824, "bytes": 58851328, "bits_per_second": 487609254.2422269, "omitted": false, "sender": false}], "sum": {"start": 6.04368, "end": 7.009229, "seconds": 0.9655489921569824, "bytes": 58851328, "bits_per_second": 487609254.2422269, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.009229, "end": 8.042618, "seconds": 1.03338897228241, "bytes": 62390272, "bits_per_second": 482995454.16824657, "omitted": false, "sender": false}], "sum": {"start": 7.009229, "end": 8.042618, "seconds": 1.03338897228241, "bytes": 62390272, "bits_per_second": 482995454.16824657, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.042618, "end": 9.029158, "seconds": 0.9865400195121765, "bytes": 58982400, "bits_per_second": 478297069.21907187, "omitted": false, "sender": false}], "sum": {"start": 8.042618, "end": 9.029158, "seconds": 0.9865400195121765, "bytes": 58982400, "bits_per_second": 478297069.21907187, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.029158, "end": 10.133535, "seconds": 1.104377031326294, "bytes": 65667072, "bits_per_second": 475685894.48940337, "omitted": false, "sender": false}], "sum": {"start": 9.029158, "end": 10.133535, "seconds": 1.104377031326294, "bytes": 65667072, "bits_per_second": 475685894.48940337, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.133535, "end": 11.047679, "seconds": 0.914143979549408, "bytes": 54263808, "bits_per_second": 474881937.3223658, "omitted": false, "sender": false}], "sum": {"start": 10.133535, "end": 11.047679, "seconds": 0.914143979549408, "bytes": 54263808, "bits_per_second": 474881937.3223658, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.047679, "end": 12.024965, "seconds": 0.9772859811782837, "bytes": 59244544, "bits_per_second": 484972015.4877955, "omitted": false, "sender": false}], "sum": {"start": 11.047679, "end": 12.024965, "seconds": 0.9772859811782837, "bytes": 59244544, "bits_per_second": 484972015.4877955, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.024965, "end": 13.002362, "seconds": 0.9773970246315002, "bytes": 56754176, "bits_per_second": 464533241.41351914, "omitted": false, "sender": false}], "sum": {"start": 12.024965, "end": 13.002362, "seconds": 0.9773970246315002, "bytes": 56754176, "bits_per_second": 464533241.41351914, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.002362, "end": 14.038657, "seconds": 1.0362950563430786, "bytes": 61079552, "bits_per_second": 471522480.98559946, "omitted": false, "sender": false}], "sum": {"start": 13.002362, "end": 14.038657, "seconds": 1.0362950563430786, "bytes": 61079552, "bits_per_second": 471522480.98559946, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.038657, "end": 15.013713, "seconds": 0.975055992603302, "bytes": 58589184, "bits_per_second": 480704160.1258015, "omitted": false, "sender": false}], "sum": {"start": 14.038657, "end": 15.013713, "seconds": 0.975055992603302, "bytes": 58589184, "bits_per_second": 480704160.1258015, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.013713, "end": 16.01587, "seconds": 1.0021569728851318, "bytes": 67108864, "bits_per_second": 535715388.4330022, "omitted": false, "sender": false}], "sum": {"start": 15.013713, "end": 16.01587, "seconds": 1.0021569728851318, "bytes": 67108864, "bits_per_second": 535715388.4330022, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.01587, "end": 17.061526, "seconds": 1.0456559658050537, "bytes": 68157440, "bits_per_second": 521452119.84727985, "omitted": false, "sender": false}], "sum": {"start": 16.01587, "end": 17.061526, "seconds": 1.0456559658050537, "bytes": 68157440, "bits_per_second": 521452119.84727985, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.061526, "end": 18.007061, "seconds": 0.9455350041389465, "bytes": 57147392, "bits_per_second": 483513708.11102986, "omitted": false, "sender": false}], "sum": {"start": 17.061526, "end": 18.007061, "seconds": 0.9455350041389465, "bytes": 57147392, "bits_per_second": 483513708.11102986, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.007061, "end": 19.043182, "seconds": 1.0361210107803345, "bytes": 62521344, "bits_per_second": 482733915.05043036, "omitted": false, "sender": false}], "sum": {"start": 18.007061, "end": 19.043182, "seconds": 1.0361210107803345, "bytes": 62521344, "bits_per_second": 482733915.05043036, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.043182, "end": 20.012824, "seconds": 0.9696419835090637, "bytes": 61472768, "bits_per_second": 507179095.34019583, "omitted": false, "sender": false}], "sum": {"start": 19.043182, "end": 20.012824, "seconds": 0.9696419835090637, "bytes": 61472768, "bits_per_second": 507179095.34019583, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.012824, "end": 21.056902, "seconds": 1.04407799243927, "bytes": 62783488, "bits_per_second": 481063586.85576355, "omitted": false, "sender": false}], "sum": {"start": 20.012824, "end": 21.056902, "seconds": 1.04407799243927, "bytes": 62783488, "bits_per_second": 481063586.85576355, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.056902, "end": 22.034271, "seconds": 0.9773690104484558, "bytes": 59637760, "bits_per_second": 488149383.59984076, "omitted": false, "sender": false}], "sum": {"start": 21.056902, "end": 22.034271, "seconds": 0.9773690104484558, "bytes": 59637760, "bits_per_second": 488149383.59984076, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.034271, "end": 23.34411, "seconds": 1.3098390102386475, "bytes": 80216064, "bits_per_second": 489929301.98580635, "omitted": false, "sender": false}], "sum": {"start": 22.034271, "end": 23.34411, "seconds": 1.3098390102386475, "bytes": 80216064, "bits_per_second": 489929301.98580635, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.34411, "end": 24.002768, "seconds": 0.6586580276489258, "bytes": 39714816, "bits_per_second": 482372512.9929617, "omitted": false, "sender": false}], "sum": {"start": 23.34411, "end": 24.002768, "seconds": 0.6586580276489258, "bytes": 39714816, "bits_per_second": 482372512.9929617, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.002768, "end": 25.025237, "seconds": 1.0224690437316895, "bytes": 65536000, "bits_per_second": 512766624.29457444, "omitted": false, "sender": false}], "sum": {"start": 24.002768, "end": 25.025237, "seconds": 1.0224690437316895, "bytes": 65536000, "bits_per_second": 512766624.29457444, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.025237, "end": 26.002494, "seconds": 0.977257013320923, "bytes": 65667072, "bits_per_second": 537562349.3504508, "omitted": false, "sender": false}], "sum": {"start": 25.025237, "end": 26.002494, "seconds": 0.977257013320923, "bytes": 65667072, "bits_per_second": 537562349.3504508, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.002494, "end": 27.059504, "seconds": 1.0570100545883179, "bytes": 74842112, "bits_per_second": 566443898.4293246, "omitted": false, "sender": false}], "sum": {"start": 26.002494, "end": 27.059504, "seconds": 1.0570100545883179, "bytes": 74842112, "bits_per_second": 566443898.4293246, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.059504, "end": 28.01619, "seconds": 0.956686019897461, "bytes": 57933824, "bits_per_second": 484454233.00914913, "omitted": false, "sender": false}], "sum": {"start": 27.059504, "end": 28.01619, "seconds": 0.956686019897461, "bytes": 57933824, "bits_per_second": 484454233.00914913, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.01619, "end": 29.029721, "seconds": 1.013530969619751, "bytes": 59375616, "bits_per_second": 468663457.0014262, "omitted": false, "sender": false}], "sum": {"start": 28.01619, "end": 29.029721, "seconds": 1.013530969619751, "bytes": 59375616, "bits_per_second": 468663457.0014262, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.029721, "end": 30.053074, "seconds": 1.0233529806137085, "bytes": 57933824, "bits_per_second": 452894163.3824675, "omitted": false, "sender": false}], "sum": {"start": 29.029721, "end": 30.053074, "seconds": 1.0233529806137085, "bytes": 57933824, "bits_per_second": 452894163.3824675, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.053074, "end": 31.00705, "seconds": 0.9539759755134583, "bytes": 68812800, "bits_per_second": 577061072.951762, "omitted": false, "sender": false}], "sum": {"start": 30.053074, "end": 31.00705, "seconds": 0.9539759755134583, "bytes": 68812800, "bits_per_second": 577061072.951762, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.00705, "end": 32.032046, "seconds": 1.024996042251587, "bytes": 60817408, "bits_per_second": 474674285.503805, "omitted": false, "sender": false}], "sum": {"start": 31.00705, "end": 32.032046, "seconds": 1.024996042251587, "bytes": 60817408, "bits_per_second": 474674285.503805, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.032046, "end": 33.112849, "seconds": 1.0808030366897583, "bytes": 64880640, "bits_per_second": 480240249.4997713, "omitted": false, "sender": false}], "sum": {"start": 32.032046, "end": 33.112849, "seconds": 1.0808030366897583, "bytes": 64880640, "bits_per_second": 480240249.4997713, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.112849, "end": 34.043813, "seconds": 0.9309639930725098, "bytes": 57409536, "bits_per_second": 493334104.66738474, "omitted": false, "sender": false}], "sum": {"start": 33.112849, "end": 34.043813, "seconds": 0.9309639930725098, "bytes": 57409536, "bits_per_second": 493334104.66738474, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.043813, "end": 35.020854, "seconds": 0.977041006088257, "bytes": 61341696, "bits_per_second": 502265068.6532922, "omitted": false, "sender": false}], "sum": {"start": 34.043813, "end": 35.020854, "seconds": 0.977041006088257, "bytes": 61341696, "bits_per_second": 502265068.6532922, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.020854, "end": 36.044854, "seconds": 1.02400004863739, "bytes": 61472768, "bits_per_second": 480255977.1890651, "omitted": false, "sender": false}], "sum": {"start": 35.020854, "end": 36.044854, "seconds": 1.02400004863739, "bytes": 61472768, "bits_per_second": 480255977.1890651, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.044854, "end": 37.043679, "seconds": 0.9988250136375427, "bytes": 62128128, "bits_per_second": 497609708.62145656, "omitted": false, "sender": false}], "sum": {"start": 36.044854, "end": 37.043679, "seconds": 0.9988250136375427, "bytes": 62128128, "bits_per_second": 497609708.62145656, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.043679, "end": 38.024936, "seconds": 0.9812570214271545, "bytes": 59244544, "bits_per_second": 483009386.5832124, "omitted": false, "sender": false}], "sum": {"start": 37.043679, "end": 38.024936, "seconds": 0.9812570214271545, "bytes": 59244544, "bits_per_second": 483009386.5832124, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.024936, "end": 39.045774, "seconds": 1.0208380222320557, "bytes": 61472768, "bits_per_second": 481743560.96643186, "omitted": false, "sender": false}], "sum": {"start": 38.024936, "end": 39.045774, "seconds": 1.0208380222320557, "bytes": 61472768, "bits_per_second": 481743560.96643186, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.045774, "end": 40.038887, "seconds": 0.9931129813194275, "bytes": 62259200, "bits_per_second": 501527630.1577195, "omitted": false, "sender": false}], "sum": {"start": 39.045774, "end": 40.038887, "seconds": 0.9931129813194275, "bytes": 62259200, "bits_per_second": 501527630.1577195, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.038887, "end": 41.016061, "seconds": 0.9771739840507507, "bytes": 73924608, "bits_per_second": 605211429.748098, "omitted": false, "sender": false}], "sum": {"start": 40.038887, "end": 41.016061, "seconds": 0.9771739840507507, "bytes": 73924608, "bits_per_second": 605211429.748098, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.016061, "end": 42.052156, "seconds": 1.0360950231552124, "bytes": 67371008, "bits_per_second": 520191731.40961975, "omitted": false, "sender": false}], "sum": {"start": 41.016061, "end": 42.052156, "seconds": 1.0360950231552124, "bytes": 67371008, "bits_per_second": 520191731.40961975, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.052156, "end": 43.067513, "seconds": 1.01535701751709, "bytes": 61472768, "bits_per_second": 484344063.729015, "omitted": false, "sender": false}], "sum": {"start": 42.052156, "end": 43.067513, "seconds": 1.01535701751709, "bytes": 61472768, "bits_per_second": 484344063.729015, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.067513, "end": 44.048652, "seconds": 0.9811390042304993, "bytes": 72351744, "bits_per_second": 589940823.373911, "omitted": false, "sender": false}], "sum": {"start": 43.067513, "end": 44.048652, "seconds": 0.9811390042304993, "bytes": 72351744, "bits_per_second": 589940823.373911, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.048652, "end": 45.042602, "seconds": 0.9939500093460083, "bytes": 60686336, "bits_per_second": 488445780.4064407, "omitted": false, "sender": false}], "sum": {"start": 44.048652, "end": 45.042602, "seconds": 0.9939500093460083, "bytes": 60686336, "bits_per_second": 488445780.4064407, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.042602, "end": 46.020518, "seconds": 0.9779160022735596, "bytes": 58851328, "bits_per_second": 481442805.82934636, "omitted": false, "sender": false}], "sum": {"start": 45.042602, "end": 46.020518, "seconds": 0.9779160022735596, "bytes": 58851328, "bits_per_second": 481442805.82934636, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 46.020518, "end": 47.05187, "seconds": 1.0313520431518555, "bytes": 66191360, "bits_per_second": 513433684.953715, "omitted": false, "sender": false}], "sum": {"start": 46.020518, "end": 47.05187, "seconds": 1.0313520431518555, "bytes": 66191360, "bits_per_second": 513433684.953715, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 47.05187, "end": 48.001617, "seconds": 0.9497470259666443, "bytes": 65929216, "bits_per_second": 555341278.8665303, "omitted": false, "sender": false}], "sum": {"start": 47.05187, "end": 48.001617, "seconds": 0.9497470259666443, "bytes": 65929216, "bits_per_second": 555341278.8665303, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 48.001617, "end": 49.011124, "seconds": 1.0095069408416748, "bytes": 63963136, "bits_per_second": 506886151.3456923, "omitted": false, "sender": false}], "sum": {"start": 48.001617, "end": 49.011124, "seconds": 1.0095069408416748, "bytes": 63963136, "bits_per_second": 506886151.3456923, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 49.011124, "end": 50.012027, "seconds": 1.0009030103683472, "bytes": 60555264, "bits_per_second": 484005050.42113733, "omitted": false, "sender": false}], "sum": {"start": 49.011124, "end": 50.012027, "seconds": 1.0009030103683472, "bytes": 60555264, "bits_per_second": 484005050.42113733, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 50.012027, "end": 51.025127, "seconds": 1.013100028038025, "bytes": 62128128, "bits_per_second": 490598174.16306, "omitted": false, "sender": false}], "sum": {"start": 50.012027, "end": 51.025127, "seconds": 1.013100028038025, "bytes": 62128128, "bits_per_second": 490598174.16306, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 51.025127, "end": 52.002584, "seconds": 0.9774569869041443, "bytes": 58851328, "bits_per_second": 481668892.1434562, "omitted": false, "sender": false}], "sum": {"start": 51.025127, "end": 52.002584, "seconds": 0.9774569869041443, "bytes": 58851328, "bits_per_second": 481668892.1434562, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 52.002584, "end": 53.001141, "seconds": 0.9985569715499878, "bytes": 65273856, "bits_per_second": 522945473.1956264, "omitted": false, "sender": false}], "sum": {"start": 52.002584, "end": 53.001141, "seconds": 0.9985569715499878, "bytes": 65273856, "bits_per_second": 522945473.1956264, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 53.001141, "end": 54.012459, "seconds": 1.01131796836853, "bytes": 61603840, "bits_per_second": 487315300.8395966, "omitted": false, "sender": false}], "sum": {"start": 53.001141, "end": 54.012459, "seconds": 1.01131796836853, "bytes": 61603840, "bits_per_second": 487315300.8395966, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 54.012459, "end": 55.214935, "seconds": 1.2024760246276855, "bytes": 71958528, "bits_per_second": 478735718.808398, "omitted": false, "sender": false}], "sum": {"start": 54.012459, "end": 55.214935, "seconds": 1.2024760246276855, "bytes": 71958528, "bits_per_second": 478735718.808398, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 55.214935, "end": 56.02246, "seconds": 0.8075249791145325, "bytes": 55050240, "bits_per_second": 545372504.121061, "omitted": false, "sender": false}], "sum": {"start": 55.214935, "end": 56.02246, "seconds": 0.8075249791145325, "bytes": 55050240, "bits_per_second": 545372504.121061, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 56.02246, "end": 57.023088, "seconds": 1.0006279945373535, "bytes": 76808192, "bits_per_second": 614079897.179073, "omitted": false, "sender": false}], "sum": {"start": 56.02246, "end": 57.023088, "seconds": 1.0006279945373535, "bytes": 76808192, "bits_per_second": 614079897.179073, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 57.023088, "end": 58.005889, "seconds": 0.9828010201454163, "bytes": 60030976, "bits_per_second": 488652126.07221556, "omitted": false, "sender": false}], "sum": {"start": 57.023088, "end": 58.005889, "seconds": 0.9828010201454163, "bytes": 60030976, "bits_per_second": 488652126.07221556, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 58.005889, "end": 59.052727, "seconds": 1.0468380451202393, "bytes": 63832064, "bits_per_second": 487808514.7749347, "omitted": false, "sender": false}], "sum": {"start": 58.005889, "end": 59.052727, "seconds": 1.0468380451202393, "bytes": 63832064, "bits_per_second": 487808514.7749347, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 59.052727, "end": 60.056751, "seconds": 1.0040240287780762, "bytes": 61472768, "bits_per_second": 489811129.9173904, "omitted": false, "sender": false}], "sum": {"start": 59.052727, "end": 60.056751, "seconds": 1.0040240287780762, "bytes": 61472768, "bits_per_second": 489811129.9173904, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 60.056751, "end": 61.009816, "seconds": 0.9530649781227112, "bytes": 57147392, "bits_per_second": 479693563.91683114, "omitted": false, "sender": false}], "sum": {"start": 60.056751, "end": 61.009816, "seconds": 0.9530649781227112, "bytes": 57147392, "bits_per_second": 479693563.91683114, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 61.009816, "end": 62.033889, "seconds": 1.0240730047225952, "bytes": 61865984, "bits_per_second": 483293544.2274137, "omitted": false, "sender": false}], "sum": {"start": 61.009816, "end": 62.033889, "seconds": 1.0240730047225952, "bytes": 61865984, "bits_per_second": 483293544.2274137, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 62.033889, "end": 63.015171, "seconds": 0.9812819957733154, "bytes": 71958528, "bits_per_second": 586649124.797541, "omitted": false, "sender": false}], "sum": {"start": 62.033889, "end": 63.015171, "seconds": 0.9812819957733154, "bytes": 71958528, "bits_per_second": 586649124.797541, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 63.015171, "end": 64.062593, "seconds": 1.0474220514297485, "bytes": 63045632, "bits_per_second": 481529919.397375, "omitted": false, "sender": false}], "sum": {"start": 63.015171, "end": 64.062593, "seconds": 1.0474220514297485, "bytes": 63045632, "bits_per_second": 481529919.397375, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 64.062593, "end": 65.015034, "seconds": 0.9524409770965576, "bytes": 58327040, "bits_per_second": 489916258.561705, "omitted": false, "sender": false}], "sum": {"start": 64.062593, "end": 65.015034, "seconds": 0.9524409770965576, "bytes": 58327040, "bits_per_second": 489916258.561705, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 65.015034, "end": 66.060941, "seconds": 1.0459070205688477, "bytes": 63832064, "bits_per_second": 488242742.38284034, "omitted": false, "sender": false}], "sum": {"start": 65.015034, "end": 66.060941, "seconds": 1.0459070205688477, "bytes": 63832064, "bits_per_second": 488242742.38284034, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 66.060941, "end": 67.001593, "seconds": 0.9406520128250122, "bytes": 63963136, "bits_per_second": 543989786.89603, "omitted": false, "sender": false}], "sum": {"start": 66.060941, "end": 67.001593, "seconds": 0.9406520128250122, "bytes": 63963136, "bits_per_second": 543989786.89603, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 67.001593, "end": 68.052488, "seconds": 1.0508949756622314, "bytes": 65404928, "bits_per_second": 497898872.97755486, "omitted": false, "sender": false}], "sum": {"start": 67.001593, "end": 68.052488, "seconds": 1.0508949756622314, "bytes": 65404928, "bits_per_second": 497898872.97755486, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 68.052488, "end": 69.029594, "seconds": 0.977105975151062, "bytes": 63963136, "bits_per_second": 523694564.36993915, "omitted": false, "sender": false}], "sum": {"start": 68.052488, "end": 69.029594, "seconds": 0.977105975151062, "bytes": 63963136, "bits_per_second": 523694564.36993915, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 69.029594, "end": 70.25164, "seconds": 1.2220460176467896, "bytes": 72876032, "bits_per_second": 477075533.6387898, "omitted": false, "sender": false}], "sum": {"start": 69.029594, "end": 70.25164, "seconds": 1.2220460176467896, "bytes": 72876032, "bits_per_second": 477075533.6387898, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 70.25164, "end": 71.014991, "seconds": 0.763351023197174, "bytes": 45875200, "bits_per_second": 480776980.50743717, "omitted": false, "sender": false}], "sum": {"start": 70.25164, "end": 71.014991, "seconds": 0.763351023197174, "bytes": 45875200, "bits_per_second": 480776980.50743717, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 71.014991, "end": 72.064129, "seconds": 1.0491379499435425, "bytes": 67108864, "bits_per_second": 511725757.3504903, "omitted": false, "sender": false}], "sum": {"start": 71.014991, "end": 72.064129, "seconds": 1.0491379499435425, "bytes": 67108864, "bits_per_second": 511725757.3504903, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 72.064129, "end": 73.031497, "seconds": 0.9673680067062378, "bytes": 61210624, "bits_per_second": 506203418.5597203, "omitted": false, "sender": false}], "sum": {"start": 72.064129, "end": 73.031497, "seconds": 0.9673680067062378, "bytes": 61210624, "bits_per_second": 506203418.5597203, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 73.031497, "end": 74.011745, "seconds": 0.980247974395752, "bytes": 65667072, "bits_per_second": 535922123.5053609, "omitted": false, "sender": false}], "sum": {"start": 73.031497, "end": 74.011745, "seconds": 0.980247974395752, "bytes": 65667072, "bits_per_second": 535922123.5053609, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 74.011745, "end": 75.008207, "seconds": 0.9964619874954224, "bytes": 66977792, "bits_per_second": 537724813.1128148, "omitted": false, "sender": false}], "sum": {"start": 74.011745, "end": 75.008207, "seconds": 0.9964619874954224, "bytes": 66977792, "bits_per_second": 537724813.1128148, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 75.008207, "end": 76.047802, "seconds": 1.0395950078964233, "bytes": 71696384, "bits_per_second": 551725496.6052568, "omitted": false, "sender": false}], "sum": {"start": 75.008207, "end": 76.047802, "seconds": 1.0395950078964233, "bytes": 71696384, "bits_per_second": 551725496.6052568, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 76.047802, "end": 77.001627, "seconds": 0.9538249969482422, "bytes": 57933824, "bits_per_second": 485907366.1131461, "omitted": false, "sender": false}], "sum": {"start": 76.047802, "end": 77.001627, "seconds": 0.9538249969482422, "bytes": 57933824, "bits_per_second": 485907366.1131461, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 77.001627, "end": 78.002482, "seconds": 1.0008549690246582, "bytes": 65404928, "bits_per_second": 522792452.646662, "omitted": false, "sender": false}], "sum": {"start": 77.001627, "end": 78.002482, "seconds": 1.0008549690246582, "bytes": 65404928, "bits_per_second": 522792452.646662, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 78.002482, "end": 78.26399, "seconds": 0.2615079879760742, "bytes": 19136512, "bits_per_second": 585420342.9304295, "omitted": false, "sender": false}], "sum": {"start": 78.002482, "end": 78.26399, "seconds": 0.2615079879760742, "bytes": 19136512, "bits_per_second": 585420342.9304295, "omitted": false, "sender": false}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 78.26399, "seconds": 78.26399, "bytes": 0, "bits_per_second": 0, "sender": false}, "receiver": {"socket": 5, "start": 0, "end": 78.26399, "seconds": 78.26399, "bytes": 4943380480, "bits_per_second": 505303190.39445853, "sender": false}}], "sum_sent": {"start": 0, "end": 78.26399, "seconds": 78.26399, "bytes": 0, "bits_per_second": 0, "sender": false}, "sum_received": {"start": 0, "end": 78.26399, "seconds": 78.26399, "bytes": 4943380480, "bits_per_second": 505303190.39445853, "sender": false}, "cpu_utilization_percent": {"host_total": 93.58113692055625, "host_user": 7.04158549361241, "host_system": 86.53940832318064, "remote_total": 0, "remote_user": 0, "remote_system": 0}, "receiver_tcp_congestion": "cubic"}}}} 2026-07-16 11:10:53.806615 2026-07-16 11:06:54.761821 +811 37 loader /usr/bin/iperf3 --time 50 --port 5201 --client 10.5.0.10 --udp --version4 --json {"tool": "iperf3", "test_type": {"protocol": "UDP"}, "time": {"duration_sec": 50.0}, "metrics": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 36576, "remote_host": "10.5.0.10", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux 99567e0fdf54 6.17.0-35-generic #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 19:30:42 UTC 2 x86_64", "timestamp": {"time": "Thu, 16 Jul 2026 11:11:49 GMT", "timesecs": 1784200309}, "connecting_to": {"host": "10.5.0.10", "port": 5201}, "cookie": "h2mpk6bkvgxd5y5xzdwwpkaahcem73gqbjjn", "target_bitrate": 1048576, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 212992, "rcvbuf_actual": 212992, "test_start": {"protocol": "UDP", "num_streams": 1, "blksize": 1448, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 1048576, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001029, "seconds": 1.0010290145874023, "bytes": 131768, "bits_per_second": 1053060.385501903, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.001029, "seconds": 1.0010290145874023, "bytes": 131768, "bits_per_second": 1053060.385501903, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.001029, "end": 2.000195, "seconds": 0.9991660118103027, "bytes": 131768, "bits_per_second": 1055023.877453645, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 1.001029, "end": 2.000195, "seconds": 0.9991660118103027, "bytes": 131768, "bits_per_second": 1055023.877453645, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.000195, "end": 3.0002, "seconds": 1.0000050067901611, "bytes": 130320, "bits_per_second": 1042554.7801469843, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 2.000195, "end": 3.0002, "seconds": 1.0000050067901611, "bytes": 130320, "bits_per_second": 1042554.7801469843, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.0002, "end": 4.000202, "seconds": 1.0000020265579224, "bytes": 131768, "bits_per_second": 1054141.8637204547, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 3.0002, "end": 4.000202, "seconds": 1.0000020265579224, "bytes": 131768, "bits_per_second": 1054141.8637204547, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.000202, "end": 5.0002, "seconds": 0.9999979734420776, "bytes": 130320, "bits_per_second": 1042562.1128125093, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 4.000202, "end": 5.0002, "seconds": 0.9999979734420776, "bytes": 130320, "bits_per_second": 1042562.1128125093, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.0002, "end": 6.000195, "seconds": 0.999994993209839, "bytes": 131768, "bits_per_second": 1054149.277904233, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 5.0002, "end": 6.000195, "seconds": 0.999994993209839, "bytes": 131768, "bits_per_second": 1054149.277904233, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.000195, "end": 7.001015, "seconds": 1.00082004070282, "bytes": 130320, "bits_per_second": 1041705.7588773587, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 6.000195, "end": 7.001015, "seconds": 1.00082004070282, "bytes": 130320, "bits_per_second": 1041705.7588773587, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.001015, "end": 8.000196, "seconds": 0.9991809725761414, "bytes": 131768, "bits_per_second": 1055008.0805503633, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 7.001015, "end": 8.000196, "seconds": 0.9991809725761414, "bytes": 131768, "bits_per_second": 1055008.0805503633, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.000196, "end": 9.0002, "seconds": 1.0000040531158447, "bytes": 130320, "bits_per_second": 1042555.7744006717, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 8.000196, "end": 9.0002, "seconds": 1.0000040531158447, "bytes": 130320, "bits_per_second": 1042555.7744006717, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.0002, "end": 10.000198, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 9.0002, "end": 10.000198, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.000198, "end": 11.000208, "seconds": 1.0000100135803223, "bytes": 130320, "bits_per_second": 1042549.5603462375, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 10.000198, "end": 11.000208, "seconds": 1.0000100135803223, "bytes": 130320, "bits_per_second": 1042549.5603462375, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.000208, "end": 12.000201, "seconds": 0.9999930262565613, "bytes": 131768, "bits_per_second": 1054151.35138107, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 11.000208, "end": 12.000201, "seconds": 0.9999930262565613, "bytes": 131768, "bits_per_second": 1054151.35138107, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.000201, "end": 13.00103, "seconds": 1.0008289813995361, "bytes": 130320, "bits_per_second": 1041696.4530164866, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 12.000201, "end": 13.00103, "seconds": 1.0008289813995361, "bytes": 130320, "bits_per_second": 1041696.4530164866, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.00103, "end": 14.00103, "seconds": 1, "bytes": 131768, "bits_per_second": 1054144, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 13.00103, "end": 14.00103, "seconds": 1, "bytes": 131768, "bits_per_second": 1054144, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.00103, "end": 15.00103, "seconds": 1, "bytes": 130320, "bits_per_second": 1042560, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 14.00103, "end": 15.00103, "seconds": 1, "bytes": 130320, "bits_per_second": 1042560, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.00103, "end": 16.001029, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 15.00103, "end": 16.001029, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.001029, "end": 17.00103, "seconds": 1.0000009536743164, "bytes": 130320, "bits_per_second": 1042559.0057382529, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 16.001029, "end": 17.00103, "seconds": 1.0000009536743164, "bytes": 130320, "bits_per_second": 1042559.0057382529, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.00103, "end": 18.000196, "seconds": 0.9991660118103027, "bytes": 131768, "bits_per_second": 1055023.877453645, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 17.00103, "end": 18.000196, "seconds": 0.9991660118103027, "bytes": 131768, "bits_per_second": 1055023.877453645, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.000196, "end": 19.00103, "seconds": 1.0008339881896973, "bytes": 130320, "bits_per_second": 1041691.2418070219, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 18.000196, "end": 19.00103, "seconds": 1.0008339881896973, "bytes": 130320, "bits_per_second": 1041691.2418070219, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.00103, "end": 20.001014, "seconds": 0.9999840259552002, "bytes": 131768, "bits_per_second": 1054160.8392124719, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 19.00103, "end": 20.001014, "seconds": 0.9999840259552002, "bytes": 131768, "bits_per_second": 1054160.8392124719, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.001014, "end": 21.001259, "seconds": 1.0002449750900269, "bytes": 130320, "bits_per_second": 1042304.6613217572, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 20.001014, "end": 21.001259, "seconds": 1.0002449750900269, "bytes": 130320, "bits_per_second": 1042304.6613217572, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.001259, "end": 22.001432, "seconds": 1.0001729726791382, "bytes": 131768, "bits_per_second": 1053961.69342218, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 21.001259, "end": 22.001432, "seconds": 1.0001729726791382, "bytes": 131768, "bits_per_second": 1053961.69342218, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.001432, "end": 23.001014, "seconds": 0.9995819926261902, "bytes": 131768, "bits_per_second": 1054584.8242328372, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 22.001432, "end": 23.001014, "seconds": 0.9995819926261902, "bytes": 131768, "bits_per_second": 1054584.8242328372, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.001014, "end": 24.001029, "seconds": 1.0000150203704834, "bytes": 130320, "bits_per_second": 1042544.3405977589, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 23.001014, "end": 24.001029, "seconds": 1.0000150203704834, "bytes": 130320, "bits_per_second": 1042544.3405977589, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.001029, "end": 25.00103, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 24.001029, "end": 25.00103, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.00103, "end": 26.001015, "seconds": 0.9999849796295166, "bytes": 130320, "bits_per_second": 1042575.6598726682, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 25.00103, "end": 26.001015, "seconds": 0.9999849796295166, "bytes": 130320, "bits_per_second": 1042575.6598726682, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.001015, "end": 27.001029, "seconds": 1.0000139474868774, "bytes": 131768, "bits_per_second": 1054129.2975454554, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 26.001015, "end": 27.001029, "seconds": 1.0000139474868774, "bytes": 131768, "bits_per_second": 1054129.2975454554, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.001029, "end": 28.001029, "seconds": 1, "bytes": 130320, "bits_per_second": 1042560, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 27.001029, "end": 28.001029, "seconds": 1, "bytes": 130320, "bits_per_second": 1042560, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.001029, "end": 29.00103, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 28.001029, "end": 29.00103, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.00103, "end": 30.000196, "seconds": 0.9991660118103027, "bytes": 130320, "bits_per_second": 1043430.2084706379, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 29.00103, "end": 30.000196, "seconds": 0.9991660118103027, "bytes": 130320, "bits_per_second": 1043430.2084706379, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.000196, "end": 31.00103, "seconds": 1.0008339881896973, "bytes": 131768, "bits_per_second": 1053265.588938211, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 30.000196, "end": 31.00103, "seconds": 1.0008339881896973, "bytes": 131768, "bits_per_second": 1053265.588938211, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.00103, "end": 32.001029, "seconds": 0.9999989867210388, "bytes": 130320, "bits_per_second": 1042561.0564051842, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 31.00103, "end": 32.001029, "seconds": 0.9999989867210388, "bytes": 130320, "bits_per_second": 1042561.0564051842, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.001029, "end": 33.001029, "seconds": 1, "bytes": 131768, "bits_per_second": 1054144, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 32.001029, "end": 33.001029, "seconds": 1, "bytes": 131768, "bits_per_second": 1054144, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.001029, "end": 34.00022, "seconds": 0.9991909861564636, "bytes": 130320, "bits_per_second": 1043404.1283842659, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 33.001029, "end": 34.00022, "seconds": 0.9991909861564636, "bytes": 130320, "bits_per_second": 1043404.1283842659, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.00022, "end": 35.000197, "seconds": 0.9999769926071167, "bytes": 131768, "bits_per_second": 1054168.2536631771, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 34.00022, "end": 35.000197, "seconds": 0.9999769926071167, "bytes": 131768, "bits_per_second": 1054168.2536631771, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.000197, "end": 36.001015, "seconds": 1.0008180141448975, "bytes": 130320, "bits_per_second": 1041707.8682289377, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 35.000197, "end": 36.001015, "seconds": 1.0008180141448975, "bytes": 130320, "bits_per_second": 1041707.8682289377, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.001015, "end": 37.001029, "seconds": 1.0000139474868774, "bytes": 131768, "bits_per_second": 1054129.2975454554, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 36.001015, "end": 37.001029, "seconds": 1.0000139474868774, "bytes": 131768, "bits_per_second": 1054129.2975454554, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.001029, "end": 38.000216, "seconds": 0.9991869926452637, "bytes": 130320, "bits_per_second": 1043408.2986207716, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 37.001029, "end": 38.000216, "seconds": 0.9991869926452637, "bytes": 130320, "bits_per_second": 1043408.2986207716, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.000216, "end": 39.001031, "seconds": 1.0008150339126587, "bytes": 131768, "bits_per_second": 1053285.5365679841, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 38.000216, "end": 39.001031, "seconds": 1.0008150339126587, "bytes": 131768, "bits_per_second": 1053285.5365679841, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.001031, "end": 40.000197, "seconds": 0.9991660118103027, "bytes": 130320, "bits_per_second": 1043430.2084706379, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 39.001031, "end": 40.000197, "seconds": 0.9991660118103027, "bytes": 130320, "bits_per_second": 1043430.2084706379, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.000197, "end": 41.000212, "seconds": 1.0000150203704834, "bytes": 131768, "bits_per_second": 1054128.1666044006, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 40.000197, "end": 41.000212, "seconds": 1.0000150203704834, "bytes": 131768, "bits_per_second": 1054128.1666044006, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.000212, "end": 42.001017, "seconds": 1.0008050203323364, "bytes": 130320, "bits_per_second": 1041721.3930979264, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 41.000212, "end": 42.001017, "seconds": 1.0008050203323364, "bytes": 130320, "bits_per_second": 1041721.3930979264, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.001017, "end": 43.000198, "seconds": 0.9991809725761414, "bytes": 131768, "bits_per_second": 1055008.0805503633, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 42.001017, "end": 43.000198, "seconds": 0.9991809725761414, "bytes": 131768, "bits_per_second": 1055008.0805503633, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.000198, "end": 44.000202, "seconds": 1.0000040531158447, "bytes": 130320, "bits_per_second": 1042555.7744006717, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 43.000198, "end": 44.000202, "seconds": 1.0000040531158447, "bytes": 130320, "bits_per_second": 1042555.7744006717, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.000202, "end": 45.001029, "seconds": 1.0008269548416138, "bytes": 131768, "bits_per_second": 1053272.9908007164, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 44.000202, "end": 45.001029, "seconds": 1.0008269548416138, "bytes": 131768, "bits_per_second": 1053272.9908007164, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 45.001029, "end": 46.0002, "seconds": 0.999171018600464, "bytes": 130320, "bits_per_second": 1043424.9799001486, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 45.001029, "end": 46.0002, "seconds": 0.999171018600464, "bytes": 130320, "bits_per_second": 1043424.9799001486, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 46.0002, "end": 47.000202, "seconds": 1.0000020265579224, "bytes": 131768, "bits_per_second": 1054141.8637204547, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 46.0002, "end": 47.000202, "seconds": 1.0000020265579224, "bytes": 131768, "bits_per_second": 1054141.8637204547, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 47.000202, "end": 48.000198, "seconds": 0.9999960064888, "bytes": 130320, "bits_per_second": 1042564.1634916635, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 47.000202, "end": 48.000198, "seconds": 0.9999960064888, "bytes": 130320, "bits_per_second": 1042564.1634916635, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 48.000198, "end": 49.001031, "seconds": 1.0008330345153809, "bytes": 131768, "bits_per_second": 1053266.592574488, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 48.000198, "end": 49.001031, "seconds": 1.0008330345153809, "bytes": 131768, "bits_per_second": 1053266.592574488, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 49.001031, "end": 50.000461, "seconds": 0.999430000782013, "bytes": 130320, "bits_per_second": 1043154.5973047033, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 49.001031, "end": 50.000461, "seconds": 0.999430000782013, "bytes": 130320, "bits_per_second": 1043154.5973047033, "packets": 90, "omitted": false, "sender": true}}], "end": {"streams": [{"udp": {"socket": 5, "start": 0, "end": 50.000461, "seconds": 50.000461, "bytes": 6553648, "bits_per_second": 1048574.012147608, "jitter_ms": 6.24872952371597, "lost_packets": 0, "packets": 4526, "lost_percent": 0, "out_of_order": 0, "sender": true}}], "sum": {"start": 0, "end": 78.263107, "seconds": 78.263107, "bytes": 6553648, "bits_per_second": 1048574.012147608, "jitter_ms": 6.24872952371597, "lost_packets": 0, "packets": 4526, "lost_percent": 0, "sender": true}, "sum_sent": {"start": 0, "end": 50.000461, "seconds": 50.000461, "bytes": 6553648, "bits_per_second": 1048574.012147608, "jitter_ms": 0, "lost_packets": 0, "packets": 4526, "lost_percent": 0, "sender": true}, "sum_received": {"start": 0, "end": 78.263107, "seconds": 78.263107, "bytes": 6553648, "bits_per_second": 669909.3098872243, "jitter_ms": 6.24872952371597, "lost_packets": 0, "packets": 4526, "lost_percent": 0, "sender": false}, "cpu_utilization_percent": {"host_total": 0.29840815720819625, "host_user": 0.041398195145076755, "host_system": 0.25701196178271885, "remote_total": 1.745129029024161, "remote_user": 0.42032974888924673, "remote_system": 1.3248095020065151}}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 36576}], "version": "iperf 3.18", "system_info": "Linux qemux86-64 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64", "target_bitrate": 1048576, "timestamp": {"time": "Thu, 16 Jul 2026 11:11:58 GMT", "timesecs": 1784200318}, "accepted_connection": {"host": "10.5.0.11", "port": 43434}, "cookie": "h2mpk6bkvgxd5y5xzdwwpkaahcem73gqbjjn", "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 212992, "rcvbuf_actual": 212992, "test_start": {"protocol": "UDP", "num_streams": 1, "blksize": 1448, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 1048576, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.034709, "seconds": 1.0347089767456055, "bytes": 86880, "bits_per_second": 671725.1088185767, "jitter_ms": 6.1002459595546314, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.034709, "seconds": 1.0347089767456055, "bytes": 86880, "bits_per_second": 671725.1088185767, "jitter_ms": 6.1002459595546314, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.034709, "end": 2.007892, "seconds": 0.97318297624588, "bytes": 82536, "bits_per_second": 678482.8918268855, "jitter_ms": 6.241616378176608, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 1.034709, "end": 2.007892, "seconds": 0.97318297624588, "bytes": 82536, "bits_per_second": 678482.8918268855, "jitter_ms": 6.241616378176608, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.007892, "end": 3.016661, "seconds": 1.0087690353393555, "bytes": 83984, "bits_per_second": 666031.545837426, "jitter_ms": 6.2540872007047374, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 2.007892, "end": 3.016661, "seconds": 1.0087690353393555, "bytes": 83984, "bits_per_second": 666031.545837426, "jitter_ms": 6.2540872007047374, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.016661, "end": 4.013111, "seconds": 0.9964500069618225, "bytes": 82536, "bits_per_second": 662640.368695685, "jitter_ms": 6.243463048433518, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 3.016661, "end": 4.013111, "seconds": 0.9964500069618225, "bytes": 82536, "bits_per_second": 662640.368695685, "jitter_ms": 6.243463048433518, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.013111, "end": 5.051424, "seconds": 1.0383130311965942, "bytes": 88328, "bits_per_second": 680550.064160957, "jitter_ms": 6.245532613101106, "lost_packets": 0, "packets": 61, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 4.013111, "end": 5.051424, "seconds": 1.0383130311965942, "bytes": 88328, "bits_per_second": 680550.064160957, "jitter_ms": 6.245532613101106, "lost_packets": 0, "packets": 61, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.051424, "end": 6.134819, "seconds": 1.083395004272461, "bytes": 89776, "bits_per_second": 662923.4925098282, "jitter_ms": 6.2408663609986, "lost_packets": 0, "packets": 62, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 5.051424, "end": 6.134819, "seconds": 1.083395004272461, "bytes": 89776, "bits_per_second": 662923.4925098282, "jitter_ms": 6.2408663609986, "lost_packets": 0, "packets": 62, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.134819, "end": 7.007514, "seconds": 0.872695028781891, "bytes": 73848, "bits_per_second": 676965.0112761812, "jitter_ms": 6.244965947093184, "lost_packets": 0, "packets": 51, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 6.134819, "end": 7.007514, "seconds": 0.872695028781891, "bytes": 73848, "bits_per_second": 676965.0112761812, "jitter_ms": 6.244965947093184, "lost_packets": 0, "packets": 51, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.007514, "end": 8.106126, "seconds": 1.0986119508743286, "bytes": 91224, "bits_per_second": 664285.5099284112, "jitter_ms": 6.246251534236458, "lost_packets": 0, "packets": 63, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 7.007514, "end": 8.106126, "seconds": 1.0986119508743286, "bytes": 91224, "bits_per_second": 664285.5099284112, "jitter_ms": 6.246251534236458, "lost_packets": 0, "packets": 63, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.106126, "end": 9.006302, "seconds": 0.9001759886741638, "bytes": 75296, "bits_per_second": 669166.926888603, "jitter_ms": 6.247454298709408, "lost_packets": 0, "packets": 52, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 8.106126, "end": 9.006302, "seconds": 0.9001759886741638, "bytes": 75296, "bits_per_second": 669166.926888603, "jitter_ms": 6.247454298709408, "lost_packets": 0, "packets": 52, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.006302, "end": 10.060486, "seconds": 1.0541839599609375, "bytes": 88328, "bits_per_second": 670304.260772649, "jitter_ms": 6.2491172062318, "lost_packets": 0, "packets": 61, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 9.006302, "end": 10.060486, "seconds": 1.0541839599609375, "bytes": 88328, "bits_per_second": 670304.260772649, "jitter_ms": 6.2491172062318, "lost_packets": 0, "packets": 61, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.060486, "end": 11.227815, "seconds": 1.167328953742981, "bytes": 98464, "bits_per_second": 674798.648208152, "jitter_ms": 6.242136202295697, "lost_packets": 0, "packets": 68, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 10.060486, "end": 11.227815, "seconds": 1.167328953742981, "bytes": 98464, "bits_per_second": 674798.648208152, "jitter_ms": 6.242136202295697, "lost_packets": 0, "packets": 68, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.227815, "end": 12.005491, "seconds": 0.777675986289978, "bytes": 65160, "bits_per_second": 670304.8688527028, "jitter_ms": 6.241536176722537, "lost_packets": 0, "packets": 45, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 11.227815, "end": 12.005491, "seconds": 0.777675986289978, "bytes": 65160, "bits_per_second": 670304.8688527028, "jitter_ms": 6.241536176722537, "lost_packets": 0, "packets": 45, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.005491, "end": 13.097593, "seconds": 1.09210205078125, "bytes": 91224, "bits_per_second": 668245.242720617, "jitter_ms": 6.2432653523322665, "lost_packets": 0, "packets": 63, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 12.005491, "end": 13.097593, "seconds": 1.09210205078125, "bytes": 91224, "bits_per_second": 668245.242720617, "jitter_ms": 6.2432653523322665, "lost_packets": 0, "packets": 63, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.097593, "end": 14.086492, "seconds": 0.988898992538452, "bytes": 82536, "bits_per_second": 667700.1442837707, "jitter_ms": 6.242340886925548, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 13.097593, "end": 14.086492, "seconds": 0.988898992538452, "bytes": 82536, "bits_per_second": 667700.1442837707, "jitter_ms": 6.242340886925548, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.086492, "end": 15.016972, "seconds": 0.9304800033569336, "bytes": 78192, "bits_per_second": 672272.3731227176, "jitter_ms": 6.239823181464412, "lost_packets": 0, "packets": 54, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 14.086492, "end": 15.016972, "seconds": 0.9304800033569336, "bytes": 78192, "bits_per_second": 672272.3731227176, "jitter_ms": 6.239823181464412, "lost_packets": 0, "packets": 54, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.016972, "end": 16.024302, "seconds": 1.0073299407958984, "bytes": 83984, "bits_per_second": 666983.0537044787, "jitter_ms": 6.23794722474277, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 15.016972, "end": 16.024302, "seconds": 1.0073299407958984, "bytes": 83984, "bits_per_second": 666983.0537044787, "jitter_ms": 6.23794722474277, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.024302, "end": 17.002097, "seconds": 0.9777950048446655, "bytes": 82536, "bits_per_second": 675282.647925671, "jitter_ms": 6.245558411773997, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 16.024302, "end": 17.002097, "seconds": 0.9777950048446655, "bytes": 82536, "bits_per_second": 675282.647925671, "jitter_ms": 6.245558411773997, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.002097, "end": 18.001594, "seconds": 0.9994969964027405, "bytes": 83984, "bits_per_second": 672210.124110542, "jitter_ms": 6.2442334795530385, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 17.002097, "end": 18.001594, "seconds": 0.9994969964027405, "bytes": 83984, "bits_per_second": 672210.124110542, "jitter_ms": 6.2442334795530385, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.001594, "end": 19.004848, "seconds": 1.0032540559768677, "bytes": 83984, "bits_per_second": 669692.782199419, "jitter_ms": 6.26339542239938, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 18.001594, "end": 19.004848, "seconds": 1.0032540559768677, "bytes": 83984, "bits_per_second": 669692.782199419, "jitter_ms": 6.26339542239938, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.004848, "end": 20.037322, "seconds": 1.0324740409851074, "bytes": 85432, "bits_per_second": 661959.5000644266, "jitter_ms": 6.26812308402459, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 19.004848, "end": 20.037322, "seconds": 1.0324740409851074, "bytes": 85432, "bits_per_second": 661959.5000644266, "jitter_ms": 6.26812308402459, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.037322, "end": 21.15053, "seconds": 1.1132080554962158, "bytes": 94120, "bits_per_second": 676387.487749867, "jitter_ms": 6.23672328878535, "lost_packets": 0, "packets": 65, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 20.037322, "end": 21.15053, "seconds": 1.1132080554962158, "bytes": 94120, "bits_per_second": 676387.487749867, "jitter_ms": 6.23672328878535, "lost_packets": 0, "packets": 65, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.15053, "end": 22.003113, "seconds": 0.8525829911231995, "bytes": 70952, "bits_per_second": 665760.4079718014, "jitter_ms": 6.248514936794068, "lost_packets": 0, "packets": 49, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 21.15053, "end": 22.003113, "seconds": 0.8525829911231995, "bytes": 70952, "bits_per_second": 665760.4079718014, "jitter_ms": 6.248514936794068, "lost_packets": 0, "packets": 49, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.003113, "end": 23.002764, "seconds": 0.99965101480484, "bytes": 83984, "bits_per_second": 672106.5552373477, "jitter_ms": 6.252077491764935, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 22.003113, "end": 23.002764, "seconds": 0.99965101480484, "bytes": 83984, "bits_per_second": 672106.5552373477, "jitter_ms": 6.252077491764935, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.002764, "end": 24.011123, "seconds": 1.0083589553833008, "bytes": 83984, "bits_per_second": 666302.4079005732, "jitter_ms": 6.25402250883014, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 23.002764, "end": 24.011123, "seconds": 1.0083589553833008, "bytes": 83984, "bits_per_second": 666302.4079005732, "jitter_ms": 6.25402250883014, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.011123, "end": 25.009633, "seconds": 0.9985100030899048, "bytes": 83984, "bits_per_second": 672874.581046641, "jitter_ms": 6.235187810713578, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 24.011123, "end": 25.009633, "seconds": 0.9985100030899048, "bytes": 83984, "bits_per_second": 672874.581046641, "jitter_ms": 6.235187810713578, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.009633, "end": 26.007697, "seconds": 0.9980639815330505, "bytes": 83984, "bits_per_second": 673175.2797731346, "jitter_ms": 6.240812898962862, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 25.009633, "end": 26.007697, "seconds": 0.9980639815330505, "bytes": 83984, "bits_per_second": 673175.2797731346, "jitter_ms": 6.240812898962862, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.007697, "end": 27.002259, "seconds": 0.9945619702339172, "bytes": 82536, "bits_per_second": 663898.298710037, "jitter_ms": 6.2362862446544245, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 26.007697, "end": 27.002259, "seconds": 0.9945619702339172, "bytes": 82536, "bits_per_second": 663898.298710037, "jitter_ms": 6.2362862446544245, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.002259, "end": 28.036762, "seconds": 1.0345029830932617, "bytes": 86880, "bits_per_second": 671858.8649418532, "jitter_ms": 6.237260982147626, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 27.002259, "end": 28.036762, "seconds": 1.0345029830932617, "bytes": 86880, "bits_per_second": 671858.8649418532, "jitter_ms": 6.237260982147626, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.036762, "end": 29.010848, "seconds": 0.9740859866142273, "bytes": 81088, "bits_per_second": 665961.7414832084, "jitter_ms": 6.276177517745033, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 28.036762, "end": 29.010848, "seconds": 0.9740859866142273, "bytes": 81088, "bits_per_second": 665961.7414832084, "jitter_ms": 6.276177517745033, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.010848, "end": 30.023086, "seconds": 1.0122380256652832, "bytes": 85432, "bits_per_second": 675192.9710907723, "jitter_ms": 6.2339027014210355, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 29.010848, "end": 30.023086, "seconds": 1.0122380256652832, "bytes": 85432, "bits_per_second": 675192.9710907723, "jitter_ms": 6.2339027014210355, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.023086, "end": 31.009548, "seconds": 0.9864619970321655, "bytes": 82536, "bits_per_second": 669349.657651809, "jitter_ms": 6.25110358549734, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 30.023086, "end": 31.009548, "seconds": 0.9864619970321655, "bytes": 82536, "bits_per_second": 669349.657651809, "jitter_ms": 6.25110358549734, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.009548, "end": 32.173923, "seconds": 1.1643749475479126, "bytes": 97016, "bits_per_second": 666561.919452551, "jitter_ms": 6.270302910780808, "lost_packets": 0, "packets": 67, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 31.009548, "end": 32.173923, "seconds": 1.1643749475479126, "bytes": 97016, "bits_per_second": 666561.919452551, "jitter_ms": 6.270302910780808, "lost_packets": 0, "packets": 67, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.173923, "end": 33.045163, "seconds": 0.8712400197982788, "bytes": 73848, "bits_per_second": 678095.572488493, "jitter_ms": 6.244826976130656, "lost_packets": 0, "packets": 51, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 32.173923, "end": 33.045163, "seconds": 0.8712400197982788, "bytes": 73848, "bits_per_second": 678095.572488493, "jitter_ms": 6.244826976130656, "lost_packets": 0, "packets": 51, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.045163, "end": 34.015379, "seconds": 0.9702159762382507, "bytes": 81088, "bits_per_second": 668618.1385253763, "jitter_ms": 6.25163422897259, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 33.045163, "end": 34.015379, "seconds": 0.9702159762382507, "bytes": 81088, "bits_per_second": 668618.1385253763, "jitter_ms": 6.25163422897259, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.015379, "end": 35.002346, "seconds": 0.9869670271873474, "bytes": 82536, "bits_per_second": 669007.1520237962, "jitter_ms": 6.25825397007698, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 34.015379, "end": 35.002346, "seconds": 0.9869670271873474, "bytes": 82536, "bits_per_second": 669007.1520237962, "jitter_ms": 6.25825397007698, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.002346, "end": 36.010818, "seconds": 1.008471965789795, "bytes": 83984, "bits_per_second": 666227.741366927, "jitter_ms": 6.237835840216468, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 35.002346, "end": 36.010818, "seconds": 1.008471965789795, "bytes": 83984, "bits_per_second": 666227.741366927, "jitter_ms": 6.237835840216468, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.010818, "end": 37.312662, "seconds": 1.3018440008163452, "bytes": 108600, "bits_per_second": 667361.065884394, "jitter_ms": 6.2461447901391445, "lost_packets": 0, "packets": 75, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 36.010818, "end": 37.312662, "seconds": 1.3018440008163452, "bytes": 108600, "bits_per_second": 667361.065884394, "jitter_ms": 6.2461447901391445, "lost_packets": 0, "packets": 75, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.312662, "end": 38.173804, "seconds": 0.8611419796943665, "bytes": 72400, "bits_per_second": 672595.2440566975, "jitter_ms": 6.237274533484794, "lost_packets": 0, "packets": 50, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 37.312662, "end": 38.173804, "seconds": 0.8611419796943665, "bytes": 72400, "bits_per_second": 672595.2440566975, "jitter_ms": 6.237274533484794, "lost_packets": 0, "packets": 50, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.173804, "end": 39.052505, "seconds": 0.8787009716033936, "bytes": 73848, "bits_per_second": 672337.9387210392, "jitter_ms": 6.24292405226561, "lost_packets": 0, "packets": 51, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 38.173804, "end": 39.052505, "seconds": 0.8787009716033936, "bytes": 73848, "bits_per_second": 672337.9387210392, "jitter_ms": 6.24292405226561, "lost_packets": 0, "packets": 51, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.052505, "end": 40.002699, "seconds": 0.950194001197815, "bytes": 79640, "bits_per_second": 670515.7043686303, "jitter_ms": 6.23543789414596, "lost_packets": 0, "packets": 55, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 39.052505, "end": 40.002699, "seconds": 0.950194001197815, "bytes": 79640, "bits_per_second": 670515.7043686303, "jitter_ms": 6.23543789414596, "lost_packets": 0, "packets": 55, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.002699, "end": 41.028315, "seconds": 1.0256160497665405, "bytes": 85432, "bits_per_second": 666385.827479566, "jitter_ms": 6.236247924846415, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 40.002699, "end": 41.028315, "seconds": 1.0256160497665405, "bytes": 85432, "bits_per_second": 666385.827479566, "jitter_ms": 6.236247924846415, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.028315, "end": 42.010646, "seconds": 0.9823309779167175, "bytes": 82536, "bits_per_second": 672164.489203332, "jitter_ms": 6.235712785269305, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 41.028315, "end": 42.010646, "seconds": 0.9823309779167175, "bytes": 82536, "bits_per_second": 672164.489203332, "jitter_ms": 6.235712785269305, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.010646, "end": 43.009072, "seconds": 0.9984260201454163, "bytes": 83984, "bits_per_second": 672931.1801210318, "jitter_ms": 6.24123666244158, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 42.010646, "end": 43.009072, "seconds": 0.9984260201454163, "bytes": 83984, "bits_per_second": 672931.1801210318, "jitter_ms": 6.24123666244158, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.009072, "end": 44.00112, "seconds": 0.9920480251312256, "bytes": 82536, "bits_per_second": 665580.680847239, "jitter_ms": 6.239754351168658, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 43.009072, "end": 44.00112, "seconds": 0.9920480251312256, "bytes": 82536, "bits_per_second": 665580.680847239, "jitter_ms": 6.239754351168658, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.00112, "end": 45.084081, "seconds": 1.0829609632492065, "bytes": 91224, "bits_per_second": 673885.7860678615, "jitter_ms": 6.249481721070142, "lost_packets": 0, "packets": 63, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 44.00112, "end": 45.084081, "seconds": 1.0829609632492065, "bytes": 91224, "bits_per_second": 673885.7860678615, "jitter_ms": 6.249481721070142, "lost_packets": 0, "packets": 63, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.084081, "end": 46.082405, "seconds": 0.9983239769935608, "bytes": 82536, "bits_per_second": 661396.5157768207, "jitter_ms": 6.238593394861653, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 45.084081, "end": 46.082405, "seconds": 0.9983239769935608, "bytes": 82536, "bits_per_second": 661396.5157768207, "jitter_ms": 6.238593394861653, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 46.082405, "end": 47.033882, "seconds": 0.9514769911766052, "bytes": 78192, "bits_per_second": 657436.8122412045, "jitter_ms": 6.238606210585084, "lost_packets": 0, "packets": 55, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 46.082405, "end": 47.033882, "seconds": 0.9514769911766052, "bytes": 78192, "bits_per_second": 657436.8122412045, "jitter_ms": 6.238606210585084, "lost_packets": 0, "packets": 55, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 47.033882, "end": 48.010683, "seconds": 0.9768009781837463, "bytes": 82536, "bits_per_second": 675969.83904309, "jitter_ms": 6.248352661914178, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 47.033882, "end": 48.010683, "seconds": 0.9768009781837463, "bytes": 82536, "bits_per_second": 675969.83904309, "jitter_ms": 6.248352661914178, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 48.010683, "end": 49.048595, "seconds": 1.0379120111465454, "bytes": 86880, "bits_per_second": 669652.140581949, "jitter_ms": 6.246294045047254, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 48.010683, "end": 49.048595, "seconds": 1.0379120111465454, "bytes": 86880, "bits_per_second": 669652.140581949, "jitter_ms": 6.246294045047254, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 49.048595, "end": 50.00718, "seconds": 0.958585023880005, "bytes": 79640, "bits_per_second": 664646.311102555, "jitter_ms": 6.251606355950726, "lost_packets": 0, "packets": 55, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 49.048595, "end": 50.00718, "seconds": 0.958585023880005, "bytes": 79640, "bits_per_second": 664646.311102555, "jitter_ms": 6.251606355950726, "lost_packets": 0, "packets": 55, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 50.00718, "end": 51.011526, "seconds": 1.0043460130691528, "bytes": 85432, "bits_per_second": 680498.5444323575, "jitter_ms": 6.25506571612118, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 50.00718, "end": 51.011526, "seconds": 1.0043460130691528, "bytes": 85432, "bits_per_second": 680498.5444323575, "jitter_ms": 6.25506571612118, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 51.011526, "end": 52.03788, "seconds": 1.02635395526886, "bytes": 85432, "bits_per_second": 665906.723982921, "jitter_ms": 6.244457794775112, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 51.011526, "end": 52.03788, "seconds": 1.02635395526886, "bytes": 85432, "bits_per_second": 665906.723982921, "jitter_ms": 6.244457794775112, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 52.03788, "end": 53.00238, "seconds": 0.9645000100135803, "bytes": 81088, "bits_per_second": 672580.6047330846, "jitter_ms": 6.23551686876794, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 52.03788, "end": 53.00238, "seconds": 0.9645000100135803, "bytes": 81088, "bits_per_second": 672580.6047330846, "jitter_ms": 6.23551686876794, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 53.00238, "end": 54.008465, "seconds": 1.0060850381851196, "bytes": 83984, "bits_per_second": 667808.3606252532, "jitter_ms": 6.24284526565683, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 53.00238, "end": 54.008465, "seconds": 1.0060850381851196, "bytes": 83984, "bits_per_second": 667808.3606252532, "jitter_ms": 6.24284526565683, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 54.008465, "end": 55.546922, "seconds": 1.5384570360183716, "bytes": 128872, "bits_per_second": 670136.3612130723, "jitter_ms": 6.2390728601043, "lost_packets": 0, "packets": 89, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 54.008465, "end": 55.546922, "seconds": 1.5384570360183716, "bytes": 128872, "bits_per_second": 670136.3612130723, "jitter_ms": 6.2390728601043, "lost_packets": 0, "packets": 89, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 55.546922, "end": 56.049036, "seconds": 0.5021139979362488, "bytes": 41992, "bits_per_second": 669043.2877409093, "jitter_ms": 6.24022640889452, "lost_packets": 0, "packets": 29, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 55.546922, "end": 56.049036, "seconds": 0.5021139979362488, "bytes": 41992, "bits_per_second": 669043.2877409093, "jitter_ms": 6.24022640889452, "lost_packets": 0, "packets": 29, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 56.049036, "end": 57.015964, "seconds": 0.966928005218506, "bytes": 81088, "bits_per_second": 670891.7277180386, "jitter_ms": 6.252720362646817, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 56.049036, "end": 57.015964, "seconds": 0.966928005218506, "bytes": 81088, "bits_per_second": 670891.7277180386, "jitter_ms": 6.252720362646817, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 57.015964, "end": 58.019416, "seconds": 1.003451943397522, "bytes": 83984, "bits_per_second": 669560.714312987, "jitter_ms": 6.241539054585304, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 57.015964, "end": 58.019416, "seconds": 1.003451943397522, "bytes": 83984, "bits_per_second": 669560.714312987, "jitter_ms": 6.241539054585304, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 58.019416, "end": 59.006513, "seconds": 0.9870970249176025, "bytes": 82536, "bits_per_second": 668919.0457798383, "jitter_ms": 6.261227282306834, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 58.019416, "end": 59.006513, "seconds": 0.9870970249176025, "bytes": 82536, "bits_per_second": 668919.0457798383, "jitter_ms": 6.261227282306834, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 59.006513, "end": 60.003455, "seconds": 0.9969419836997986, "bytes": 83984, "bits_per_second": 673932.8977866736, "jitter_ms": 6.2383078668720975, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 59.006513, "end": 60.003455, "seconds": 0.9969419836997986, "bytes": 83984, "bits_per_second": 673932.8977866736, "jitter_ms": 6.2383078668720975, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 60.003455, "end": 61.026417, "seconds": 1.022961974143982, "bytes": 85432, "bits_per_second": 668114.7660174938, "jitter_ms": 6.248359484009166, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 60.003455, "end": 61.026417, "seconds": 1.022961974143982, "bytes": 85432, "bits_per_second": 668114.7660174938, "jitter_ms": 6.248359484009166, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 61.026417, "end": 62.192184, "seconds": 1.165766954421997, "bytes": 97016, "bits_per_second": 665765.9981319463, "jitter_ms": 6.2804713440267, "lost_packets": 0, "packets": 67, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 61.026417, "end": 62.192184, "seconds": 1.165766954421997, "bytes": 97016, "bits_per_second": 665765.9981319463, "jitter_ms": 6.2804713440267, "lost_packets": 0, "packets": 67, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 62.192184, "end": 63.011799, "seconds": 0.8196150064468384, "bytes": 69504, "bits_per_second": 678406.3195847125, "jitter_ms": 6.236639517263804, "lost_packets": 0, "packets": 48, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 62.192184, "end": 63.011799, "seconds": 0.8196150064468384, "bytes": 69504, "bits_per_second": 678406.3195847125, "jitter_ms": 6.236639517263804, "lost_packets": 0, "packets": 48, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 63.011799, "end": 64.003627, "seconds": 0.9918280243873596, "bytes": 82536, "bits_per_second": 665728.3155593956, "jitter_ms": 6.23924637952704, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 63.011799, "end": 64.003627, "seconds": 0.9918280243873596, "bytes": 82536, "bits_per_second": 665728.3155593956, "jitter_ms": 6.23924637952704, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 64.003627, "end": 65.034031, "seconds": 1.030403971672058, "bytes": 85432, "bits_per_second": 663289.368820019, "jitter_ms": 6.247127412801508, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 64.003627, "end": 65.034031, "seconds": 1.030403971672058, "bytes": 85432, "bits_per_second": 663289.368820019, "jitter_ms": 6.247127412801508, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 65.034031, "end": 66.003489, "seconds": 0.969457983970642, "bytes": 82536, "bits_per_second": 681089.8573403212, "jitter_ms": 6.239043696790767, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 65.034031, "end": 66.003489, "seconds": 0.969457983970642, "bytes": 82536, "bits_per_second": 681089.8573403212, "jitter_ms": 6.239043696790767, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 66.003489, "end": 67.053825, "seconds": 1.0503360033035278, "bytes": 86880, "bits_per_second": 661731.1011085528, "jitter_ms": 6.25669285503248, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 66.003489, "end": 67.053825, "seconds": 1.0503360033035278, "bytes": 86880, "bits_per_second": 661731.1011085528, "jitter_ms": 6.25669285503248, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 67.053825, "end": 68.032285, "seconds": 0.9784600138664246, "bytes": 82536, "bits_per_second": 674823.6929896042, "jitter_ms": 6.238240454673838, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 67.053825, "end": 68.032285, "seconds": 0.9784600138664246, "bytes": 82536, "bits_per_second": 674823.6929896042, "jitter_ms": 6.238240454673838, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 68.032285, "end": 69.009432, "seconds": 0.9771469831466675, "bytes": 81088, "bits_per_second": 663875.5593462555, "jitter_ms": 6.243050263027096, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 68.032285, "end": 69.009432, "seconds": 0.9771469831466675, "bytes": 81088, "bits_per_second": 663875.5593462555, "jitter_ms": 6.243050263027096, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 69.009432, "end": 70.018146, "seconds": 1.008713960647583, "bytes": 85432, "bits_per_second": 677551.8399301512, "jitter_ms": 6.241198457940182, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 69.009432, "end": 70.018146, "seconds": 1.008713960647583, "bytes": 85432, "bits_per_second": 677551.8399301512, "jitter_ms": 6.241198457940182, "lost_packets": 0, "packets": 59, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 70.018146, "end": 71.01751, "seconds": 0.9993640184402466, "bytes": 83984, "bits_per_second": 672299.5701292324, "jitter_ms": 6.245564203015683, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 70.018146, "end": 71.01751, "seconds": 0.9993640184402466, "bytes": 83984, "bits_per_second": 672299.5701292324, "jitter_ms": 6.245564203015683, "lost_packets": 0, "packets": 58, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 71.01751, "end": 72.05661, "seconds": 1.0391000509262085, "bytes": 86880, "bits_per_second": 668886.5036436786, "jitter_ms": 6.238437522318658, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 71.01751, "end": 72.05661, "seconds": 1.0391000509262085, "bytes": 86880, "bits_per_second": 668886.5036436786, "jitter_ms": 6.238437522318658, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 72.05661, "end": 73.032286, "seconds": 0.9756760001182556, "bytes": 81088, "bits_per_second": 664876.4548081275, "jitter_ms": 6.2386320103585575, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 72.05661, "end": 73.032286, "seconds": 0.9756760001182556, "bytes": 81088, "bits_per_second": 664876.4548081275, "jitter_ms": 6.2386320103585575, "lost_packets": 0, "packets": 56, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 73.032286, "end": 74.015062, "seconds": 0.9827759861946106, "bytes": 82536, "bits_per_second": 671860.128122065, "jitter_ms": 6.234939199017635, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 73.032286, "end": 74.015062, "seconds": 0.9827759861946106, "bytes": 82536, "bits_per_second": 671860.128122065, "jitter_ms": 6.234939199017635, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 74.015062, "end": 75.008093, "seconds": 0.9930310249328613, "bytes": 82536, "bits_per_second": 664921.823610337, "jitter_ms": 6.237852500472054, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 74.015062, "end": 75.008093, "seconds": 0.9930310249328613, "bytes": 82536, "bits_per_second": 664921.823610337, "jitter_ms": 6.237852500472054, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 75.008093, "end": 76.038175, "seconds": 1.0300819873809814, "bytes": 86880, "bits_per_second": 674742.4074147368, "jitter_ms": 6.239928744620982, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 75.008093, "end": 76.038175, "seconds": 1.0300819873809814, "bytes": 86880, "bits_per_second": 674742.4074147368, "jitter_ms": 6.239928744620982, "lost_packets": 0, "packets": 60, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 76.038175, "end": 77.032487, "seconds": 0.9943119883537292, "bytes": 82536, "bits_per_second": 664065.2106520722, "jitter_ms": 6.239853049212296, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 76.038175, "end": 77.032487, "seconds": 0.9943119883537292, "bytes": 82536, "bits_per_second": 664065.2106520722, "jitter_ms": 6.239853049212296, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 77.032487, "end": 78.010022, "seconds": 0.9775350093841553, "bytes": 82536, "bits_per_second": 675462.253179024, "jitter_ms": 6.257180163442042, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 77.032487, "end": 78.010022, "seconds": 0.9775350093841553, "bytes": 82536, "bits_per_second": 675462.253179024, "jitter_ms": 6.257180163442042, "lost_packets": 0, "packets": 57, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 78.010022, "end": 78.263107, "seconds": 0.2530849874019623, "bytes": 20272, "bits_per_second": 640796.6022197276, "jitter_ms": 6.24872952371597, "lost_packets": 0, "packets": 14, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 78.010022, "end": 78.263107, "seconds": 0.2530849874019623, "bytes": 20272, "bits_per_second": 640796.6022197276, "jitter_ms": 6.24872952371597, "lost_packets": 0, "packets": 14, "lost_percent": 0, "omitted": false, "sender": false}}], "end": {"streams": [{"udp": {"socket": 5, "start": 0, "end": 78.263107, "seconds": 78.263107, "bytes": 0, "bits_per_second": 0, "jitter_ms": 6.24872952371597, "lost_packets": 0, "packets": 4526, "lost_percent": 0, "out_of_order": 0, "sender": false}}], "sum": {"start": 0, "end": 78.263107, "seconds": 78.263107, "bytes": 0, "bits_per_second": 0, "jitter_ms": 6.24872952371597, "lost_packets": 0, "packets": 4526, "lost_percent": 0, "sender": false}, "sum_sent": {"start": 0, "end": 78.263107, "seconds": 78.263107, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0, "lost_packets": 0, "packets": 0, "lost_percent": 0, "sender": true}, "sum_received": {"start": 0, "end": 78.263107, "seconds": 78.263107, "bytes": 6553648, "bits_per_second": 669909.3098872243, "jitter_ms": 6.24872952371597, "lost_packets": 0, "packets": 4526, "lost_percent": 0, "sender": false}, "cpu_utilization_percent": {"host_total": 1.745129029024161, "host_user": 0.42032974888924673, "host_system": 1.3248095020065151, "remote_total": 0, "remote_user": 0, "remote_system": 0}}}}} 2026-07-16 11:11:46.96517 2026-07-16 11:06:54.761821 +813 37 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:10:53' --until '2026-07-16 11:12:40' 0 OOM records 2026-07-16 11:10:53.585768 2026-07-16 11:12:40.024229 +814 37 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:10:53' --until '2026-07-16 11:12:40' 0 systemd errors records 2026-07-16 11:10:53.585768 2026-07-16 11:12:40.024229 +815 37 loader {"profiles_count": 12, "required_timeout_sec": 60, "provided_timeout_sec": 50} 2026-07-16 11:06:54.761816 2026-07-16 11:06:54.761821 +816 37 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:12:43.163531 2026-07-16 11:12:43.163533 +817 37 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:12:42' --until '2026-07-16 11:12:42' 0 OOM records 2026-07-16 11:12:42.629759 2026-07-16 11:12:42.632987 +818 37 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:12:42' --until '2026-07-16 11:12:42' 0 systemd errors records 2026-07-16 11:12:42.629759 2026-07-16 11:12:42.632987 +819 37 loader /usr/bin/stress-ng --timeout 45 --cpu-method all --vm-method all --sock 0 --netdev 0 --udp-flood 0 --syscall-method all --verify --metrics --maximize --seed 1592594996 & /usr/bin/iperf3 --time 45 --port 5201 --client 10.5.0.10 --interval 1 --version4 --json {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 265.87}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 948, "real_time_secs": 33.44, "usr_time_secs": 10.74, "sys_time_secs": 63.48, "bogo_ops_s_real_time": 28.35, "bogo_ops_s_usr_sys_time": 12.77, "cpu_used_per_instance": 55.49, "rss_max_kb": 2136, "top10_slowest": null}, "1": {"stressor": "netdev", "bogo_ops": 30744, "real_time_secs": 33.36, "usr_time_secs": 12.54, "sys_time_secs": 30.53, "bogo_ops_s_real_time": 921.51, "bogo_ops_s_usr_sys_time": 713.86, "cpu_used_per_instance": 32.27, "rss_max_kb": 2000, "top10_slowest": null}, "2": {"stressor": "udp-flood", "bogo_ops": 159268, "real_time_secs": 33.36, "usr_time_secs": 4.73, "sys_time_secs": 43.69, "bogo_ops_s_real_time": 4774.04, "bogo_ops_s_usr_sys_time": 3289.3, "cpu_used_per_instance": 36.28, "rss_max_kb": 2132, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 12, "failed": -1, "metrics_untrustworthy": -1}}, "iperf3": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 57540, "remote_host": "10.5.0.10", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux 99567e0fdf54 6.17.0-35-generic #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 19:30:42 UTC 2 x86_64", "timestamp": {"time": "Thu, 16 Jul 2026 11:12:48 GMT", "timesecs": 1784200368}, "connecting_to": {"host": "10.5.0.10", "port": 5201}, "cookie": "4ttjfizk35wldipidw55vun7fyiwbjcylt2g", "tcp_mss_default": 1448, "target_bitrate": 0, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 45, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.000586, "seconds": 1.0005860328674316, "bytes": 74973184, "bits_per_second": 599434183.8663923, "retransmits": 1, "snd_cwnd": 230232, "snd_wnd": 0, "rtt": 2011, "rttvar": 2764, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.000586, "seconds": 1.0005860328674316, "bytes": 74973184, "bits_per_second": 599434183.8663923, "retransmits": 1, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.000586, "end": 2.001017, "seconds": 1.000430941581726, "bytes": 20185088, "bits_per_second": 161411145.22576818, "retransmits": 20, "snd_cwnd": 230232, "snd_wnd": 0, "rtt": 2079, "rttvar": 2899, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 1.000586, "end": 2.001017, "seconds": 1.000430941581726, "bytes": 20185088, "bits_per_second": 161411145.22576818, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.001017, "end": 3.000582, "seconds": 0.9995650053024292, "bytes": 20054016, "bits_per_second": 160501945.49524024, "retransmits": 18, "snd_cwnd": 230232, "snd_wnd": 0, "rtt": 3128, "rttvar": 3949, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 2.001017, "end": 3.000582, "seconds": 0.9995650053024292, "bytes": 20054016, "bits_per_second": 160501945.49524024, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.000582, "end": 4.001022, "seconds": 1.000440001487732, "bytes": 22937600, "bits_per_second": 183420094.8853705, "retransmits": 18, "snd_cwnd": 160728, "snd_wnd": 25600, "rtt": 1980, "rttvar": 2551, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 3.000582, "end": 4.001022, "seconds": 1.000440001487732, "bytes": 22937600, "bits_per_second": 183420094.8853705, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.001022, "end": 5.000588, "seconds": 0.9995660185813904, "bytes": 23330816, "bits_per_second": 186727564.2932455, "retransmits": 21, "snd_cwnd": 160728, "snd_wnd": 110592, "rtt": 2527, "rttvar": 3535, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 4.001022, "end": 5.000588, "seconds": 0.9995660185813904, "bytes": 23330816, "bits_per_second": 186727564.2932455, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.000588, "end": 6.001016, "seconds": 1.0004279613494873, "bytes": 20054016, "bits_per_second": 160363498.62072176, "retransmits": 18, "snd_cwnd": 139008, "snd_wnd": 0, "rtt": 2399, "rttvar": 3139, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 5.000588, "end": 6.001016, "seconds": 1.0004279613494873, "bytes": 20054016, "bits_per_second": 160363498.62072176, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.001016, "end": 7.000597, "seconds": 0.999580979347229, "bytes": 19529728, "bits_per_second": 156303318.3184721, "retransmits": 13, "snd_cwnd": 144800, "snd_wnd": 66560, "rtt": 2332, "rttvar": 2744, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 6.001016, "end": 7.000597, "seconds": 0.999580979347229, "bytes": 19529728, "bits_per_second": 156303318.3184721, "retransmits": 13, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.000597, "end": 8.000584, "seconds": 0.999987006187439, "bytes": 21364736, "bits_per_second": 170920108.903858, "retransmits": 8, "snd_cwnd": 188240, "snd_wnd": 184320, "rtt": 2468, "rttvar": 2622, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 7.000597, "end": 8.000584, "seconds": 0.999987006187439, "bytes": 21364736, "bits_per_second": 170920108.903858, "retransmits": 8, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.000584, "end": 9.001017, "seconds": 1.0004329681396484, "bytes": 20578304, "bits_per_second": 164555184.847747, "retransmits": 6, "snd_cwnd": 194032, "snd_wnd": 191488, "rtt": 2694, "rttvar": 3082, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 8.000584, "end": 9.001017, "seconds": 1.0004329681396484, "bytes": 20578304, "bits_per_second": 164555184.847747, "retransmits": 6, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.001017, "end": 10.000589, "seconds": 0.999571979045868, "bytes": 21233664, "bits_per_second": 169942050.75871292, "retransmits": 10, "snd_cwnd": 194032, "snd_wnd": 191488, "rtt": 2266, "rttvar": 3246, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 9.001017, "end": 10.000589, "seconds": 0.999571979045868, "bytes": 21233664, "bits_per_second": 169942050.75871292, "retransmits": 10, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.000589, "end": 11.001018, "seconds": 1.0004290342330933, "bytes": 20709376, "bits_per_second": 165603958.2327824, "retransmits": 7, "snd_cwnd": 194032, "snd_wnd": 0, "rtt": 2331, "rttvar": 3408, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 10.000589, "end": 11.001018, "seconds": 1.0004290342330933, "bytes": 20709376, "bits_per_second": 165603958.2327824, "retransmits": 7, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.001018, "end": 12.00103, "seconds": 1.0000120401382446, "bytes": 22544384, "bits_per_second": 180352900.52614483, "retransmits": 4, "snd_cwnd": 194032, "snd_wnd": 0, "rtt": 1956, "rttvar": 2066, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 11.001018, "end": 12.00103, "seconds": 1.0000120401382446, "bytes": 22544384, "bits_per_second": 180352900.52614483, "retransmits": 4, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.00103, "end": 13.00102, "seconds": 0.9999899864196777, "bytes": 25821184, "bits_per_second": 206571540.5207133, "retransmits": 6, "snd_cwnd": 194032, "snd_wnd": 1024, "rtt": 3126, "rttvar": 3354, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 12.00103, "end": 13.00102, "seconds": 0.9999899864196777, "bytes": 25821184, "bits_per_second": 206571540.5207133, "retransmits": 6, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.00102, "end": 14.000585, "seconds": 0.9995650053024292, "bytes": 26345472, "bits_per_second": 210855497.02315873, "retransmits": 6, "snd_cwnd": 194032, "snd_wnd": 0, "rtt": 2373, "rttvar": 2207, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 13.00102, "end": 14.000585, "seconds": 0.9995650053024292, "bytes": 26345472, "bits_per_second": 210855497.02315873, "retransmits": 6, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.000585, "end": 15.000587, "seconds": 1.0000020265579224, "bytes": 23592960, "bits_per_second": 188743297.50077516, "retransmits": 5, "snd_cwnd": 195480, "snd_wnd": 2048, "rtt": 1658, "rttvar": 1880, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 14.000585, "end": 15.000587, "seconds": 1.0000020265579224, "bytes": 23592960, "bits_per_second": 188743297.50077516, "retransmits": 5, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.000587, "end": 16.000591, "seconds": 1.0000040531158447, "bytes": 22413312, "bits_per_second": 179305769.2529456, "retransmits": 1, "snd_cwnd": 188240, "snd_wnd": 193536, "rtt": 3800, "rttvar": 2178, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 15.000587, "end": 16.000591, "seconds": 1.0000040531158447, "bytes": 22413312, "bits_per_second": 179305769.2529456, "retransmits": 1, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.000591, "end": 17.000584, "seconds": 0.9999930262565613, "bytes": 22675456, "bits_per_second": 181404913.0713223, "retransmits": 8, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 2597, "rttvar": 3395, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 16.000591, "end": 17.000584, "seconds": 0.9999930262565613, "bytes": 22675456, "bits_per_second": 181404913.0713223, "retransmits": 8, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.000584, "end": 18.000584, "seconds": 1, "bytes": 21364736, "bits_per_second": 170917888, "retransmits": 7, "snd_cwnd": 196928, "snd_wnd": 148480, "rtt": 2636, "rttvar": 3194, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 17.000584, "end": 18.000584, "seconds": 1, "bytes": 21364736, "bits_per_second": 170917888, "retransmits": 7, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.000584, "end": 19.000588, "seconds": 1.0000040531158447, "bytes": 21889024, "bits_per_second": 175111482.2528767, "retransmits": 7, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 2861, "rttvar": 3056, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 18.000584, "end": 19.000588, "seconds": 1.0000040531158447, "bytes": 21889024, "bits_per_second": 175111482.2528767, "retransmits": 7, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.000588, "end": 20.000589, "seconds": 1.0000009536743164, "bytes": 22413312, "bits_per_second": 179306325.00016308, "retransmits": 6, "snd_cwnd": 196928, "snd_wnd": 180224, "rtt": 2511, "rttvar": 2630, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 19.000588, "end": 20.000589, "seconds": 1.0000009536743164, "bytes": 22413312, "bits_per_second": 179306325.00016308, "retransmits": 6, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.000589, "end": 21.000587, "seconds": 0.9999979734420776, "bytes": 21889024, "bits_per_second": 175112546.8757192, "retransmits": 8, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 3007, "rttvar": 2466, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 20.000589, "end": 21.000587, "seconds": 0.9999979734420776, "bytes": 21889024, "bits_per_second": 175112546.8757192, "retransmits": 8, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.000587, "end": 22.000587, "seconds": 1, "bytes": 22937600, "bits_per_second": 183500800, "retransmits": 4, "snd_cwnd": 196928, "snd_wnd": 135168, "rtt": 2123, "rttvar": 2494, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 21.000587, "end": 22.000587, "seconds": 1, "bytes": 22937600, "bits_per_second": 183500800, "retransmits": 4, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.000587, "end": 23.000587, "seconds": 1, "bytes": 26083328, "bits_per_second": 208666624, "retransmits": 8, "snd_cwnd": 196928, "snd_wnd": 0, "rtt": 3093, "rttvar": 3630, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 22.000587, "end": 23.000587, "seconds": 1, "bytes": 26083328, "bits_per_second": 208666624, "retransmits": 8, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.000587, "end": 24.000588, "seconds": 1.0000009536743164, "bytes": 19922944, "bits_per_second": 159383400.000145, "retransmits": 7, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 4005, "rttvar": 3040, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 23.000587, "end": 24.000588, "seconds": 1.0000009536743164, "bytes": 19922944, "bits_per_second": 159383400.000145, "retransmits": 7, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.000588, "end": 25.000584, "seconds": 0.9999960064888, "bytes": 25952256, "bits_per_second": 207618877.12831113, "retransmits": 3, "snd_cwnd": 196928, "snd_wnd": 0, "rtt": 1978, "rttvar": 2226, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 24.000588, "end": 25.000584, "seconds": 0.9999960064888, "bytes": 25952256, "bits_per_second": 207618877.12831113, "retransmits": 3, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.000584, "end": 26.000587, "seconds": 1.0000029802322388, "bytes": 21102592, "bits_per_second": 168820232.8764994, "retransmits": 9, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 3439, "rttvar": 2644, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 25.000584, "end": 26.000587, "seconds": 1.0000029802322388, "bytes": 21102592, "bits_per_second": 168820232.8764994, "retransmits": 9, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.000587, "end": 27.000588, "seconds": 1.0000009536743164, "bytes": 21889024, "bits_per_second": 175112025.00015926, "retransmits": 8, "snd_cwnd": 196928, "snd_wnd": 72704, "rtt": 3001, "rttvar": 2847, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 26.000587, "end": 27.000588, "seconds": 1.0000009536743164, "bytes": 21889024, "bits_per_second": 175112025.00015926, "retransmits": 8, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.000588, "end": 28.000588, "seconds": 1, "bytes": 20316160, "bits_per_second": 162529280, "retransmits": 8, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 4916, "rttvar": 4711, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 27.000588, "end": 28.000588, "seconds": 1, "bytes": 20316160, "bits_per_second": 162529280, "retransmits": 8, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.000588, "end": 29.000599, "seconds": 1.0000109672546387, "bytes": 21757952, "bits_per_second": 174061707.02093625, "retransmits": 4, "snd_cwnd": 196928, "snd_wnd": 1024, "rtt": 3013, "rttvar": 3305, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 28.000588, "end": 29.000599, "seconds": 1.0000109672546387, "bytes": 21757952, "bits_per_second": 174061707.02093625, "retransmits": 4, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.000599, "end": 30.00059, "seconds": 0.999990999698639, "bytes": 56492032, "bits_per_second": 451940323.5991096, "retransmits": 5, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 730, "rttvar": 635, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 29.000599, "end": 30.00059, "seconds": 0.999990999698639, "bytes": 56492032, "bits_per_second": 451940323.5991096, "retransmits": 5, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.00059, "end": 31.00059, "seconds": 1, "bytes": 96337920, "bits_per_second": 770703360, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 0, "rtt": 682, "rttvar": 671, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 30.00059, "end": 31.00059, "seconds": 1, "bytes": 96337920, "bits_per_second": 770703360, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.00059, "end": 32.000817, "seconds": 1.0002269744873047, "bytes": 98172928, "bits_per_second": 785205202.4517446, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 0, "rtt": 547, "rttvar": 550, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 31.00059, "end": 32.000817, "seconds": 1.0002269744873047, "bytes": 98172928, "bits_per_second": 785205202.4517446, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.000817, "end": 33.000584, "seconds": 0.999767005443573, "bytes": 97779712, "bits_per_second": 782419995.5998144, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 0, "rtt": 845, "rttvar": 658, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 32.000817, "end": 33.000584, "seconds": 0.999767005443573, "bytes": 97779712, "bits_per_second": 782419995.5998144, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.000584, "end": 34.000588, "seconds": 1.0000040531158447, "bytes": 96468992, "bits_per_second": 771748808.012678, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 640, "rttvar": 652, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 33.000584, "end": 34.000588, "seconds": 1.0000040531158447, "bytes": 96468992, "bits_per_second": 771748808.012678, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.000588, "end": 35.000589, "seconds": 1.0000009536743164, "bytes": 97910784, "bits_per_second": 783285525.0007124, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 1024, "rtt": 521, "rttvar": 594, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 34.000588, "end": 35.000589, "seconds": 1.0000009536743164, "bytes": 97910784, "bits_per_second": 783285525.0007124, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.000589, "end": 36.000585, "seconds": 0.9999960064888, "bytes": 96993280, "bits_per_second": 775949338.762375, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 705, "rttvar": 560, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 35.000589, "end": 36.000585, "seconds": 0.9999960064888, "bytes": 96993280, "bits_per_second": 775949338.762375, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.000585, "end": 37.000587, "seconds": 1.0000020265579224, "bytes": 97517568, "bits_per_second": 780138963.003204, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 0, "rtt": 798, "rttvar": 535, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 36.000585, "end": 37.000587, "seconds": 1.0000020265579224, "bytes": 97517568, "bits_per_second": 780138963.003204, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.000587, "end": 38.000589, "seconds": 1.0000020265579224, "bytes": 97648640, "bits_per_second": 781187536.8782083, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 2048, "rtt": 826, "rttvar": 682, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 37.000587, "end": 38.000589, "seconds": 1.0000020265579224, "bytes": 97648640, "bits_per_second": 781187536.8782083, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.000589, "end": 39.000587, "seconds": 0.9999979734420776, "bytes": 95682560, "bits_per_second": 765462031.2531437, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 729, "rttvar": 590, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 38.000589, "end": 39.000587, "seconds": 0.9999979734420776, "bytes": 95682560, "bits_per_second": 765462031.2531437, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.000587, "end": 40.000588, "seconds": 1.0000009536743164, "bytes": 96468992, "bits_per_second": 771751200.000702, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 132096, "rtt": 497, "rttvar": 619, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 39.000587, "end": 40.000588, "seconds": 1.0000009536743164, "bytes": 96468992, "bits_per_second": 771751200.000702, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.000588, "end": 41.00059, "seconds": 1.0000020265579224, "bytes": 94502912, "bits_per_second": 756021763.878105, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 632, "rttvar": 657, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 40.000588, "end": 41.00059, "seconds": 1.0000020265579224, "bytes": 94502912, "bits_per_second": 756021763.878105, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.00059, "end": 42.000584, "seconds": 0.9999939799308777, "bytes": 95158272, "bits_per_second": 761270758.9025894, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 0, "rtt": 616, "rttvar": 656, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 41.00059, "end": 42.000584, "seconds": 0.9999939799308777, "bytes": 95158272, "bits_per_second": 761270758.9025894, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.000584, "end": 43.000656, "seconds": 1.0000720024108887, "bytes": 94896128, "bits_per_second": 759114365.9355124, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 0, "rtt": 536, "rttvar": 674, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 42.000584, "end": 43.000656, "seconds": 1.0000720024108887, "bytes": 94896128, "bits_per_second": 759114365.9355124, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.000656, "end": 44.000627, "seconds": 0.9999709725379944, "bytes": 95027200, "bits_per_second": 760239667.828073, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 627, "rttvar": 649, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 43.000656, "end": 44.000627, "seconds": 0.9999709725379944, "bytes": 95027200, "bits_per_second": 760239667.828073, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.000627, "end": 45.001016, "seconds": 1.0003889799118042, "bytes": 95813632, "bits_per_second": 766211015.3068426, "retransmits": 0, "snd_cwnd": 196928, "snd_wnd": 193536, "rtt": 543, "rttvar": 702, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 44.000627, "end": 45.001016, "seconds": 1.0003889799118042, "bytes": 95813632, "bits_per_second": 766211015.3068426, "retransmits": 0, "omitted": false, "sender": true}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 45.001016, "seconds": 45.001016, "bytes": 2198732800, "bits_per_second": 390877005.97693175, "retransmits": 254, "max_snd_cwnd": 230232, "max_snd_wnd": 193536, "max_rtt": 4916, "min_rtt": 497, "mean_rtt": 1972, "sender": true}, "receiver": {"socket": 5, "start": 0, "end": 70.438345, "seconds": 45.001016, "bytes": 2197553152, "bits_per_second": 249586006.258381, "sender": true}}], "sum_sent": {"start": 0, "end": 45.001016, "seconds": 45.001016, "bytes": 2198732800, "bits_per_second": 390877005.97693175, "retransmits": 254, "sender": true}, "sum_received": {"start": 0, "end": 70.438345, "seconds": 70.438345, "bytes": 2197553152, "bits_per_second": 249586006.258381, "sender": true}, "cpu_utilization_percent": {"host_total": 0.9310632539727866, "host_user": 0.0492586686982341, "host_system": 0.88180236391407, "remote_total": 52.60767220469257, "remote_user": 3.2105642608533524, "remote_system": 49.3970994257578}, "sender_tcp_congestion": "cubic", "receiver_tcp_congestion": "cubic"}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 57540}], "version": "iperf 3.18", "system_info": "Linux qemux86-64 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64", "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "timestamp": {"time": "Thu, 16 Jul 2026 11:12:54 GMT", "timesecs": 1784200374}, "accepted_connection": {"host": "10.5.0.11", "port": 57528}, "cookie": "4ttjfizk35wldipidw55vun7fyiwbjcylt2g", "tcp_mss_default": 0, "target_bitrate": 0, "fq_rate": 0, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 45, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.002235, "seconds": 1.0022350549697876, "bytes": 58327040, "bits_per_second": 465575732.6449394, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.002235, "seconds": 1.0022350549697876, "bytes": 58327040, "bits_per_second": 465575732.6449394, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.002235, "end": 2.003973, "seconds": 1.0017379522323608, "bytes": 20971520, "bits_per_second": 167481085.87292892, "omitted": false, "sender": false}], "sum": {"start": 1.002235, "end": 2.003973, "seconds": 1.0017379522323608, "bytes": 20971520, "bits_per_second": 167481085.87292892, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.003973, "end": 3.005831, "seconds": 1.0018579959869385, "bytes": 12845056, "bits_per_second": 102569873.5864955, "omitted": false, "sender": false}], "sum": {"start": 2.003973, "end": 3.005831, "seconds": 1.0018579959869385, "bytes": 12845056, "bits_per_second": 102569873.5864955, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.005831, "end": 4.001894, "seconds": 0.996062994003296, "bytes": 12713984, "bits_per_second": 102113895.01702885, "omitted": false, "sender": false}], "sum": {"start": 3.005831, "end": 4.001894, "seconds": 0.996062994003296, "bytes": 12713984, "bits_per_second": 102113895.01702885, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.001894, "end": 5.002067, "seconds": 1.0001729726791382, "bytes": 12845056, "bits_per_second": 102742676.32401441, "omitted": false, "sender": false}], "sum": {"start": 4.001894, "end": 5.002067, "seconds": 1.0001729726791382, "bytes": 12845056, "bits_per_second": 102742676.32401441, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.002067, "end": 6.005366, "seconds": 1.0032989978790283, "bytes": 14548992, "bits_per_second": 116009221.82325734, "omitted": false, "sender": false}], "sum": {"start": 5.002067, "end": 6.005366, "seconds": 1.0032989978790283, "bytes": 14548992, "bits_per_second": 116009221.82325734, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.005366, "end": 7.001797, "seconds": 0.996430993080139, "bytes": 16121856, "bits_per_second": 129436808.86652935, "omitted": false, "sender": false}], "sum": {"start": 6.005366, "end": 7.001797, "seconds": 0.996430993080139, "bytes": 16121856, "bits_per_second": 129436808.86652935, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.001797, "end": 8.002327, "seconds": 1.0005300045013428, "bytes": 13500416, "bits_per_second": 107946116.07257907, "omitted": false, "sender": false}], "sum": {"start": 7.001797, "end": 8.002327, "seconds": 1.0005300045013428, "bytes": 13500416, "bits_per_second": 107946116.07257907, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.002327, "end": 9.001847, "seconds": 0.9995200037956238, "bytes": 12582912, "bits_per_second": 100711637.20359424, "omitted": false, "sender": false}], "sum": {"start": 8.002327, "end": 9.001847, "seconds": 0.9995200037956238, "bytes": 12582912, "bits_per_second": 100711637.20359424, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.001847, "end": 10.003786, "seconds": 1.001939058303833, "bytes": 12320768, "bits_per_second": 98375388.38625683, "omitted": false, "sender": false}], "sum": {"start": 9.001847, "end": 10.003786, "seconds": 1.001939058303833, "bytes": 12320768, "bits_per_second": 98375388.38625683, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.003786, "end": 11.001897, "seconds": 0.9981110095977783, "bytes": 12976128, "bits_per_second": 104005489.37120056, "omitted": false, "sender": false}], "sum": {"start": 10.003786, "end": 11.001897, "seconds": 0.9981110095977783, "bytes": 12976128, "bits_per_second": 104005489.37120056, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.001897, "end": 12.004802, "seconds": 1.002905011177063, "bytes": 13893632, "bits_per_second": 110827102.0298817, "omitted": false, "sender": false}], "sum": {"start": 11.001897, "end": 12.004802, "seconds": 1.002905011177063, "bytes": 13893632, "bits_per_second": 110827102.0298817, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.004802, "end": 13.001861, "seconds": 0.9970589876174927, "bytes": 12976128, "bits_per_second": 104115228.17527105, "omitted": false, "sender": false}], "sum": {"start": 12.004802, "end": 13.001861, "seconds": 0.9970589876174927, "bytes": 12976128, "bits_per_second": 104115228.17527105, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.001861, "end": 14.002261, "seconds": 1.0003999471664429, "bytes": 12451840, "bits_per_second": 99574895.3027748, "omitted": false, "sender": false}], "sum": {"start": 13.001861, "end": 14.002261, "seconds": 1.0003999471664429, "bytes": 12451840, "bits_per_second": 99574895.3027748, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.002261, "end": 15.002787, "seconds": 1.000525951385498, "bytes": 12845056, "bits_per_second": 102706429.41115165, "omitted": false, "sender": false}], "sum": {"start": 14.002261, "end": 15.002787, "seconds": 1.000525951385498, "bytes": 12845056, "bits_per_second": 102706429.41115165, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.002787, "end": 16.005226, "seconds": 1.002439022064209, "bytes": 14024704, "bits_per_second": 111924645.32053445, "omitted": false, "sender": false}], "sum": {"start": 15.002787, "end": 16.005226, "seconds": 1.002439022064209, "bytes": 14024704, "bits_per_second": 111924645.32053445, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.005226, "end": 17.001905, "seconds": 0.9966790080070496, "bytes": 13238272, "bits_per_second": 106259061.49239467, "omitted": false, "sender": false}], "sum": {"start": 16.005226, "end": 17.001905, "seconds": 0.9966790080070496, "bytes": 13238272, "bits_per_second": 106259061.49239467, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.001905, "end": 18.005815, "seconds": 1.003909945487976, "bytes": 14417920, "bits_per_second": 114894130.21397494, "omitted": false, "sender": false}], "sum": {"start": 17.001905, "end": 18.005815, "seconds": 1.003909945487976, "bytes": 14417920, "bits_per_second": 114894130.21397494, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.005815, "end": 19.001906, "seconds": 0.9960910081863403, "bytes": 14811136, "bits_per_second": 118954078.51913272, "omitted": false, "sender": false}], "sum": {"start": 18.005815, "end": 19.001906, "seconds": 0.9960910081863403, "bytes": 14811136, "bits_per_second": 118954078.51913272, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.001906, "end": 20.004075, "seconds": 1.0021690130233765, "bytes": 16908288, "bits_per_second": 134973544.6238995, "omitted": false, "sender": false}], "sum": {"start": 19.001906, "end": 20.004075, "seconds": 1.0021690130233765, "bytes": 16908288, "bits_per_second": 134973544.6238995, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.004075, "end": 21.004033, "seconds": 0.9999579787254333, "bytes": 17825792, "bits_per_second": 142612328.75182307, "omitted": false, "sender": false}], "sum": {"start": 20.004075, "end": 21.004033, "seconds": 0.9999579787254333, "bytes": 17825792, "bits_per_second": 142612328.75182307, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.004033, "end": 22.005132, "seconds": 1.0010989904403687, "bytes": 15204352, "bits_per_second": 121501287.24682325, "omitted": false, "sender": false}], "sum": {"start": 21.004033, "end": 22.005132, "seconds": 1.0010989904403687, "bytes": 15204352, "bits_per_second": 121501287.24682325, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.005132, "end": 23.001811, "seconds": 0.9966790080070496, "bytes": 13631488, "bits_per_second": 109415271.23969352, "omitted": false, "sender": false}], "sum": {"start": 22.005132, "end": 23.001811, "seconds": 0.9966790080070496, "bytes": 13631488, "bits_per_second": 109415271.23969352, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.001811, "end": 24.007968, "seconds": 1.0061570405960083, "bytes": 17301504, "bits_per_second": 137565038.473527, "omitted": false, "sender": false}], "sum": {"start": 23.001811, "end": 24.007968, "seconds": 1.0061570405960083, "bytes": 17301504, "bits_per_second": 137565038.473527, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.007968, "end": 25.003802, "seconds": 0.995833992958069, "bytes": 12845056, "bits_per_second": 103190339.68177354, "omitted": false, "sender": false}], "sum": {"start": 24.007968, "end": 25.003802, "seconds": 0.995833992958069, "bytes": 12845056, "bits_per_second": 103190339.68177354, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.003802, "end": 26.002208, "seconds": 0.9984059929847717, "bytes": 14417920, "bits_per_second": 115527511.66404435, "omitted": false, "sender": false}], "sum": {"start": 25.003802, "end": 26.002208, "seconds": 0.9984059929847717, "bytes": 14417920, "bits_per_second": 115527511.66404435, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.002208, "end": 27.00578, "seconds": 1.0035719871520996, "bytes": 14680064, "bits_per_second": 117022509.10098483, "omitted": false, "sender": false}], "sum": {"start": 26.002208, "end": 27.00578, "seconds": 1.0035719871520996, "bytes": 14680064, "bits_per_second": 117022509.10098483, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.00578, "end": 28.002787, "seconds": 0.9970070123672485, "bytes": 13369344, "bits_per_second": 107275827.22417514, "omitted": false, "sender": false}], "sum": {"start": 27.00578, "end": 28.002787, "seconds": 0.9970070123672485, "bytes": 13369344, "bits_per_second": 107275827.22417514, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.002787, "end": 29.007959, "seconds": 1.00517201423645, "bytes": 13893632, "bits_per_second": 110577149.40903041, "omitted": false, "sender": false}], "sum": {"start": 28.002787, "end": 29.007959, "seconds": 1.00517201423645, "bytes": 13893632, "bits_per_second": 110577149.40903041, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.007959, "end": 30.001817, "seconds": 0.993857979774475, "bytes": 14024704, "bits_per_second": 112891010.87205613, "omitted": false, "sender": false}], "sum": {"start": 29.007959, "end": 30.001817, "seconds": 0.993857979774475, "bytes": 14024704, "bits_per_second": 112891010.87205613, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.001817, "end": 31.001775, "seconds": 0.9999579787254333, "bytes": 14286848, "bits_per_second": 114299587.01432878, "omitted": false, "sender": false}], "sum": {"start": 30.001817, "end": 31.001775, "seconds": 0.9999579787254333, "bytes": 14286848, "bits_per_second": 114299587.01432878, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.001775, "end": 32.001849, "seconds": 1.000074028968811, "bytes": 13893632, "bits_per_second": 111140828.35908377, "omitted": false, "sender": false}], "sum": {"start": 31.001775, "end": 32.001849, "seconds": 1.000074028968811, "bytes": 13893632, "bits_per_second": 111140828.35908377, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.001849, "end": 33.006788, "seconds": 1.0049389600753784, "bytes": 14417920, "bits_per_second": 114776483.53025176, "omitted": false, "sender": false}], "sum": {"start": 32.001849, "end": 33.006788, "seconds": 1.0049389600753784, "bytes": 14417920, "bits_per_second": 114776483.53025176, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.006788, "end": 34.003852, "seconds": 0.9970639944076538, "bytes": 13762560, "bits_per_second": 110424687.50003318, "omitted": false, "sender": false}], "sum": {"start": 33.006788, "end": 34.003852, "seconds": 0.9970639944076538, "bytes": 13762560, "bits_per_second": 110424687.50003318, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.003852, "end": 35.001914, "seconds": 0.998062014579773, "bytes": 17170432, "bits_per_second": 137630181.284713, "omitted": false, "sender": false}], "sum": {"start": 34.003852, "end": 35.001914, "seconds": 0.998062014579773, "bytes": 17170432, "bits_per_second": 137630181.284713, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.001914, "end": 36.001853, "seconds": 0.9999390244483948, "bytes": 15859712, "bits_per_second": 126885432.90926231, "omitted": false, "sender": false}], "sum": {"start": 35.001914, "end": 36.001853, "seconds": 0.9999390244483948, "bytes": 15859712, "bits_per_second": 126885432.90926231, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.001853, "end": 37.002382, "seconds": 1.0005290508270264, "bytes": 12320768, "bits_per_second": 98514025.07356113, "omitted": false, "sender": false}], "sum": {"start": 36.001853, "end": 37.002382, "seconds": 1.0005290508270264, "bytes": 12320768, "bits_per_second": 98514025.07356113, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.002382, "end": 38.004813, "seconds": 1.002431035041809, "bytes": 15466496, "bits_per_second": 123431900.72406271, "omitted": false, "sender": false}], "sum": {"start": 37.002382, "end": 38.004813, "seconds": 1.002431035041809, "bytes": 15466496, "bits_per_second": 123431900.72406271, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.004813, "end": 39.001898, "seconds": 0.9970849752426147, "bytes": 15859712, "bits_per_second": 127248628.90359731, "omitted": false, "sender": false}], "sum": {"start": 38.004813, "end": 39.001898, "seconds": 0.9970849752426147, "bytes": 15859712, "bits_per_second": 127248628.90359731, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.001898, "end": 40.001861, "seconds": 0.9999629855155945, "bytes": 13631488, "bits_per_second": 109055940.6494145, "omitted": false, "sender": false}], "sum": {"start": 39.001898, "end": 40.001861, "seconds": 0.9999629855155945, "bytes": 13631488, "bits_per_second": 109055940.6494145, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.001861, "end": 41.001807, "seconds": 0.9999459981918335, "bytes": 13500416, "bits_per_second": 108009160.6899758, "omitted": false, "sender": false}], "sum": {"start": 40.001861, "end": 41.001807, "seconds": 0.9999459981918335, "bytes": 13500416, "bits_per_second": 108009160.6899758, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.001807, "end": 42.002924, "seconds": 1.0011169910430908, "bytes": 14155776, "bits_per_second": 113119854.13613419, "omitted": false, "sender": false}], "sum": {"start": 41.001807, "end": 42.002924, "seconds": 1.0011169910430908, "bytes": 14155776, "bits_per_second": 113119854.13613419, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.002924, "end": 43.001949, "seconds": 0.999024987220764, "bytes": 13107200, "bits_per_second": 104959937.28015594, "omitted": false, "sender": false}], "sum": {"start": 42.002924, "end": 43.001949, "seconds": 0.999024987220764, "bytes": 13107200, "bits_per_second": 104959937.28015594, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.001949, "end": 44.00889, "seconds": 1.0069409608840942, "bytes": 12976128, "bits_per_second": 103093456.35205431, "omitted": false, "sender": false}], "sum": {"start": 43.001949, "end": 44.00889, "seconds": 1.0069409608840942, "bytes": 12976128, "bits_per_second": 103093456.35205431, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.00889, "end": 45.005861, "seconds": 0.9969710111618042, "bytes": 13893632, "bits_per_second": 111486748.11564904, "omitted": false, "sender": false}], "sum": {"start": 44.00889, "end": 45.005861, "seconds": 0.9969710111618042, "bytes": 13893632, "bits_per_second": 111486748.11564904, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.005861, "end": 46.001965, "seconds": 0.9961040019989014, "bytes": 13631488, "bits_per_second": 109478431.75126635, "omitted": false, "sender": false}], "sum": {"start": 45.005861, "end": 46.001965, "seconds": 0.9961040019989014, "bytes": 13631488, "bits_per_second": 109478431.75126635, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 46.001965, "end": 47.002178, "seconds": 1.0002130270004272, "bytes": 51249152, "bits_per_second": 409905894.97673565, "omitted": false, "sender": false}], "sum": {"start": 46.001965, "end": 47.002178, "seconds": 1.0002130270004272, "bytes": 51249152, "bits_per_second": 409905894.97673565, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 47.002178, "end": 48.028557, "seconds": 1.0263789892196655, "bytes": 62783488, "bits_per_second": 489359105.4332316, "omitted": false, "sender": false}], "sum": {"start": 47.002178, "end": 48.028557, "seconds": 1.0263789892196655, "bytes": 62783488, "bits_per_second": 489359105.4332316, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 48.028557, "end": 49.005873, "seconds": 0.9773160219192505, "bytes": 61472768, "bits_per_second": 503196645.680933, "omitted": false, "sender": false}], "sum": {"start": 48.028557, "end": 49.005873, "seconds": 0.9773160219192505, "bytes": 61472768, "bits_per_second": 503196645.680933, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 49.005873, "end": 50.071135, "seconds": 1.065261960029602, "bytes": 66060288, "bits_per_second": 496105487.5040448, "omitted": false, "sender": false}], "sum": {"start": 49.005873, "end": 50.071135, "seconds": 1.065261960029602, "bytes": 66060288, "bits_per_second": 496105487.5040448, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 50.071135, "end": 51.075604, "seconds": 1.0044690370559692, "bytes": 61997056, "bits_per_second": 493769772.5891814, "omitted": false, "sender": false}], "sum": {"start": 50.071135, "end": 51.075604, "seconds": 1.0044690370559692, "bytes": 61997056, "bits_per_second": 493769772.5891814, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 51.075604, "end": 52.006493, "seconds": 0.9308890104293823, "bytes": 58195968, "bits_per_second": 500132388.26963055, "omitted": false, "sender": false}], "sum": {"start": 51.075604, "end": 52.006493, "seconds": 0.9308890104293823, "bytes": 58195968, "bits_per_second": 500132388.26963055, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 52.006493, "end": 53.100021, "seconds": 1.0935280323028564, "bytes": 68026368, "bits_per_second": 497665288.793693, "omitted": false, "sender": false}], "sum": {"start": 52.006493, "end": 53.100021, "seconds": 1.0935280323028564, "bytes": 68026368, "bits_per_second": 497665288.793693, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 53.100021, "end": 54.104927, "seconds": 1.0049060583114624, "bytes": 62128128, "bits_per_second": 494598494.9430479, "omitted": false, "sender": false}], "sum": {"start": 53.100021, "end": 54.104927, "seconds": 1.0049060583114624, "bytes": 62128128, "bits_per_second": 494598494.9430479, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 54.104927, "end": 55.296349, "seconds": 1.1914219856262207, "bytes": 74973184, "bits_per_second": 503419845.55937845, "omitted": false, "sender": false}], "sum": {"start": 54.104927, "end": 55.296349, "seconds": 1.1914219856262207, "bytes": 74973184, "bits_per_second": 503419845.55937845, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 55.296349, "end": 56.095803, "seconds": 0.7994539737701416, "bytes": 49020928, "bits_per_second": 490544092.4267088, "omitted": false, "sender": false}], "sum": {"start": 55.296349, "end": 56.095803, "seconds": 0.7994539737701416, "bytes": 49020928, "bits_per_second": 490544092.4267088, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 56.095803, "end": 57.016948, "seconds": 0.9211450219154358, "bytes": 57278464, "bits_per_second": 497454473.6149775, "omitted": false, "sender": false}], "sum": {"start": 56.095803, "end": 57.016948, "seconds": 0.9211450219154358, "bytes": 57278464, "bits_per_second": 497454473.6149775, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 57.016948, "end": 58.002734, "seconds": 0.9857860207557678, "bytes": 61734912, "bits_per_second": 501000506.8050772, "omitted": false, "sender": false}], "sum": {"start": 57.016948, "end": 58.002734, "seconds": 0.9857860207557678, "bytes": 61734912, "bits_per_second": 501000506.8050772, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 58.002734, "end": 59.056067, "seconds": 1.053333044052124, "bytes": 65667072, "bits_per_second": 498737392.66647726, "omitted": false, "sender": false}], "sum": {"start": 58.002734, "end": 59.056067, "seconds": 1.053333044052124, "bytes": 65667072, "bits_per_second": 498737392.66647726, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 59.056067, "end": 60.010674, "seconds": 0.9546070098876953, "bytes": 57933824, "bits_per_second": 485509311.37047166, "omitted": false, "sender": false}], "sum": {"start": 59.056067, "end": 60.010674, "seconds": 0.9546070098876953, "bytes": 57933824, "bits_per_second": 485509311.37047166, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 60.010674, "end": 61.01391, "seconds": 1.0032360553741455, "bytes": 61997056, "bits_per_second": 494376617.888829, "omitted": false, "sender": false}], "sum": {"start": 60.010674, "end": 61.01391, "seconds": 1.0032360553741455, "bytes": 61997056, "bits_per_second": 494376617.888829, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 61.01391, "end": 62.014474, "seconds": 1.0005639791488647, "bytes": 61210624, "bits_per_second": 489408975.5425268, "omitted": false, "sender": false}], "sum": {"start": 61.01391, "end": 62.014474, "seconds": 1.0005639791488647, "bytes": 61210624, "bits_per_second": 489408975.5425268, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 62.014474, "end": 63.019649, "seconds": 1.005174994468689, "bytes": 62390272, "bits_per_second": 496552519.4583893, "omitted": false, "sender": false}], "sum": {"start": 62.014474, "end": 63.019649, "seconds": 1.005174994468689, "bytes": 62390272, "bits_per_second": 496552519.4583893, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 63.019649, "end": 64.048251, "seconds": 1.0286020040512085, "bytes": 61603840, "bits_per_second": 479126735.1793577, "omitted": false, "sender": false}], "sum": {"start": 63.019649, "end": 64.048251, "seconds": 1.0286020040512085, "bytes": 61603840, "bits_per_second": 479126735.1793577, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 64.048251, "end": 65.022121, "seconds": 0.9738699793815613, "bytes": 58589184, "bits_per_second": 481289578.61258656, "omitted": false, "sender": false}], "sum": {"start": 64.048251, "end": 65.022121, "seconds": 0.9738699793815613, "bytes": 58589184, "bits_per_second": 481289578.61258656, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 65.022121, "end": 66.070243, "seconds": 1.0481220483779907, "bytes": 63569920, "bits_per_second": 485210058.11013633, "omitted": false, "sender": false}], "sum": {"start": 65.022121, "end": 66.070243, "seconds": 1.0481220483779907, "bytes": 63569920, "bits_per_second": 485210058.11013633, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 66.070243, "end": 67.064535, "seconds": 0.9942920207977295, "bytes": 60817408, "bits_per_second": 489332362.9507206, "omitted": false, "sender": false}], "sum": {"start": 66.070243, "end": 67.064535, "seconds": 0.9942920207977295, "bytes": 60817408, "bits_per_second": 489332362.9507206, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 67.064535, "end": 68.01949, "seconds": 0.954954981803894, "bytes": 57802752, "bits_per_second": 484234361.630841, "omitted": false, "sender": false}], "sum": {"start": 67.064535, "end": 68.01949, "seconds": 0.954954981803894, "bytes": 57802752, "bits_per_second": 484234361.630841, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 68.01949, "end": 69.055774, "seconds": 1.0362839698791504, "bytes": 62914560, "bits_per_second": 485693588.465617, "omitted": false, "sender": false}], "sum": {"start": 68.01949, "end": 69.055774, "seconds": 1.0362839698791504, "bytes": 62914560, "bits_per_second": 485693588.465617, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 69.055774, "end": 70.051206, "seconds": 0.9954320192337036, "bytes": 60817408, "bits_per_second": 488771964.93492764, "omitted": false, "sender": false}], "sum": {"start": 69.055774, "end": 70.051206, "seconds": 0.9954320192337036, "bytes": 60817408, "bits_per_second": 488771964.93492764, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 70.051206, "end": 70.438345, "seconds": 0.3871389925479889, "bytes": 24248320, "bits_per_second": 501077297.13109136, "omitted": false, "sender": false}], "sum": {"start": 70.051206, "end": 70.438345, "seconds": 0.3871389925479889, "bytes": 24248320, "bits_per_second": 501077297.13109136, "omitted": false, "sender": false}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 70.438345, "seconds": 70.438345, "bytes": 0, "bits_per_second": 0, "sender": false}, "receiver": {"socket": 5, "start": 0, "end": 70.438345, "seconds": 70.438345, "bytes": 2197553152, "bits_per_second": 249586006.258381, "sender": false}}], "sum_sent": {"start": 0, "end": 70.438345, "seconds": 70.438345, "bytes": 0, "bits_per_second": 0, "sender": false}, "sum_received": {"start": 0, "end": 70.438345, "seconds": 70.438345, "bytes": 2197553152, "bits_per_second": 249586006.258381, "sender": false}, "cpu_utilization_percent": {"host_total": 52.60767220469257, "host_user": 3.2105642608533524, "host_system": 49.3970994257578, "remote_total": 0, "remote_user": 0, "remote_system": 0}, "receiver_tcp_congestion": "cubic"}}}} 2026-07-16 11:12:45.218812 2026-07-16 11:06:54.761821 +820 37 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:13:33.693231 2026-07-16 11:13:33.693233 +821 37 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:12:44' --until '2026-07-16 11:13:33' 1 OOM records 2026-07-16 11:12:44.891825 2026-07-16 11:13:33.270992 +822 37 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:12:44' --until '2026-07-16 11:13:33' 0 systemd errors records 2026-07-16 11:12:44.891825 2026-07-16 11:13:33.270992 +823 37 loader /usr/bin/stress-ng --timeout 50 --cpu-method all --vm-method all --sock 0 --sock-ops 1000 --netdev 0 --syscall-method all --verify --metrics --udp 0 {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 277.96}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 964, "real_time_secs": 26.86, "usr_time_secs": 10.81, "sys_time_secs": 66.27, "bogo_ops_s_real_time": 35.89, "bogo_ops_s_usr_sys_time": 12.51, "cpu_used_per_instance": 71.74, "rss_max_kb": 2296, "top10_slowest": null}, "1": {"stressor": "netdev", "bogo_ops": 32582, "real_time_secs": 26.78, "usr_time_secs": 13.12, "sys_time_secs": 31.93, "bogo_ops_s_real_time": 1216.65, "bogo_ops_s_usr_sys_time": 723.37, "cpu_used_per_instance": 42.05, "rss_max_kb": 2160, "top10_slowest": null}, "2": {"stressor": "udp", "bogo_ops": 293931, "real_time_secs": 26.78, "usr_time_secs": 11.63, "sys_time_secs": 63.78, "bogo_ops_s_real_time": 10974.24, "bogo_ops_s_usr_sys_time": 3897.48, "cpu_used_per_instance": 70.39, "rss_max_kb": 2296, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 12, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-16 11:13:35.700627 2026-07-16 11:06:54.761821 +824 37 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:14:08.782202 2026-07-16 11:14:08.782204 +825 37 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:13:35' --until '2026-07-16 11:14:08' 1 OOM records 2026-07-16 11:13:35.484538 2026-07-16 11:14:08.359631 +826 37 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:13:35' --until '2026-07-16 11:14:08' 0 systemd errors records 2026-07-16 11:13:35.484538 2026-07-16 11:14:08.359631 +827 38 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-16 11:06:54.761816 2026-07-16 11:06:54.761821 +828 38 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:16:19.228088 2026-07-16 11:16:19.228091 +829 38 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:16:18' --until '2026-07-16 11:16:18' 0 OOM records 2026-07-16 11:16:18.442398 2026-07-16 11:16:18.771508 +830 38 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:16:18' --until '2026-07-16 11:16:18' 0 systemd errors records 2026-07-16 11:16:18.442398 2026-07-16 11:16:18.771508 +831 38 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-16 11:06:54.761816 2026-07-16 11:06:54.761821 +832 38 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:16:34.65067 2026-07-16 11:16:34.650672 +833 38 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:16:20' --until '2026-07-16 11:16:34' 1 OOM records 2026-07-16 11:16:20.088638 2026-07-16 11:16:34.229763 +834 38 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:16:20' --until '2026-07-16 11:16:34' 0 systemd errors records 2026-07-16 11:16:20.088638 2026-07-16 11:16:34.229763 +835 38 loader /usr/bin/stress-ng --timeout 50 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 26.64}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 23.74, "usr_time_secs": 0.46, "sys_time_secs": 2.44, "bogo_ops_s_real_time": 95.72, "bogo_ops_s_usr_sys_time": 781.26, "cpu_used_per_instance": 3.06, "rss_max_kb": 4912, "top10_slowest": [["syslog", 602026888.0, 574015635, 630038141], ["clock_nanosleep", 62731159.5, 465366, 124996953], ["execveat", 32686515.0, 32213144, 33159886], ["execve", 28317100.5, 27049794, 29584407], ["sync", 15864574.5, 15136872, 16592277], ["fdatasync", 12551645.0, 7570482, 17532808], ["pwritev2", 10209530.0, 7449213, 12969847], ["msync", 7892929.0, 83930, 15701928], ["fsync", 7150658.0, 4222818, 10078498], ["syncfs", 3960472.5, 2692405, 5228540]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-16 11:16:35.765892 2026-07-16 11:06:54.761821 +836 38 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:17:11.942439 2026-07-16 11:17:11.942441 +837 38 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:16:35' --until '2026-07-16 11:17:11' 1 OOM records 2026-07-16 11:16:35.541146 2026-07-16 11:17:11.519135 +838 38 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:16:35' --until '2026-07-16 11:17:11' 0 systemd errors records 2026-07-16 11:16:35.541146 2026-07-16 11:17:11.519135 +839 39 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-16 11:20:31.412109 2026-07-16 11:20:31.412114 +840 39 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:23:52.326181 2026-07-16 11:23:52.326183 +841 39 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:23:51' --until '2026-07-16 11:23:51' 0 OOM records 2026-07-16 11:23:51.470887 2026-07-16 11:23:51.906391 +842 39 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:23:51' --until '2026-07-16 11:23:51' 0 systemd errors records 2026-07-16 11:23:51.470887 2026-07-16 11:23:51.906391 +843 39 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-16 11:20:31.412109 2026-07-16 11:20:31.412114 +844 39 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:24:07.587342 2026-07-16 11:24:07.587344 +845 39 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:23:53' --until '2026-07-16 11:24:07' 0 OOM records 2026-07-16 11:23:53.226771 2026-07-16 11:24:07.16718 +846 39 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:23:53' --until '2026-07-16 11:24:07' 0 systemd errors records 2026-07-16 11:23:53.226771 2026-07-16 11:24:07.16718 +847 39 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 50% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 15.16}, "metrics": {"0": {"bogo_ops": 1212, "real_time_secs": 11.05, "usr_time_secs": 1.22, "sys_time_secs": 2.89, "bogo_ops_s_real_time": 109.64, "bogo_ops_s_usr_sys_time": 294.74, "cpu_used_per_instance": 9.3, "rss_max_kb": 2088, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-16 11:24:08.681721 2026-07-16 11:20:31.412114 +848 39 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 60% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 16.29}, "metrics": {"0": {"bogo_ops": 1608, "real_time_secs": 11.07, "usr_time_secs": 1.45, "sys_time_secs": 3.77, "bogo_ops_s_real_time": 145.21, "bogo_ops_s_usr_sys_time": 307.65, "cpu_used_per_instance": 11.8, "rss_max_kb": 2024, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-16 11:24:16.205634 2026-07-16 11:20:31.412114 +849 39 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 70% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 1033530.29}, "metrics": {"0": {"bogo_ops": 1151, "real_time_secs": 1033526.31, "usr_time_secs": 1.13, "sys_time_secs": 2.85, "bogo_ops_s_real_time": 0.0, "bogo_ops_s_usr_sys_time": 288.85, "cpu_used_per_instance": 0.0, "rss_max_kb": 2136, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-16 11:24:23.726196 2026-07-16 11:20:31.412114 +850 39 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 80% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 16.92}, "metrics": {"0": {"bogo_ops": 1808, "real_time_secs": 11.07, "usr_time_secs": 1.69, "sys_time_secs": 4.16, "bogo_ops_s_real_time": 163.27, "bogo_ops_s_usr_sys_time": 308.98, "cpu_used_per_instance": 13.21, "rss_max_kb": 2176, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-16 11:24:31.183936 2026-07-16 11:20:31.412114 +851 39 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 90% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 17.55}, "metrics": {"0": {"bogo_ops": 2098, "real_time_secs": 11.06, "usr_time_secs": 1.9, "sys_time_secs": 4.59, "bogo_ops_s_real_time": 189.67, "bogo_ops_s_usr_sys_time": 323.62, "cpu_used_per_instance": 14.65, "rss_max_kb": 2204, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-16 11:24:38.705365 2026-07-16 11:20:31.412114 +852 39 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:24:46.548771 2026-07-16 11:24:46.548773 +853 39 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:24:08' --until '2026-07-16 11:24:46' 0 OOM records 2026-07-16 11:24:08.470899 2026-07-16 11:24:46.127548 +854 39 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:24:08' --until '2026-07-16 11:24:46' 0 systemd errors records 2026-07-16 11:24:08.470899 2026-07-16 11:24:46.127548 +855 39 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1409MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260716-112449Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260716-112449Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260716-112449Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260716-112449Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260716-112449Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1409MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4928000, "io_kbytes": 4812, "bw_bytes": 985402, "bw": 962, "iops": 1924.615077, "runtime": 5001, "total_ios": 9625, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 130005, "max": 10735577, "mean": 245025.050597, "stddev": 188025.516767, "N": 9625}, "clat_ns": {"min": 42639, "max": 81671079, "mean": 245453.05174, "stddev": 837717.937439, "N": 9625, "percentile": {"1.000000": 44800, "5.000000": 45312, "10.000000": 46848, "20.000000": 205824, "30.000000": 211968, "40.000000": 216064, "50.000000": 226304, "60.000000": 248832, "70.000000": 280576, "80.000000": 305152, "90.000000": 358400, "95.000000": 399360, "99.000000": 522240, "99.500000": 569344, "99.900000": 806912, "99.950000": 1204224, "99.990000": 81264640}}, "lat_ns": {"min": 327912, "max": 81809207, "mean": 490478.102338, "stddev": 848317.366879, "N": 9625}, "bw_min": 929, "bw_max": 994, "bw_agg": 99.760301, "bw_mean": 960.0, "bw_dev": 29.46184, "bw_samples": 5, "iops_min": 1858, "iops_max": 1988, "iops_mean": 1920.2, "iops_stddev": 58.661742, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 17.776445, "sys_cpu": 56.108778, "ctx": 9675, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 12.748052, "100": 2.098701, "250": 45.631169, "500": 38.254545, "750": 1.163636, "1000": 0.041558}, "latency_ms": {"2": 0.031169, "4": 0.020779, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.01039, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-16 11:24:49.58171 2026-07-16 11:20:31.412114 +856 40 loader plan-stage {"stage_name": "warmup", "start_offset_sec": 0, "duration_sec": 24, "pattern": "soft", "tasks": [{"subsystem": "IPC", "tool": "stress-ng", "args": {"mq": "@cpu:0.25", "pipe": "@cpu:0.25", "sem": "@cpu:0.25", "shm": "@cpu:0.25", "timeout_sec": 24}}, {"subsystem": "file", "tool": "fio", "args": {"readwrite": "read", "bs": "128k", "numjobs": 1, "iodepth": 1, "size": "@avail_ratio:0.025", "runtime_sec": 24}}, {"subsystem": "memory", "tool": "stress-ng", "args": {"vm": "@cpu:0.25", "vm_method": "all", "vm_bytes": "10%", "timeout_sec": 24}}, {"subsystem": "network", "tool": "stress-ng", "args": {"sock": "@cpu:0.25", "sock_ops": 50000, "timeout_sec": 24}}, {"subsystem": "syscalls", "tool": "stress-ng", "args": {"syscall": "@cpu:0.25", "timeout_sec": 24}}, {"subsystem": "system", "tool": "stress-ng", "args": {"cpu": 1, "cpu_method": "matrixprod", "timeout_sec": 24}}]} Planned stage 2026-07-16 11:28:47.622081 2026-07-16 11:28:47.622081 +865 40 loader /usr/bin/fio --name main-file --numjobs 2 --filename /var/lib/imgtests-fio/main-file.dat --size 374MiB --readwrite randrw --output-format json --ioengine libaio --direct 1 --runtime 72 --time_based --group_reporting --bs 16k --iodepth 4 {"stage_name": "main", "subsystem": "file", "tool": "fio", "utility": "fio", "command": ["/usr/bin/fio", "--name", "main-file", "--numjobs", "2", "--filename", "/var/lib/imgtests-fio/main-file.dat", "--size", "374MiB", "--readwrite", "randrw", "--output-format", "json", "--ioengine", "libaio", "--direct", "1", "--runtime", "72", "--time_based", "--group_reporting", "--bs", "16k", "--iodepth", "4"], "returncode": 0, "stdout": "{\\n \\"fio version\\" : \\"fio-3.39\\",\\n \\"timestamp\\" : 1784201444,\\n \\"timestamp_ms\\" : 1784201444816,\\n \\"time\\" : \\"Thu Jul 16 11:30:44 2026\\",\\n \\"jobs\\" : [\\n {\\n \\"jobname\\" : \\"main-file\\",\\n \\"groupid\\" : 0,\\n \\"job_start\\" : 1784201404389,\\n \\"error\\" : 0,\\n \\"eta\\" : 0,\\n \\"elapsed\\" : 75,\\n \\"job options\\" : {\\n \\"name\\" : \\"main-file\\",\\n \\"numjobs\\" : \\"2\\",\\n \\"filename\\" : \\"/var/lib/imgtests-fio/main-file.dat\\",\\n \\"size\\" : \\"374MiB\\",\\n \\"rw\\" : \\"randrw\\",\\n \\"ioengine\\" : \\"libaio\\",\\n \\"direct\\" : \\"1\\",\\n \\"runtime\\" : \\"72\\",\\n \\"time_based\\" : \\"\\",\\n \\"group_reporting\\" : \\"\\",\\n \\"bs\\" : \\"16k\\",\\n \\"iodepth\\" : \\"4\\"\\n },\\n \\"read\\" : {\\n \\"io_bytes\\" : 1870643200,\\n \\"io_kbytes\\" : 1826800,\\n \\"bw_bytes\\" : 25980794,\\n \\"bw\\" : 25371,\\n \\"iops\\" : 1585.741865,\\n \\"runtime\\" : 72001,\\n \\"total_ios\\" : 114175,\\n \\"short_ios\\" : 0,\\n \\"drop_ios\\" : 0,\\n \\"slat_ns\\" : {\\n \\"min\\" : 109947,\\n \\"max\\" : 26691334,\\n \\"mean\\" : 253406.411771,\\n \\"stddev\\" : 290634.673677,\\n \\"N\\" : 114175\\n },\\n \\"clat_ns\\" : {\\n \\"min\\" : 39970,\\n \\"max\\" : 31149069,\\n \\"mean\\" : 1518394.354631,\\n \\"stddev\\" : 930524.662949,\\n \\"N\\" : 114175,\\n \\"percentile\\" : {\\n \\"1.000000\\" : 468992,\\n \\"5.000000\\" : 1073152,\\n \\"10.000000\\" : 1138688,\\n \\"20.000000\\" : 1220608,\\n \\"30.000000\\" : 1286144,\\n \\"40.000000\\" : 1351680,\\n \\"50.000000\\" : 1417216,\\n \\"60.000000\\" : 1482752,\\n \\"70.000000\\" : 1548288,\\n \\"80.000000\\" : 1646592,\\n \\"90.000000\\" : 1810432,\\n \\"95.000000\\" : 2007040,\\n \\"99.000000\\" : 3620864,\\n \\"99.500000\\" : 8585216,\\n \\"99.900000\\" : 14483456,\\n \\"99.950000\\" : 15794176,\\n \\"99.990000\\" : 22413312\\n }\\n },\\n \\"lat_ns\\" : {\\n \\"min\\" : 248258,\\n \\"max\\" : 32633141,\\n \\"mean\\" : 1771800.766402,\\n \\"stddev\\" : 1019741.116359,\\n \\"N\\" : 114175\\n },\\n \\"bw_min\\" : 670,\\n \\"bw_max\\" : 38560,\\n \\"bw_agg\\" : 100.000000,\\n \\"bw_mean\\" : 28222.725332,\\n \\"bw_dev\\" : 4233.162187,\\n \\"bw_samples\\" : 255,\\n \\"iops_min\\" : 41,\\n \\"iops_max\\" : 2410,\\n \\"iops_mean\\" : 1763.105438,\\n \\"iops_stddev\\" : 264.554121,\\n \\"iops_samples\\" : 255\\n },\\n \\"write\\" : {\\n \\"io_bytes\\" : 1872281600,\\n \\"io_kbytes\\" : 1828400,\\n \\"bw_bytes\\" : 26003549,\\n \\"bw\\" : 25394,\\n \\"iops\\" : 1587.130734,\\n \\"runtime\\" : 72001,\\n \\"total_ios\\" : 114275,\\n \\"short_ios\\" : 0,\\n \\"drop_ios\\" : 0,\\n \\"slat_ns\\" : {\\n \\"min\\" : 115059,\\n \\"max\\" : 20615101,\\n \\"mean\\" : 242694.076867,\\n \\"stddev\\" : 292189.660289,\\n \\"N\\" : 114275\\n },\\n \\"clat_ns\\" : {\\n \\"min\\" : 47949,\\n \\"max\\" : 7588018458,\\n \\"mean\\" : 2862002.485093,\\n \\"stddev\\" : 64002518.904885,\\n \\"N\\" : 114275,\\n \\"percentile\\" : {\\n \\"1.000000\\" : 1155072,\\n \\"5.000000\\" : 1269760,\\n \\"10.000000\\" : 1318912,\\n \\"20.000000\\" : 1400832,\\n \\"30.000000\\" : 1466368,\\n \\"40.000000\\" : 1531904,\\n \\"50.000000\\" : 1597440,\\n \\"60.000000\\" : 1662976,\\n \\"70.000000\\" : 1728512,\\n \\"80.000000\\" : 1826816,\\n \\"90.000000\\" : 2072576,\\n \\"95.000000\\" : 2539520,\\n \\"99.000000\\" : 18743296,\\n \\"99.500000\\" : 30539776,\\n \\"99.900000\\" : 63176704,\\n \\"99.950000\\" : 91750400,\\n \\"99.990000\\" : 641728512\\n }\\n },\\n \\"lat_ns\\" : {\\n \\"min\\" : 470697,\\n \\"max\\" : 7588163255,\\n \\"mean\\" : 3104696.561960,\\n \\"stddev\\" : 64003693.470924,\\n \\"N\\" : 114275\\n },\\n \\"bw_min\\" : 593,\\n \\"bw_max\\" : 38297,\\n \\"bw_agg\\" : 100.000000,\\n \\"bw_mean\\" : 28245.213583,\\n \\"bw_dev\\" : 4138.832040,\\n \\"bw_samples\\" : 255,\\n \\"iops_min\\" : 36,\\n \\"iops_max\\" : 2393,\\n \\"iops_mean\\" : 1764.503137,\\n \\"iops_stddev\\" : 258.677909,\\n \\"iops_samples\\" : 255\\n },\\n \\"trim\\" : {\\n \\"io_bytes\\" : 0,\\n \\"io_kbytes\\" : 0,\\n \\"bw_bytes\\" : 0,\\n \\"bw\\" : 0,\\n \\"iops\\" : 0.000000,\\n \\"runtime\\" : 0,\\n \\"total_ios\\" : 0,\\n \\"short_ios\\" : 0,\\n \\"drop_ios\\" : 0,\\n \\"slat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"clat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"lat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"bw_min\\" : 0,\\n \\"bw_max\\" : 0,\\n \\"bw_agg\\" : 0.000000,\\n \\"bw_mean\\" : 0.000000,\\n \\"bw_dev\\" : 0.000000,\\n \\"bw_samples\\" : 0,\\n \\"iops_min\\" : 0,\\n \\"iops_max\\" : 0,\\n \\"iops_mean\\" : 0.000000,\\n \\"iops_stddev\\" : 0.000000,\\n \\"iops_samples\\" : 0\\n },\\n \\"sync\\" : {\\n \\"total_ios\\" : 0,\\n \\"lat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n }\\n },\\n \\"job_runtime\\" : 144000,\\n \\"usr_cpu\\" : 21.626389,\\n \\"sys_cpu\\" : 43.440278,\\n \\"ctx\\" : 111702,\\n \\"majf\\" : 0,\\n \\"minf\\" : 26,\\n \\"iodepth_level\\" : {\\n \\"1\\" : 0.100000,\\n \\"2\\" : 0.100000,\\n \\"4\\" : 99.997374,\\n \\"8\\" : 0.000000,\\n \\"16\\" : 0.000000,\\n \\"32\\" : 0.000000,\\n \\">=64\\" : 0.000000\\n },\\n \\"iodepth_submit\\" : {\\n \\"0\\" : 0.000000,\\n \\"4\\" : 100.000000,\\n \\"8\\" : 0.000000,\\n \\"16\\" : 0.000000,\\n \\"32\\" : 0.000000,\\n \\"64\\" : 0.000000,\\n \\">=64\\" : 0.000000\\n },\\n \\"iodepth_complete\\" : {\\n \\"0\\" : 0.000000,\\n \\"4\\" : 100.000000,\\n \\"8\\" : 0.000000,\\n \\"16\\" : 0.000000,\\n \\"32\\" : 0.000000,\\n \\"64\\" : 0.000000,\\n \\">=64\\" : 0.000000\\n },\\n \\"latency_ns\\" : {\\n \\"2\\" : 0.000000,\\n \\"4\\" : 0.000000,\\n \\"10\\" : 0.000000,\\n \\"20\\" : 0.000000,\\n \\"50\\" : 0.000000,\\n \\"100\\" : 0.000000,\\n \\"250\\" : 0.000000,\\n \\"500\\" : 0.000000,\\n \\"750\\" : 0.000000,\\n \\"1000\\" : 0.000000\\n },\\n \\"latency_us\\" : {\\n \\"2\\" : 0.000000,\\n \\"4\\" : 0.000000,\\n \\"10\\" : 0.000000,\\n \\"20\\" : 0.000000,\\n \\"50\\" : 0.084920,\\n \\"100\\" : 0.014445,\\n \\"250\\" : 0.172029,\\n \\"500\\" : 0.256949,\\n \\"750\\" : 0.302473,\\n \\"1000\\" : 0.663165\\n },\\n \\"latency_ms\\" : {\\n \\"2\\" : 89.921646,\\n \\"4\\" : 6.548917,\\n \\"10\\" : 0.885095,\\n \\"20\\" : 0.668855,\\n \\"50\\" : 0.389144,\\n \\"100\\" : 0.067411,\\n \\"250\\" : 0.010000,\\n \\"500\\" : 0.010000,\\n \\"750\\" : 0.014445,\\n \\"1000\\" : 0.000000,\\n \\"2000\\" : 0.000000,\\n \\">=2000\\" : 0.010000\\n },\\n \\"latency_depth\\" : 4,\\n \\"latency_target\\" : 0,\\n \\"latency_percentile\\" : 100.000000,\\n \\"latency_window\\" : 0\\n }\\n ],\\n \\"disk_util\\" : [\\n {\\n \\"name\\" : \\"vda\\",\\n \\"read_ios\\" : 113806,\\n \\"write_ios\\" : 113919,\\n \\"read_sectors\\" : 3641792,\\n \\"write_sectors\\" : 3645184,\\n \\"read_merges\\" : 0,\\n \\"write_merges\\" : 53,\\n \\"read_ticks\\" : 22800,\\n \\"write_ticks\\" : 227746,\\n \\"in_queue\\" : 317846,\\n \\"util\\" : 95.458844\\n }\\n ]\\n}", "stderr": "", "summary": {"jobs_count": 1}, "metrics": [{"stage_name": "main", "subsystem": "file", "metric_name": "fio.read.iops", "value": 1585.741865, "label": "Read IOPS"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.read.bw_kib_s", "value": 25371.0, "label": "Read bandwidth, KiB/s"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.read.runtime_ms", "value": 72001.0, "label": "Read runtime, ms"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.read.clat_mean_ns", "value": 1518394.354631, "label": "Read clat mean, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.read.clat_p50_ns", "value": 1417216.0, "label": "Read clat p50, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.read.clat_p90_ns", "value": 1810432.0, "label": "Read clat p90, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.read.clat_p95_ns", "value": 2007040.0, "label": "Read clat p95, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.read.clat_p99_ns", "value": 3620864.0, "label": "Read clat p99, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.read.clat_p999_ns", "value": 14483456.0, "label": "Read clat p99.9, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.write.iops", "value": 1587.130734, "label": "Write IOPS"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.write.bw_kib_s", "value": 25394.0, "label": "Write bandwidth, KiB/s"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.write.runtime_ms", "value": 72001.0, "label": "Write runtime, ms"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.write.clat_mean_ns", "value": 2862002.485093, "label": "Write clat mean, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.write.clat_p50_ns", "value": 1597440.0, "label": "Write clat p50, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.write.clat_p90_ns", "value": 2072576.0, "label": "Write clat p90, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.write.clat_p95_ns", "value": 2539520.0, "label": "Write clat p95, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.write.clat_p99_ns", "value": 18743296.0, "label": "Write clat p99, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.write.clat_p999_ns", "value": 63176704.0, "label": "Write clat p99.9, ns"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.trim.iops", "value": 0.0, "label": "Trim IOPS"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.trim.bw_kib_s", "value": 0.0, "label": "Trim bandwidth, KiB/s"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.trim.runtime_ms", "value": 0.0, "label": "Trim runtime, ms"}, {"stage_name": "main", "subsystem": "file", "metric_name": "fio.trim.clat_mean_ns", "value": 0.0, "label": "Trim clat mean, ns"}]} Task result for stage=main 2026-07-16 11:29:12.602885 2026-07-16 11:30:43.670573 +925 45 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 60% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 11.41}, "metrics": {"0": {"bogo_ops": 1871, "real_time_secs": 11.02, "usr_time_secs": 0.05, "sys_time_secs": 0.34, "bogo_ops_s_real_time": 169.79, "bogo_ops_s_usr_sys_time": 4831.9, "cpu_used_per_instance": 0.88, "rss_max_kb": 2156, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:13:26.829274 2026-07-20 19:08:00.987045 +857 40 loader /usr/bin/stress-ng --timeout 24 --cpu-method all --vm-method all --syscall-method all --mq 1 --pipe 1 --sem 1 --shm 1 --verify --metrics {"stage_name": "warmup", "subsystem": "IPC", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "24", "--cpu-method", "all", "--vm-method", "all", "--syscall-method", "all", "--mq", "1", "--pipe", "1", "--sem", "1", "--shm", "1", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1121] setting to a 24 secs run per stressor\\nstress-ng: info: [1121] dispatching hogs: 1 mq, 1 pipe, 1 sem, 1 shm\\nstress-ng: metrc: [1121] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1121] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1121] mq 71958 12.37 4.55 9.39 5815.90 5160.97 112.69 2268\\nstress-ng: metrc: [1121] pipe 100727 12.37 2.56 12.53 8142.88 6674.25 122.00 2520\\nstress-ng: metrc: [1121] sem 333783 12.37 4.78 12.33 26980.40 19498.71 138.37 2980\\nstress-ng: metrc: [1121] shm 33 12.41 0.67 8.50 2.66 3.60 73.93 263724\\nstress-ng: metrc: [1121] miscellaneous metrics:\\nstress-ng: metrc: [1121] pipe 31.88 MB per sec pipe write rate (harmonic mean of 1 instance)\\nstress-ng: metrc: [1121] sem 8989.24 sem_trywait calls per sec (harmonic mean of 1 instance)\\nstress-ng: metrc: [1121] sem 8999.10 sem_timedwait calls per sec (harmonic mean of 1 instance)\\nstress-ng: metrc: [1121] sem 8995.63 sem_wait calls per sec (harmonic mean of 1 instance)\\nstress-ng: info: [1121] skipped: 0\\nstress-ng: info: [1121] passed: 4: mq (1) pipe (1) sem (1) shm (1)\\nstress-ng: info: [1121] failed: 0\\nstress-ng: info: [1121] metrics untrustworthy: 0\\nstress-ng: info: [1121] successful run completed in 12.45 secs", "stderr": "", "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 71958.0, "label": "Bogo ops"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 12.37, "label": "Real time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 4.55, "label": "User time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 9.39, "label": "System time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 5815.9, "label": "Bogo ops/s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 5160.97, "label": "Bogo ops/s CPU"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 112.69, "label": "CPU used, %"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 2268.0, "label": "RSS max, KB"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 100727.0, "label": "Bogo ops"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 12.37, "label": "Real time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 2.56, "label": "User time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 12.53, "label": "System time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 8142.88, "label": "Bogo ops/s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 6674.25, "label": "Bogo ops/s CPU"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 122.0, "label": "CPU used, %"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 2520.0, "label": "RSS max, KB"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 333783.0, "label": "Bogo ops"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 12.37, "label": "Real time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 4.78, "label": "User time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 12.33, "label": "System time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 26980.4, "label": "Bogo ops/s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 19498.71, "label": "Bogo ops/s CPU"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 138.37, "label": "CPU used, %"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 2980.0, "label": "RSS max, KB"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 33.0, "label": "Bogo ops"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 12.41, "label": "Real time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 0.67, "label": "User time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 8.5, "label": "System time, s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 2.66, "label": "Bogo ops/s"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 3.6, "label": "Bogo ops/s CPU"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 73.93, "label": "CPU used, %"}, {"stage_name": "warmup", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 263724.0, "label": "RSS max, KB"}]} Task result for stage=warmup 2026-07-16 11:28:47.62553 2026-07-16 11:29:03.844732 +858 40 loader /usr/bin/fio --name warmup-file --numjobs 1 --filename /var/lib/imgtests-fio/warmup-file.dat --size 187MiB --readwrite read --output-format json --ioengine libaio --direct 1 --runtime 24 --time_based --group_reporting --bs 128k --iodepth 1 {"stage_name": "warmup", "subsystem": "file", "tool": "fio", "utility": "fio", "command": ["/usr/bin/fio", "--name", "warmup-file", "--numjobs", "1", "--filename", "/var/lib/imgtests-fio/warmup-file.dat", "--size", "187MiB", "--readwrite", "read", "--output-format", "json", "--ioengine", "libaio", "--direct", "1", "--runtime", "24", "--time_based", "--group_reporting", "--bs", "128k", "--iodepth", "1"], "returncode": 0, "stdout": "{\\n \\"fio version\\" : \\"fio-3.39\\",\\n \\"timestamp\\" : 1784201357,\\n \\"timestamp_ms\\" : 1784201357205,\\n \\"time\\" : \\"Thu Jul 16 11:29:17 2026\\",\\n \\"jobs\\" : [\\n {\\n \\"jobname\\" : \\"warmup-file\\",\\n \\"groupid\\" : 0,\\n \\"job_start\\" : 1784201348289,\\n \\"error\\" : 0,\\n \\"eta\\" : 0,\\n \\"elapsed\\" : 26,\\n \\"job options\\" : {\\n \\"name\\" : \\"warmup-file\\",\\n \\"numjobs\\" : \\"1\\",\\n \\"filename\\" : \\"/var/lib/imgtests-fio/warmup-file.dat\\",\\n \\"size\\" : \\"187MiB\\",\\n \\"rw\\" : \\"read\\",\\n \\"ioengine\\" : \\"libaio\\",\\n \\"direct\\" : \\"1\\",\\n \\"runtime\\" : \\"24\\",\\n \\"time_based\\" : \\"\\",\\n \\"group_reporting\\" : \\"\\",\\n \\"bs\\" : \\"128k\\",\\n \\"iodepth\\" : \\"1\\"\\n },\\n \\"read\\" : {\\n \\"io_bytes\\" : 4891213824,\\n \\"io_kbytes\\" : 4776576,\\n \\"bw_bytes\\" : 203792084,\\n \\"bw\\" : 199015,\\n \\"iops\\" : 1554.810216,\\n \\"runtime\\" : 24001,\\n \\"total_ios\\" : 37317,\\n \\"short_ios\\" : 0,\\n \\"drop_ios\\" : 0,\\n \\"slat_ns\\" : {\\n \\"min\\" : 147568,\\n \\"max\\" : 8537533,\\n \\"mean\\" : 220242.376263,\\n \\"stddev\\" : 281695.218614,\\n \\"N\\" : 37317\\n },\\n \\"clat_ns\\" : {\\n \\"min\\" : 40209,\\n \\"max\\" : 7778490,\\n \\"mean\\" : 395978.292494,\\n \\"stddev\\" : 582051.239341,\\n \\"N\\" : 37317,\\n \\"percentile\\" : {\\n \\"1.000000\\" : 42240,\\n \\"5.000000\\" : 146432,\\n \\"10.000000\\" : 173056,\\n \\"20.000000\\" : 224256,\\n \\"30.000000\\" : 228352,\\n \\"40.000000\\" : 234496,\\n \\"50.000000\\" : 240640,\\n \\"60.000000\\" : 252928,\\n \\"70.000000\\" : 288768,\\n \\"80.000000\\" : 321536,\\n \\"90.000000\\" : 423936,\\n \\"95.000000\\" : 1662976,\\n \\"99.000000\\" : 3063808,\\n \\"99.500000\\" : 3850240,\\n \\"99.900000\\" : 5079040,\\n \\"99.950000\\" : 5668864,\\n \\"99.990000\\" : 7438336\\n }\\n },\\n \\"lat_ns\\" : {\\n \\"min\\" : 285508,\\n \\"max\\" : 8628426,\\n \\"mean\\" : 616220.668757,\\n \\"stddev\\" : 648498.723926,\\n \\"N\\" : 37317\\n },\\n \\"bw_min\\" : 83289,\\n \\"bw_max\\" : 291371,\\n \\"bw_agg\\" : 99.353967,\\n \\"bw_mean\\" : 197730.042553,\\n \\"bw_dev\\" : 90976.941197,\\n \\"bw_samples\\" : 47,\\n \\"iops_min\\" : 650,\\n \\"iops_max\\" : 2276,\\n \\"iops_mean\\" : 1544.340426,\\n \\"iops_stddev\\" : 710.735207,\\n \\"iops_samples\\" : 47\\n },\\n \\"write\\" : {\\n \\"io_bytes\\" : 0,\\n \\"io_kbytes\\" : 0,\\n \\"bw_bytes\\" : 0,\\n \\"bw\\" : 0,\\n \\"iops\\" : 0.000000,\\n \\"runtime\\" : 0,\\n \\"total_ios\\" : 0,\\n \\"short_ios\\" : 0,\\n \\"drop_ios\\" : 0,\\n \\"slat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"clat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"lat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"bw_min\\" : 0,\\n \\"bw_max\\" : 0,\\n \\"bw_agg\\" : 0.000000,\\n \\"bw_mean\\" : 0.000000,\\n \\"bw_dev\\" : 0.000000,\\n \\"bw_samples\\" : 0,\\n \\"iops_min\\" : 0,\\n \\"iops_max\\" : 0,\\n \\"iops_mean\\" : 0.000000,\\n \\"iops_stddev\\" : 0.000000,\\n \\"iops_samples\\" : 0\\n },\\n \\"trim\\" : {\\n \\"io_bytes\\" : 0,\\n \\"io_kbytes\\" : 0,\\n \\"bw_bytes\\" : 0,\\n \\"bw\\" : 0,\\n \\"iops\\" : 0.000000,\\n \\"runtime\\" : 0,\\n \\"total_ios\\" : 0,\\n \\"short_ios\\" : 0,\\n \\"drop_ios\\" : 0,\\n \\"slat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"clat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"lat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"bw_min\\" : 0,\\n \\"bw_max\\" : 0,\\n \\"bw_agg\\" : 0.000000,\\n \\"bw_mean\\" : 0.000000,\\n \\"bw_dev\\" : 0.000000,\\n \\"bw_samples\\" : 0,\\n \\"iops_min\\" : 0,\\n \\"iops_max\\" : 0,\\n \\"iops_mean\\" : 0.000000,\\n \\"iops_stddev\\" : 0.000000,\\n \\"iops_samples\\" : 0\\n },\\n \\"sync\\" : {\\n \\"total_ios\\" : 0,\\n \\"lat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n }\\n },\\n \\"job_runtime\\" : 24000,\\n \\"usr_cpu\\" : 16.341667,\\n \\"sys_cpu\\" : 42.175000,\\n \\"ctx\\" : 30599,\\n \\"majf\\" : 0,\\n \\"minf\\" : 41,\\n \\"iodepth_level\\" : {\\n \\"1\\" : 100.000000,\\n \\"2\\" : 0.000000,\\n \\"4\\" : 0.000000,\\n \\"8\\" : 0.000000,\\n \\"16\\" : 0.000000,\\n \\"32\\" : 0.000000,\\n \\">=64\\" : 0.000000\\n },\\n \\"iodepth_submit\\" : {\\n \\"0\\" : 0.000000,\\n \\"4\\" : 100.000000,\\n \\"8\\" : 0.000000,\\n \\"16\\" : 0.000000,\\n \\"32\\" : 0.000000,\\n \\"64\\" : 0.000000,\\n \\">=64\\" : 0.000000\\n },\\n \\"iodepth_complete\\" : {\\n \\"0\\" : 0.000000,\\n \\"4\\" : 100.000000,\\n \\"8\\" : 0.000000,\\n \\"16\\" : 0.000000,\\n \\"32\\" : 0.000000,\\n \\"64\\" : 0.000000,\\n \\">=64\\" : 0.000000\\n },\\n \\"latency_ns\\" : {\\n \\"2\\" : 0.000000,\\n \\"4\\" : 0.000000,\\n \\"10\\" : 0.000000,\\n \\"20\\" : 0.000000,\\n \\"50\\" : 0.000000,\\n \\"100\\" : 0.000000,\\n \\"250\\" : 0.000000,\\n \\"500\\" : 0.000000,\\n \\"750\\" : 0.000000,\\n \\"1000\\" : 0.000000\\n },\\n \\"latency_us\\" : {\\n \\"2\\" : 0.000000,\\n \\"4\\" : 0.000000,\\n \\"10\\" : 0.000000,\\n \\"20\\" : 0.000000,\\n \\"50\\" : 3.403275,\\n \\"100\\" : 0.787845,\\n \\"250\\" : 54.157623,\\n \\"500\\" : 32.824182,\\n \\"750\\" : 1.278238,\\n \\"1000\\" : 0.694054\\n },\\n \\"latency_ms\\" : {\\n \\"2\\" : 3.003993,\\n \\"4\\" : 3.419353,\\n \\"10\\" : 0.431439,\\n \\"20\\" : 0.000000,\\n \\"50\\" : 0.000000,\\n \\"100\\" : 0.000000,\\n \\"250\\" : 0.000000,\\n \\"500\\" : 0.000000,\\n \\"750\\" : 0.000000,\\n \\"1000\\" : 0.000000,\\n \\"2000\\" : 0.000000,\\n \\">=2000\\" : 0.000000\\n },\\n \\"latency_depth\\" : 1,\\n \\"latency_target\\" : 0,\\n \\"latency_percentile\\" : 100.000000,\\n \\"latency_window\\" : 0\\n }\\n ],\\n \\"disk_util\\" : [\\n {\\n \\"name\\" : \\"vda\\",\\n \\"read_ios\\" : 36750,\\n \\"write_ios\\" : 69,\\n \\"read_sectors\\" : 9407872,\\n \\"write_sectors\\" : 1032,\\n \\"read_merges\\" : 0,\\n \\"write_merges\\" : 62,\\n \\"read_ticks\\" : 9685,\\n \\"write_ticks\\" : 97,\\n \\"in_queue\\" : 9834,\\n \\"util\\" : 27.112454\\n }\\n ]\\n}", "stderr": "", "summary": {"jobs_count": 1}, "metrics": [{"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.read.iops", "value": 1554.810216, "label": "Read IOPS"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.read.bw_kib_s", "value": 199015.0, "label": "Read bandwidth, KiB/s"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.read.runtime_ms", "value": 24001.0, "label": "Read runtime, ms"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.read.clat_mean_ns", "value": 395978.292494, "label": "Read clat mean, ns"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.read.clat_p50_ns", "value": 240640.0, "label": "Read clat p50, ns"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.read.clat_p90_ns", "value": 423936.0, "label": "Read clat p90, ns"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.read.clat_p95_ns", "value": 1662976.0, "label": "Read clat p95, ns"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.read.clat_p99_ns", "value": 3063808.0, "label": "Read clat p99, ns"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.read.clat_p999_ns", "value": 5079040.0, "label": "Read clat p99.9, ns"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.write.iops", "value": 0.0, "label": "Write IOPS"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.write.bw_kib_s", "value": 0.0, "label": "Write bandwidth, KiB/s"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.write.runtime_ms", "value": 0.0, "label": "Write runtime, ms"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.write.clat_mean_ns", "value": 0.0, "label": "Write clat mean, ns"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.trim.iops", "value": 0.0, "label": "Trim IOPS"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.trim.bw_kib_s", "value": 0.0, "label": "Trim bandwidth, KiB/s"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.trim.runtime_ms", "value": 0.0, "label": "Trim runtime, ms"}, {"stage_name": "warmup", "subsystem": "file", "metric_name": "fio.trim.clat_mean_ns", "value": 0.0, "label": "Trim clat mean, ns"}]} Task result for stage=warmup 2026-07-16 11:28:47.62577 2026-07-16 11:29:12.581876 +859 40 loader /usr/bin/stress-ng --timeout 24 --cpu-method all --vm 1 --vm-method all --vm-bytes 10% --syscall-method all --verify --metrics {"stage_name": "warmup", "subsystem": "memory", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "24", "--cpu-method", "all", "--vm", "1", "--vm-method", "all", "--vm-bytes", "10%", "--syscall-method", "all", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1122] setting to a 24 secs run per stressor\\nstress-ng: info: [1122] dispatching hogs: 1 vm\\nstress-ng: metrc: [1122] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1122] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1122] vm 1495 8.70 1.34 8.03 171.86 159.54 107.73 270748\\nstress-ng: info: [1122] skipped: 0\\nstress-ng: info: [1122] passed: 1: vm (1)\\nstress-ng: info: [1122] failed: 0\\nstress-ng: info: [1122] metrics untrustworthy: 0\\nstress-ng: info: [1122] successful run completed in 8.72 secs", "stderr": "", "summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "warmup", "subsystem": "memory", "metric_name": "stress.bogo_ops", "value": 1495.0, "label": "Bogo ops"}, {"stage_name": "warmup", "subsystem": "memory", "metric_name": "stress.real_time_secs", "value": 8.7, "label": "Real time, s"}, {"stage_name": "warmup", "subsystem": "memory", "metric_name": "stress.usr_time_secs", "value": 1.34, "label": "User time, s"}, {"stage_name": "warmup", "subsystem": "memory", "metric_name": "stress.sys_time_secs", "value": 8.03, "label": "System time, s"}, {"stage_name": "warmup", "subsystem": "memory", "metric_name": "stress.bogo_ops_s_real_time", "value": 171.86, "label": "Bogo ops/s"}, {"stage_name": "warmup", "subsystem": "memory", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 159.54, "label": "Bogo ops/s CPU"}, {"stage_name": "warmup", "subsystem": "memory", "metric_name": "stress.cpu_used_per_instance", "value": 107.73, "label": "CPU used, %"}, {"stage_name": "warmup", "subsystem": "memory", "metric_name": "stress.rss_max_kb", "value": 270748.0, "label": "RSS max, KB"}]} Task result for stage=warmup 2026-07-16 11:28:47.626372 2026-07-16 11:29:04.15612 +860 40 loader /usr/bin/stress-ng --timeout 24 --cpu-method all --vm-method all --sock 1 --sock-ops 50000 --syscall-method all --verify --metrics {"stage_name": "warmup", "subsystem": "network", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "24", "--cpu-method", "all", "--vm-method", "all", "--sock", "1", "--sock-ops", "50000", "--syscall-method", "all", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1125] setting to a 24 secs run per stressor\\nstress-ng: info: [1125] dispatching hogs: 1 sock\\nstress-ng: warn: [1137] sock: WARNING: finished prematurely after just 12.91 secs\\nstress-ng: metrc: [1125] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1125] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1125] sock 154 12.38 1.66 13.19 12.44 10.37 119.93 2256\\nstress-ng: metrc: [1125] miscellaneous metrics:\\nstress-ng: metrc: [1125] sock 6372.77 messages sent per sec (harmonic mean of 1 instance)\\nstress-ng: metrc: [1125] sock 110693.00 byte average out queue length (harmonic mean of 1 instance)\\nstress-ng: info: [1125] skipped: 0\\nstress-ng: info: [1125] passed: 1: sock (1)\\nstress-ng: info: [1125] failed: 0\\nstress-ng: info: [1125] metrics untrustworthy: 0\\nstress-ng: info: [1125] successful run completed in 12.41 secs", "stderr": "", "summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "warmup", "subsystem": "network", "metric_name": "stress.bogo_ops", "value": 154.0, "label": "Bogo ops"}, {"stage_name": "warmup", "subsystem": "network", "metric_name": "stress.real_time_secs", "value": 12.38, "label": "Real time, s"}, {"stage_name": "warmup", "subsystem": "network", "metric_name": "stress.usr_time_secs", "value": 1.66, "label": "User time, s"}, {"stage_name": "warmup", "subsystem": "network", "metric_name": "stress.sys_time_secs", "value": 13.19, "label": "System time, s"}, {"stage_name": "warmup", "subsystem": "network", "metric_name": "stress.bogo_ops_s_real_time", "value": 12.44, "label": "Bogo ops/s"}, {"stage_name": "warmup", "subsystem": "network", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 10.37, "label": "Bogo ops/s CPU"}, {"stage_name": "warmup", "subsystem": "network", "metric_name": "stress.cpu_used_per_instance", "value": 119.93, "label": "CPU used, %"}, {"stage_name": "warmup", "subsystem": "network", "metric_name": "stress.rss_max_kb", "value": 2256.0, "label": "RSS max, KB"}]} Task result for stage=warmup 2026-07-16 11:28:47.6266 2026-07-16 11:29:03.896651 +861 40 loader /usr/bin/stress-ng --timeout 24 --cpu-method all --vm-method all --syscall 1 --syscall-method all --verify --metrics --syscall-top 0 {"stage_name": "warmup", "subsystem": "syscalls", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "24", "--cpu-method", "all", "--vm-method", "all", "--syscall", "1", "--syscall-method", "all", "--verify", "--metrics", "--syscall-top", "0"], "returncode": 0, "stdout": "stress-ng: info: [1123] setting to a 24 secs run per stressor\\nstress-ng: info: [1123] dispatching hogs: 1 syscall\\nstress-ng: info: [1139] syscall: using method 'all'\\nstress-ng: info: [1139] syscall: 284 system call tests, 263 (92.6%) fastest non-failing tests fully exercised\\nstress-ng: info: [1139] syscall: Top 263 fastest system calls (timings in nanosecs):\\nstress-ng: info: [1139] syscall: System Call Avg (ns) Min (ns) Max (ns)\\nstress-ng: info: [1139] syscall: time 9425.0 2117 16733\\nstress-ng: info: [1139] syscall: gettimeofday 9487.5 2446 16529\\nstress-ng: info: [1139] syscall: getuid 29560.5 24370 34751\\nstress-ng: info: [1139] syscall: getppid 31724.5 25954 37495\\nstress-ng: info: [1139] syscall: getpid 33599.0 26064 41134\\nstress-ng: info: [1139] syscall: umask 34249.5 24040 44459\\nstress-ng: info: [1139] syscall: gettid 34556.0 25217 43895\\nstress-ng: info: [1139] syscall: getpgrp 34696.5 26440 42953\\nstress-ng: info: [1139] syscall: set_robust_list 35041.0 21860 48222\\nstress-ng: info: [1139] syscall: getresuid 36586.5 27773 45400\\nstress-ng: info: [1139] syscall: mq_setattr 37425.5 28416 46435\\nstress-ng: info: [1139] syscall: getgroups 38107.5 27569 48646\\nstress-ng: info: [1139] syscall: sigprocmask 38680.0 27977 49383\\nstress-ng: info: [1139] syscall: fcntl 38688.0 31223 46153\\nstress-ng: info: [1139] syscall: setrlimit 38797.0 29137 48457\\nstress-ng: info: [1139] syscall: getrlimit 38891.5 32023 45760\\nstress-ng: info: [1139] syscall: mq_getattr 39134.5 32258 46011\\nstress-ng: info: [1139] syscall: epoll_wait 39307.0 28102 50512\\nstress-ng: info: [1139] syscall: dup 39542.5 31866 47219\\nstress-ng: info: [1139] syscall: prlimit 40326.5 29874 50779\\nstress-ng: info: [1139] syscall: getresgid 40726.5 29122 52331\\nstress-ng: info: [1139] syscall: close 40945.5 34014 47877\\nstress-ng: info: [1139] syscall: lseek 42263.5 33685 50842\\nstress-ng: info: [1139] syscall: sched_getscheduler 43071.0 28526 57616\\nstress-ng: info: [1139] syscall: mq_notify 43557.0 35677 51437\\nstress-ng: info: [1139] syscall: uname 44027.5 33952 54103\\nstress-ng: info: [1139] syscall: getpriority 45227.0 27146 63308\\nstress-ng: info: [1139] syscall: geteuid 45894.0 23618 68170\\nstress-ng: info: [1139] syscall: sched_getaffinity 46701.0 33998 59404\\nstress-ng: info: [1139] syscall: getsockname 47948.0 35081 60815\\nstress-ng: info: [1139] syscall: msgsnd 48645.5 36492 60799\\nstress-ng: info: [1139] syscall: fchdir 50119.5 40036 60203\\nstress-ng: info: [1139] syscall: timerfd_settime 50512.0 38766 62258\\nstress-ng: info: [1139] syscall: fstat 50779.0 42593 58965\\nstress-ng: info: [1139] syscall: setpriority 52488.0 31286 73690\\nstress-ng: info: [1139] syscall: listen 52535.0 37496 67574\\nstress-ng: info: [1139] syscall: timer_delete 53060.5 43110 63011\\nstress-ng: info: [1139] syscall: setsockopt 54699.0 44600 64798\\nstress-ng: info: [1139] syscall: dup3 55028.0 26549 83507\\nstress-ng: info: [1139] syscall: sysinfo 55326.0 47532 63120\\nstress-ng: info: [1139] syscall: signal 55435.5 55012 55859\\nstress-ng: info: [1139] syscall: munlockall 55577.0 45415 65739\\nstress-ng: info: [1139] syscall: sched_yield 55922.5 48395 63450\\nstress-ng: info: [1139] syscall: getegid 56714.0 24683 88745\\nstress-ng: info: [1139] syscall: msgget 57616.0 40679 74553\\nstress-ng: info: [1139] syscall: semget 59348.5 43157 75540\\nstress-ng: info: [1139] syscall: fstatfs 59779.5 41635 77924\\nstress-ng: info: [1139] syscall: dup2 59843.0 30094 89592\\nstress-ng: info: [1139] syscall: sigaction 60227.5 35771 84684\\nstress-ng: info: [1139] syscall: poll 62414.5 42263 82566\\nstress-ng: info: [1139] syscall: mq_timedsend 62446.0 60627 64265\\nstress-ng: info: [1139] syscall: getrusage 64422.0 55891 72953\\nstress-ng: info: [1139] syscall: restart_syscall 66100.0 50010 82190\\nstress-ng: info: [1139] syscall: brk 66209.5 29294 103125\\nstress-ng: info: [1139] syscall: preadv2 66876.0 47438 86314\\nstress-ng: info: [1139] syscall: pkey_mprotect 67997.0 45462 90532\\nstress-ng: info: [1139] syscall: getcwd 68601.0 65064 72138\\nstress-ng: info: [1139] syscall: getcpu 68978.0 3780 134176\\nstress-ng: info: [1139] syscall: epoll_pwait 71361.5 40727 101996\\nstress-ng: info: [1139] syscall: flock 72365.0 53931 90799\\nstress-ng: info: [1139] syscall: ioprio_get 72600.0 62054 83146\\nstress-ng: info: [1139] syscall: mq_close 72968.5 66994 78943\\nstress-ng: info: [1139] syscall: membarrier 73180.5 21610 124751\\nstress-ng: info: [1139] syscall: ppoll 74152.5 55969 92336\\nstress-ng: info: [1139] syscall: iopl 74434.5 20904 127965\\nstress-ng: info: [1139] syscall: select 75250.5 59043 91458\\nstress-ng: info: [1139] syscall: epoll_ctl 75517.0 64658 86376\\nstress-ng: info: [1139] syscall: epoll_create1 77038.0 62869 91207\\nstress-ng: info: [1139] syscall: nice 78504.5 66664 90345\\nstress-ng: info: [1139] syscall: ioprio_set 78669.0 33967 123371\\nstress-ng: info: [1139] syscall: sched_get_priority_max 78732.0 48317 109147\\nstress-ng: info: [1139] syscall: munmap 85679.0 68938 102420\\nstress-ng: info: [1139] syscall: setuid 87051.0 56612 117490\\nstress-ng: info: [1139] syscall: mq_unlink 87890.0 72514 103266\\nstress-ng: info: [1139] syscall: lstat 88659.0 82002 95316\\nstress-ng: info: [1139] syscall: semtimedop 92956.0 37371 148541\\nstress-ng: info: [1139] syscall: madvise 94171.0 56001 132341\\nstress-ng: info: [1139] syscall: faccessat 97558.0 89529 105587\\nstress-ng: info: [1139] syscall: fstatat 98161.5 93496 102827\\nstress-ng: info: [1139] syscall: mq_timedreceive 100820.0 67073 134567\\nstress-ng: info: [1139] syscall: munlock 102757.0 85813 119701\\nstress-ng: info: [1139] syscall: getsid 103015.0 43549 162481\\nstress-ng: info: [1139] syscall: writev 103470.5 81923 125018\\nstress-ng: info: [1139] syscall: setresgid 105744.5 25970 185519\\nstress-ng: info: [1139] syscall: readlinkat 107696.5 76717 138676\\nstress-ng: info: [1139] syscall: getxattr 109562.5 97119 122006\\nstress-ng: info: [1139] syscall: getgid 111727.0 56189 167265\\nstress-ng: info: [1139] syscall: pselect 112150.0 58478 165822\\nstress-ng: info: [1139] syscall: fchown 112722.5 101369 124076\\nstress-ng: info: [1139] syscall: lremovexattr 114792.5 98107 131478\\nstress-ng: info: [1139] syscall: timer_getoverrun 115043.5 26550 203537\\nstress-ng: info: [1139] syscall: timerfd_create 116479.0 85436 147522\\nstress-ng: info: [1139] syscall: llistxattr 117670.0 62524 172816\\nstress-ng: info: [1139] syscall: inotify_add_watch 118470.0 106732 130208\\nstress-ng: info: [1139] syscall: getsockopt 119278.0 35975 202581\\nstress-ng: info: [1139] syscall: lgetxattr 119293.0 86753 151833\\nstress-ng: info: [1139] syscall: sigpending 122108.5 28150 216067\\nstress-ng: info: [1139] syscall: stat 122932.0 79712 166152\\nstress-ng: info: [1139] syscall: readv 124233.0 84950 163516\\nstress-ng: info: [1139] syscall: getpgid 125134.5 35990 214279\\nstress-ng: info: [1139] syscall: mq_open 127408.5 99879 154938\\nstress-ng: info: [1139] syscall: lsetxattr 128554.0 115248 141860\\nstress-ng: info: [1139] syscall: shmget 128914.5 93857 163972\\nstress-ng: info: [1139] syscall: statfs 131047.0 83679 178415\\nstress-ng: info: [1139] syscall: alarm 134473.5 119215 149732\\nstress-ng: info: [1139] syscall: sched_getparam 135916.0 64531 207301\\nstress-ng: info: [1139] syscall: setresuid 136661.0 69957 203365\\nstress-ng: info: [1139] syscall: clock_getres 139374.0 80292 198456\\nstress-ng: info: [1139] syscall: preadv 140683.5 58902 222465\\nstress-ng: info: [1139] syscall: utimes 141405.5 94093 188718\\nstress-ng: info: [1139] syscall: clock_gettime 141608.5 58023 225194\\nstress-ng: info: [1139] syscall: memfd_create 143114.5 113711 172518\\nstress-ng: info: [1139] syscall: getpeername 143554.0 122336 164772\\nstress-ng: info: [1139] syscall: sched_get_priority_min 145427.5 42420 248435\\nstress-ng: info: [1139] syscall: pipe2 146195.5 107390 185001\\nstress-ng: info: [1139] syscall: removexattr 147106.0 130961 163251\\nstress-ng: info: [1139] syscall: fchownat 148705.5 101589 195822\\nstress-ng: info: [1139] syscall: access 148940.5 89654 208227\\nstress-ng: info: [1139] syscall: readahead 149819.0 47846 251792\\nstress-ng: info: [1139] syscall: chdir 150752.0 54323 247181\\nstress-ng: info: [1139] syscall: pipe 161031.5 155441 166622\\nstress-ng: info: [1139] syscall: eventfd 162200.0 71150 253250\\nstress-ng: info: [1139] syscall: shmctl 162442.5 143161 181724\\nstress-ng: info: [1139] syscall: pread 166363.0 155644 177082\\nstress-ng: info: [1139] syscall: timer_gettime 167649.0 29451 305847\\nstress-ng: info: [1139] syscall: mlock2 168425.5 64736 272115\\nstress-ng: info: [1139] syscall: prctl 168597.5 48786 288409\\nstress-ng: info: [1139] syscall: setreuid 169264.0 55875 282653\\nstress-ng: info: [1139] syscall: kill 172110.5 164928 179293\\nstress-ng: info: [1139] syscall: inotify_init1 173231.5 103313 243150\\nstress-ng: info: [1139] syscall: futimes 173396.5 91050 255743\\nstress-ng: info: [1139] syscall: inotify_init 176634.5 108284 244985\\nstress-ng: info: [1139] syscall: get_robust_list 179606.5 31317 327896\\nstress-ng: info: [1139] syscall: shutdown 180257.5 85593 274922\\nstress-ng: info: [1139] syscall: fchmodat 187831.5 101008 274655\\nstress-ng: info: [1139] syscall: read 190184.5 177913 202456\\nstress-ng: info: [1139] syscall: mlockall 190325.5 27961 352690\\nstress-ng: info: [1139] syscall: fchmod 190364.5 137171 243558\\nstress-ng: info: [1139] syscall: times 193344.0 52253 334435\\nstress-ng: info: [1139] syscall: sync_file_range 195414.0 95519 295309\\nstress-ng: info: [1139] syscall: fremovexattr 196300.5 97715 294886\\nstress-ng: info: [1139] syscall: setregid 197742.5 54228 341257\\nstress-ng: info: [1139] syscall: setpgid 197836.5 34955 360718\\nstress-ng: info: [1139] syscall: sched_rr_get_interval 199256.5 55970 342543\\nstress-ng: info: [1139] syscall: mprotect 200119.0 69832 330406\\nstress-ng: info: [1139] syscall: name_to_handle_at 200996.5 51264 350729\\nstress-ng: info: [1139] syscall: fsetxattr 201616.5 135822 267411\\nstress-ng: info: [1139] syscall: sched_getattr 201929.5 31693 372166\\nstress-ng: info: [1139] syscall: setgid 203106.5 62681 343532\\nstress-ng: info: [1139] syscall: chmod 203333.5 157150 249517\\nstress-ng: info: [1139] syscall: inotify_rm_watch 214146.0 117693 310599\\nstress-ng: info: [1139] syscall: shmdt 214530.5 201750 227311\\nstress-ng: info: [1139] syscall: statx 216435.5 62038 370833\\nstress-ng: info: [1139] syscall: renameat 217400.5 204447 230354\\nstress-ng: info: [1139] syscall: epoll_create 217549.0 73251 361847\\nstress-ng: info: [1139] syscall: sigreturn 222089.5 161870 282309\\nstress-ng: info: [1139] syscall: socket 224276.5 222402 226151\\nstress-ng: info: [1139] syscall: sigaltstack 229609.0 165007 294211\\nstress-ng: info: [1139] syscall: bind 230699.0 191055 270343\\nstress-ng: info: [1139] syscall: setitimer 232376.5 194755 269998\\nstress-ng: info: [1139] syscall: signalfd 233404.0 91677 375131\\nstress-ng: info: [1139] syscall: chown 234101.5 113632 354571\\nstress-ng: info: [1139] syscall: mmap 241614.0 199461 283767\\nstress-ng: info: [1139] syscall: pwritev 244710.5 101196 388225\\nstress-ng: info: [1139] syscall: pwrite 247721.5 218513 276930\\nstress-ng: info: [1139] syscall: utimensat 248215.5 209026 287405\\nstress-ng: info: [1139] syscall: mlock 258926.5 159910 357943\\nstress-ng: info: [1139] syscall: clock_nanosleep 259067.5 255037 263098\\nstress-ng: info: [1139] syscall: lchown 265285.5 234447 296124\\nstress-ng: info: [1139] syscall: mknodat 266077.5 232706 299449\\nstress-ng: info: [1139] syscall: linkat 270319.5 253030 287609\\nstress-ng: info: [1139] syscall: futimesat 274365.5 264870 283861\\nstress-ng: info: [1139] syscall: sendmmsg 276271.0 263741 288801\\nstress-ng: info: [1139] syscall: readlink 281947.5 163469 400426\\nstress-ng: info: [1139] syscall: sched_setparam 282222.0 118854 445590\\nstress-ng: info: [1139] syscall: write 286190.0 274076 298304\\nstress-ng: info: [1139] syscall: timer_settime 286299.5 45886 526713\\nstress-ng: info: [1139] syscall: getitimer 288511.0 150156 426866\\nstress-ng: info: [1139] syscall: shmat 288660.0 174369 402951\\nstress-ng: info: [1139] syscall: listxattr 288918.5 76732 501105\\nstress-ng: info: [1139] syscall: recvfrom 298508.0 102106 494910\\nstress-ng: info: [1139] syscall: renameat2 298727.5 279360 318095\\nstress-ng: info: [1139] syscall: send 299174.5 237082 361267\\nstress-ng: info: [1139] syscall: sched_setscheduler 299731.5 188467 410996\\nstress-ng: info: [1139] syscall: mincore 308685.5 76999 540372\\nstress-ng: info: [1139] syscall: utime 311579.0 168974 454184\\nstress-ng: info: [1139] syscall: setxattr 318690.5 206689 430692\\nstress-ng: info: [1139] syscall: timerfd_gettime 319882.5 65739 574026\\nstress-ng: info: [1139] syscall: ftruncate 321223.5 241378 401069\\nstress-ng: info: [1139] syscall: sendmsg 325779.5 306789 344770\\nstress-ng: info: [1139] syscall: sched_setaffinity 335910.0 59984 611836\\nstress-ng: info: [1139] syscall: unlink 338168.0 291310 385026\\nstress-ng: info: [1139] syscall: sched_setattr 352541.0 44161 660921\\nstress-ng: info: [1139] syscall: recvmsg 354077.5 195368 512787\\nstress-ng: info: [1139] syscall: nanosleep 359276.0 158749 559803\\nstress-ng: info: [1139] syscall: chroot 365125.5 308796 421455\\nstress-ng: info: [1139] syscall: sendto 377992.5 328555 427430\\nstress-ng: info: [1139] syscall: process_vm_writev 382195.5 231076 533315\\nstress-ng: info: [1139] syscall: clock_adjtime 384007.0 384007 384007\\nstress-ng: info: [1139] syscall: flistxattr 384500.5 59780 709221\\nstress-ng: info: [1139] syscall: msgrcv 386767.0 47376 726158\\nstress-ng: info: [1139] syscall: unlinkat 396074.0 385073 407075\\nstress-ng: info: [1139] syscall: kcmp 398567.5 43722 753413\\nstress-ng: info: [1139] syscall: ioperm 418193.5 70302 766085\\nstress-ng: info: [1139] syscall: seccomp 428605.5 414915 442296\\nstress-ng: info: [1139] syscall: socketpair 434095.0 133187 735003\\nstress-ng: info: [1139] syscall: recv 440925.0 338200 543650\\nstress-ng: info: [1139] syscall: rename 449009.0 309925 588093\\nstress-ng: info: [1139] syscall: open 454403.0 326265 582541\\nstress-ng: info: [1139] syscall: tee 456191.5 52206 860177\\nstress-ng: info: [1139] syscall: truncate 456755.5 314253 599258\\nstress-ng: info: [1139] syscall: msgctl 462511.0 54589 870433\\nstress-ng: info: [1139] syscall: openat 467395.5 367807 566984\\nstress-ng: info: [1139] syscall: mkdirat 476060.5 452898 499223\\nstress-ng: info: [1139] syscall: fgetxattr 479087.0 90517 867657\\nstress-ng: info: [1139] syscall: connect 504374.0 300923 707825\\nstress-ng: info: [1139] syscall: semop 515187.5 45149 985226\\nstress-ng: info: [1139] syscall: rmdir 521805.0 465773 577837\\nstress-ng: info: [1139] syscall: timer_create 531645.5 61505 1001786\\nstress-ng: info: [1139] syscall: unshare 551200.5 455626 646775\\nstress-ng: info: [1139] syscall: vmsplice 554305.5 59215 1049396\\nstress-ng: info: [1139] syscall: creat 566130.0 555098 577162\\nstress-ng: info: [1139] syscall: getrandom 632003.0 118275 1145731\\nstress-ng: info: [1139] syscall: mknod 642408.0 463358 821458\\nstress-ng: info: [1139] syscall: getdents 648469.0 145891 1151047\\nstress-ng: info: [1139] syscall: symlinkat 655173.0 579844 730502\\nstress-ng: info: [1139] syscall: mkdir 679691.5 597863 761520\\nstress-ng: info: [1139] syscall: pause 747673.5 704642 790705\\nstress-ng: info: [1139] syscall: splice 780864.5 357441 1204288\\nstress-ng: info: [1139] syscall: symlink 799510.5 728823 870198\\nstress-ng: info: [1139] syscall: fallocate 826852.0 726989 926715\\nstress-ng: info: [1139] syscall: process_vm_readv 838386.0 225304 1451468\\nstress-ng: info: [1139] syscall: semctl 845632.0 57789 1633475\\nstress-ng: info: [1139] syscall: recvmmsg 849881.0 447205 1252557\\nstress-ng: info: [1139] syscall: link 900840.0 216020 1585660\\nstress-ng: info: [1139] syscall: remap_file_pages 907944.5 337086 1478803\\nstress-ng: info: [1139] syscall: open_by_handle_at 921697.5 125221 1718174\\nstress-ng: info: [1139] syscall: mremap 1053638.0 355559 1751717\\nstress-ng: info: [1139] syscall: vfork 1097446.0 800710 1394182\\nstress-ng: info: [1139] syscall: waitid 1268427.5 1212176 1324679\\nstress-ng: info: [1139] syscall: waitpid 1442906.0 1305359 1580453\\nstress-ng: info: [1139] syscall: wait4 1527706.5 1402619 1652794\\nstress-ng: info: [1139] syscall: wait3 1566810.5 1270843 1862778\\nstress-ng: info: [1139] syscall: sendfile 1567681.0 750763 2384599\\nstress-ng: info: [1139] syscall: accept4 1593594.5 1044456 2142733\\nstress-ng: info: [1139] syscall: exit 1728947.0 1661765 1796129\\nstress-ng: info: [1139] syscall: io_uring_setup 1906765.5 248545 3564986\\nstress-ng: info: [1139] syscall: wait 2066927.0 1733495 2400359\\nstress-ng: info: [1139] syscall: copy_file_range 2147289.0 275251 4019327\\nstress-ng: info: [1139] syscall: fsync 2375448.0 2319863 2431033\\nstress-ng: info: [1139] syscall: fork 2521980.5 2465580 2578381\\nstress-ng: info: [1139] syscall: clone 2926891.5 2901777 2952006\\nstress-ng: info: [1139] syscall: syncfs 3127943.5 2777230 3478657\\nstress-ng: info: [1139] syscall: clock_settime 3170975.0 3170975 3170975\\nstress-ng: info: [1139] syscall: msync 3285611.0 52661 6518561\\nstress-ng: info: [1139] syscall: pwritev2 4780934.5 4614352 4947517\\nstress-ng: info: [1139] syscall: accept 4979123.5 1540589 8417658\\nstress-ng: info: [1139] syscall: clone3 5865599.5 2477091 9254108\\nstress-ng: info: [1139] syscall: sync 8330443.0 4972624 11688262\\nstress-ng: info: [1139] syscall: fdatasync 12710630.0 11748324 13672936\\nstress-ng: info: [1139] syscall: execveat 33704585.5 33458722 33950449\\nstress-ng: info: [1139] syscall: execve 38623436.0 31789477 45457395\\nstress-ng: info: [1139] syscall: syslog 617892987.0 598571334 637214640\\nstress-ng: metrc: [1123] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1123] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1123] syscall 568 10.70 0.17 0.70 53.07 654.83 8.10 5000\\nstress-ng: info: [1123] skipped: 0\\nstress-ng: info: [1123] passed: 1: syscall (1)\\nstress-ng: info: [1123] failed: 0\\nstress-ng: info: [1123] metrics untrustworthy: 0\\nstress-ng: info: [1123] successful run completed in 10.73 secs", "stderr": "", "summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.bogo_ops", "value": 568.0, "label": "Bogo ops"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.real_time_secs", "value": 10.7, "label": "Real time, s"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.usr_time_secs", "value": 0.17, "label": "User time, s"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.sys_time_secs", "value": 0.7, "label": "System time, s"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.bogo_ops_s_real_time", "value": 53.07, "label": "Bogo ops/s"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 654.83, "label": "Bogo ops/s CPU"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.cpu_used_per_instance", "value": 8.1, "label": "CPU used, %"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.rss_max_kb", "value": 5000.0, "label": "RSS max, KB"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.syslog.avg_ns", "value": 617892987.0, "label": "Syscall syslog avg, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.syslog.min_ns", "value": 598571334.0, "label": "Syscall syslog min, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.syslog.max_ns", "value": 637214640.0, "label": "Syscall syslog max, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.execve.avg_ns", "value": 38623436.0, "label": "Syscall execve avg, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.execve.min_ns", "value": 31789477.0, "label": "Syscall execve min, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.execve.max_ns", "value": 45457395.0, "label": "Syscall execve max, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.execveat.avg_ns", "value": 33704585.5, "label": "Syscall execveat avg, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.execveat.min_ns", "value": 33458722.0, "label": "Syscall execveat min, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.execveat.max_ns", "value": 33950449.0, "label": "Syscall execveat max, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.fdatasync.avg_ns", "value": 12710630.0, "label": "Syscall fdatasync avg, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.fdatasync.min_ns", "value": 11748324.0, "label": "Syscall fdatasync min, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.fdatasync.max_ns", "value": 13672936.0, "label": "Syscall fdatasync max, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.sync.avg_ns", "value": 8330443.0, "label": "Syscall sync avg, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.sync.min_ns", "value": 4972624.0, "label": "Syscall sync min, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.sync.max_ns", "value": 11688262.0, "label": "Syscall sync max, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.clone3.avg_ns", "value": 5865599.5, "label": "Syscall clone3 avg, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.clone3.min_ns", "value": 2477091.0, "label": "Syscall clone3 min, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.clone3.max_ns", "value": 9254108.0, "label": "Syscall clone3 max, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.accept.avg_ns", "value": 4979123.5, "label": "Syscall accept avg, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.accept.min_ns", "value": 1540589.0, "label": "Syscall accept min, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.accept.max_ns", "value": 8417658.0, "label": "Syscall accept max, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.pwritev2.avg_ns", "value": 4780934.5, "label": "Syscall pwritev2 avg, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.pwritev2.min_ns", "value": 4614352.0, "label": "Syscall pwritev2 min, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.pwritev2.max_ns", "value": 4947517.0, "label": "Syscall pwritev2 max, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.msync.avg_ns", "value": 3285611.0, "label": "Syscall msync avg, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.msync.min_ns", "value": 52661.0, "label": "Syscall msync min, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.msync.max_ns", "value": 6518561.0, "label": "Syscall msync max, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.clock_settime.avg_ns", "value": 3170975.0, "label": "Syscall clock_settime avg, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.clock_settime.min_ns", "value": 3170975.0, "label": "Syscall clock_settime min, ns"}, {"stage_name": "warmup", "subsystem": "syscalls", "metric_name": "stress.syscall.clock_settime.max_ns", "value": 3170975.0, "label": "Syscall clock_settime max, ns"}]} Task result for stage=warmup 2026-07-16 11:28:47.626806 2026-07-16 11:29:05.490368 +862 40 loader /usr/bin/stress-ng --timeout 24 --cpu 1 --cpu-method matrixprod --vm-method all --syscall-method all --verify --metrics {"stage_name": "warmup", "subsystem": "system", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "24", "--cpu", "1", "--cpu-method", "matrixprod", "--vm-method", "all", "--syscall-method", "all", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1115] setting to a 24 secs run per stressor\\nstress-ng: info: [1115] dispatching hogs: 1 cpu\\nstress-ng: metrc: [1115] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1115] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1115] cpu 123 12.44 8.24 0.26 9.89 14.47 68.35 2768\\nstress-ng: info: [1115] skipped: 0\\nstress-ng: info: [1115] passed: 1: cpu (1)\\nstress-ng: info: [1115] failed: 0\\nstress-ng: info: [1115] metrics untrustworthy: 0\\nstress-ng: info: [1115] successful run completed in 12.46 secs", "stderr": "", "summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "warmup", "subsystem": "system", "metric_name": "stress.bogo_ops", "value": 123.0, "label": "Bogo ops"}, {"stage_name": "warmup", "subsystem": "system", "metric_name": "stress.real_time_secs", "value": 12.44, "label": "Real time, s"}, {"stage_name": "warmup", "subsystem": "system", "metric_name": "stress.usr_time_secs", "value": 8.24, "label": "User time, s"}, {"stage_name": "warmup", "subsystem": "system", "metric_name": "stress.sys_time_secs", "value": 0.26, "label": "System time, s"}, {"stage_name": "warmup", "subsystem": "system", "metric_name": "stress.bogo_ops_s_real_time", "value": 9.89, "label": "Bogo ops/s"}, {"stage_name": "warmup", "subsystem": "system", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 14.47, "label": "Bogo ops/s CPU"}, {"stage_name": "warmup", "subsystem": "system", "metric_name": "stress.cpu_used_per_instance", "value": 68.35, "label": "CPU used, %"}, {"stage_name": "warmup", "subsystem": "system", "metric_name": "stress.rss_max_kb", "value": 2768.0, "label": "RSS max, KB"}]} Task result for stage=warmup 2026-07-16 11:28:47.627195 2026-07-16 11:29:03.75548 +863 40 loader plan-stage {"stage_name": "main", "start_offset_sec": 24, "duration_sec": 72, "pattern": "balanced", "tasks": [{"subsystem": "IPC", "tool": "stress-ng", "args": {"mq": "@cpu:0.5", "pipe": "@cpu:0.5", "sem": "@cpu:0.5", "shm": "@cpu:0.5", "timeout_sec": 72}}, {"subsystem": "file", "tool": "fio", "args": {"readwrite": "randrw", "bs": "16k", "numjobs": 2, "iodepth": 4, "size": "@avail_ratio:0.05", "runtime_sec": 72}}, {"subsystem": "memory", "tool": "stress-ng", "args": {"vm": "@cpu:0.5", "vm_method": "all", "vm_bytes": "20%", "timeout_sec": 72}}, {"subsystem": "network", "tool": "stress-ng", "args": {"sock": "@cpu:0.5", "sock_ops": 150000, "timeout_sec": 72}}, {"subsystem": "syscalls", "tool": "stress-ng", "args": {"syscall": "@cpu:0.5", "timeout_sec": 72}}, {"subsystem": "system", "tool": "stress-ng", "args": {"cpu": 0, "cpu_method": "all", "timeout_sec": 72}}]} Planned stage 2026-07-16 11:29:12.600815 2026-07-16 11:29:12.600815 +864 40 loader /usr/bin/stress-ng --timeout 72 --cpu-method all --vm-method all --syscall-method all --mq 2 --pipe 2 --sem 2 --shm 2 --verify --metrics {"stage_name": "main", "subsystem": "IPC", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "72", "--cpu-method", "all", "--vm-method", "all", "--syscall-method", "all", "--mq", "2", "--pipe", "2", "--sem", "2", "--shm", "2", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1270] setting to a 1 min, 12 secs run per stressor\\nstress-ng: info: [1270] dispatching hogs: 2 mq, 2 pipe, 2 sem, 2 shm\\nstress-ng: metrc: [1270] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1270] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1270] mq 193113 48.76 12.97 23.97 3960.79 5227.70 37.88 2216\\nstress-ng: metrc: [1270] pipe 288488 48.76 7.31 36.97 5916.69 6515.54 45.40 2340\\nstress-ng: metrc: [1270] sem 938370 48.77 13.46 36.54 19240.66 18765.02 51.27 2940\\nstress-ng: metrc: [1270] shm 180 49.34 2.03 24.03 3.65 6.91 26.41 132816\\nstress-ng: metrc: [1270] miscellaneous metrics:\\nstress-ng: metrc: [1270] pipe 11.56 MB per sec pipe write rate (harmonic mean of 2 instances)\\nstress-ng: metrc: [1270] sem 3201.63 sem_trywait calls per sec (harmonic mean of 2 instances)\\nstress-ng: metrc: [1270] sem 3205.74 sem_timedwait calls per sec (harmonic mean of 2 instances)\\nstress-ng: metrc: [1270] sem 3203.48 sem_wait calls per sec (harmonic mean of 2 instances)\\nstress-ng: info: [1270] skipped: 0\\nstress-ng: info: [1270] passed: 8: mq (2) pipe (2) sem (2) shm (2)\\nstress-ng: info: [1270] failed: 0\\nstress-ng: info: [1270] metrics untrustworthy: 0\\nstress-ng: info: [1270] successful run completed in 49.48 secs", "stderr": "", "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 193113.0, "label": "Bogo ops"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 48.76, "label": "Real time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 12.97, "label": "User time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 23.97, "label": "System time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 3960.79, "label": "Bogo ops/s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 5227.7, "label": "Bogo ops/s CPU"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 37.88, "label": "CPU used, %"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 2216.0, "label": "RSS max, KB"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 288488.0, "label": "Bogo ops"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 48.76, "label": "Real time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 7.31, "label": "User time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 36.97, "label": "System time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 5916.69, "label": "Bogo ops/s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 6515.54, "label": "Bogo ops/s CPU"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 45.4, "label": "CPU used, %"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 2340.0, "label": "RSS max, KB"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 938370.0, "label": "Bogo ops"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 48.77, "label": "Real time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 13.46, "label": "User time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 36.54, "label": "System time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 19240.66, "label": "Bogo ops/s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 18765.02, "label": "Bogo ops/s CPU"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 51.27, "label": "CPU used, %"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 2940.0, "label": "RSS max, KB"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 180.0, "label": "Bogo ops"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 49.34, "label": "Real time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 2.03, "label": "User time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 24.03, "label": "System time, s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 3.65, "label": "Bogo ops/s"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 6.91, "label": "Bogo ops/s CPU"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 26.41, "label": "CPU used, %"}, {"stage_name": "main", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 132816.0, "label": "RSS max, KB"}]} Task result for stage=main 2026-07-16 11:29:12.602685 2026-07-16 11:29:59.830512 +866 40 loader /usr/bin/stress-ng --timeout 72 --cpu-method all --vm 2 --vm-method all --vm-bytes 20% --syscall-method all --verify --metrics {"stage_name": "main", "subsystem": "memory", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "72", "--cpu-method", "all", "--vm", "2", "--vm-method", "all", "--vm-bytes", "20%", "--syscall-method", "all", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1272] setting to a 1 min, 12 secs run per stressor\\nstress-ng: info: [1272] dispatching hogs: 2 vm\\nstress-ng: metrc: [1272] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1272] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1272] vm 4230 46.19 5.49 22.84 91.57 149.33 30.66 272164\\nstress-ng: info: [1272] skipped: 0\\nstress-ng: info: [1272] passed: 2: vm (2)\\nstress-ng: info: [1272] failed: 0\\nstress-ng: info: [1272] metrics untrustworthy: 0\\nstress-ng: info: [1272] successful run completed in 42.93 secs", "stderr": "", "summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "main", "subsystem": "memory", "metric_name": "stress.bogo_ops", "value": 4230.0, "label": "Bogo ops"}, {"stage_name": "main", "subsystem": "memory", "metric_name": "stress.real_time_secs", "value": 46.19, "label": "Real time, s"}, {"stage_name": "main", "subsystem": "memory", "metric_name": "stress.usr_time_secs", "value": 5.49, "label": "User time, s"}, {"stage_name": "main", "subsystem": "memory", "metric_name": "stress.sys_time_secs", "value": 22.84, "label": "System time, s"}, {"stage_name": "main", "subsystem": "memory", "metric_name": "stress.bogo_ops_s_real_time", "value": 91.57, "label": "Bogo ops/s"}, {"stage_name": "main", "subsystem": "memory", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 149.33, "label": "Bogo ops/s CPU"}, {"stage_name": "main", "subsystem": "memory", "metric_name": "stress.cpu_used_per_instance", "value": 30.66, "label": "CPU used, %"}, {"stage_name": "main", "subsystem": "memory", "metric_name": "stress.rss_max_kb", "value": 272164.0, "label": "RSS max, KB"}]} Task result for stage=main 2026-07-16 11:29:12.603103 2026-07-16 11:30:01.163379 +867 40 loader /usr/bin/stress-ng --timeout 72 --cpu-method all --vm-method all --sock 2 --sock-ops 150000 --syscall-method all --verify --metrics {"stage_name": "main", "subsystem": "network", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "72", "--cpu-method", "all", "--vm-method", "all", "--sock", "2", "--sock-ops", "150000", "--syscall-method", "all", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1269] setting to a 1 min, 12 secs run per stressor\\nstress-ng: info: [1269] dispatching hogs: 2 sock\\nstress-ng: warn: [1274] sock: WARNING: finished prematurely after just 49.47 secs\\nstress-ng: warn: [1275] sock: WARNING: finished prematurely after just 49.48 secs\\nstress-ng: metrc: [1269] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1269] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1269] sock 502 48.96 5.55 35.14 10.25 12.33 41.56 2160\\nstress-ng: metrc: [1269] miscellaneous metrics:\\nstress-ng: metrc: [1269] sock 2620.81 messages sent per sec (harmonic mean of 2 instances)\\nstress-ng: metrc: [1269] sock 132763.71 byte average out queue length (harmonic mean of 2 instances)\\nstress-ng: info: [1269] skipped: 0\\nstress-ng: info: [1269] passed: 2: sock (2)\\nstress-ng: info: [1269] failed: 0\\nstress-ng: info: [1269] metrics untrustworthy: 0\\nstress-ng: info: [1269] successful run completed in 49.00 secs", "stderr": "", "summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "main", "subsystem": "network", "metric_name": "stress.bogo_ops", "value": 502.0, "label": "Bogo ops"}, {"stage_name": "main", "subsystem": "network", "metric_name": "stress.real_time_secs", "value": 48.96, "label": "Real time, s"}, {"stage_name": "main", "subsystem": "network", "metric_name": "stress.usr_time_secs", "value": 5.55, "label": "User time, s"}, {"stage_name": "main", "subsystem": "network", "metric_name": "stress.sys_time_secs", "value": 35.14, "label": "System time, s"}, {"stage_name": "main", "subsystem": "network", "metric_name": "stress.bogo_ops_s_real_time", "value": 10.25, "label": "Bogo ops/s"}, {"stage_name": "main", "subsystem": "network", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 12.33, "label": "Bogo ops/s CPU"}, {"stage_name": "main", "subsystem": "network", "metric_name": "stress.cpu_used_per_instance", "value": 41.56, "label": "CPU used, %"}, {"stage_name": "main", "subsystem": "network", "metric_name": "stress.rss_max_kb", "value": 2160.0, "label": "RSS max, KB"}]} Task result for stage=main 2026-07-16 11:29:12.603519 2026-07-16 11:29:59.430213 +868 40 loader /usr/bin/stress-ng --timeout 72 --cpu-method all --vm-method all --syscall 2 --syscall-method all --verify --metrics --syscall-top 0 {"stage_name": "main", "subsystem": "syscalls", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "72", "--cpu-method", "all", "--vm-method", "all", "--syscall", "2", "--syscall-method", "all", "--verify", "--metrics", "--syscall-top", "0"], "returncode": 0, "stdout": "stress-ng: info: [1271] setting to a 1 min, 12 secs run per stressor\\nstress-ng: info: [1271] dispatching hogs: 2 syscall\\nstress-ng: info: [1305] syscall: using method 'all'\\nstress-ng: info: [1305] syscall: 284 system call tests, 263 (92.6%) fastest non-failing tests fully exercised\\nstress-ng: info: [1305] syscall: Top 263 fastest system calls (timings in nanosecs):\\nstress-ng: info: [1305] syscall: System Call Avg (ns) Min (ns) Max (ns)\\nstress-ng: info: [1305] syscall: gettimeofday 2038.5 1286 2791\\nstress-ng: info: [1305] syscall: time 2376.0 2321 2431\\nstress-ng: info: [1305] syscall: getcpu 4798.0 4750 4846\\nstress-ng: info: [1305] syscall: iopl 21699.5 21484 21915\\nstress-ng: info: [1305] syscall: getuid 23119.5 22606 23633\\nstress-ng: info: [1305] syscall: membarrier 23636.5 22386 24887\\nstress-ng: info: [1305] syscall: getpid 24271.5 23201 25342\\nstress-ng: info: [1305] syscall: getgid 24498.5 23890 25107\\nstress-ng: info: [1305] syscall: getppid 25831.5 24800 26863\\nstress-ng: info: [1305] syscall: restart_syscall 26228.0 25185 27271\\nstress-ng: info: [1305] syscall: geteuid 26482.5 23750 29215\\nstress-ng: info: [1305] syscall: getgroups 26490.0 25709 27271\\nstress-ng: info: [1305] syscall: clock_gettime 26738.0 26581 26895\\nstress-ng: info: [1305] syscall: sched_getscheduler 26965.0 26016 27914\\nstress-ng: info: [1305] syscall: getpgrp 26976.5 25505 28448\\nstress-ng: info: [1305] syscall: getegid 27164.0 27145 27183\\nstress-ng: info: [1305] syscall: mlockall 27187.5 27026 27349\\nstress-ng: info: [1305] syscall: setresgid 27427.5 27396 27459\\nstress-ng: info: [1305] syscall: getresuid 27454.5 26848 28061\\nstress-ng: info: [1305] syscall: setresuid 27576.5 27318 27835\\nstress-ng: info: [1305] syscall: gettid 27611.0 25264 29958\\nstress-ng: info: [1305] syscall: umask 27671.0 27506 27836\\nstress-ng: info: [1305] syscall: mq_setattr 28473.5 28228 28719\\nstress-ng: info: [1305] syscall: timer_getoverrun 28502.0 28071 28933\\nstress-ng: info: [1305] syscall: setrlimit 29654.5 28996 30313\\nstress-ng: info: [1305] syscall: getsid 29955.5 29833 30078\\nstress-ng: info: [1305] syscall: clock_getres 29984.0 29529 30439\\nstress-ng: info: [1305] syscall: brk 30235.0 29263 31207\\nstress-ng: info: [1305] syscall: sched_get_priority_min 31591.5 20888 42295\\nstress-ng: info: [1305] syscall: sigpending 31811.0 24856 38766\\nstress-ng: info: [1305] syscall: mq_getattr 31923.0 31839 32007\\nstress-ng: info: [1305] syscall: dup 32195.0 31489 32901\\nstress-ng: info: [1305] syscall: timer_gettime 32642.5 32494 32791\\nstress-ng: info: [1305] syscall: ioprio_get 32644.0 31944 33344\\nstress-ng: info: [1305] syscall: signal 32854.0 25609 40099\\nstress-ng: info: [1305] syscall: sched_getattr 32869.5 31897 33842\\nstress-ng: info: [1305] syscall: prlimit 32876.5 29417 36336\\nstress-ng: info: [1305] syscall: getrlimit 33130.5 32513 33748\\nstress-ng: info: [1305] syscall: sigprocmask 33214.0 25483 40945\\nstress-ng: info: [1305] syscall: sched_getaffinity 33418.5 33309 33528\\nstress-ng: info: [1305] syscall: sched_getparam 33818.0 29388 38248\\nstress-ng: info: [1305] syscall: prctl 34358.0 29511 39205\\nstress-ng: info: [1305] syscall: getsockname 34439.5 33701 35178\\nstress-ng: info: [1305] syscall: getitimer 34580.0 31599 37561\\nstress-ng: info: [1305] syscall: get_robust_list 34588.5 32886 36291\\nstress-ng: info: [1305] syscall: shutdown 34775.0 32964 36586\\nstress-ng: info: [1305] syscall: getsockopt 35082.0 33920 36244\\nstress-ng: info: [1305] syscall: getpriority 35624.5 25740 45509\\nstress-ng: info: [1305] syscall: msgsnd 35726.0 34771 36681\\nstress-ng: info: [1305] syscall: lseek 35952.0 32149 39755\\nstress-ng: info: [1305] syscall: mq_notify 36046.5 35959 36134\\nstress-ng: info: [1305] syscall: setpriority 36076.0 33747 38405\\nstress-ng: info: [1305] syscall: listen 37049.5 33074 41025\\nstress-ng: info: [1305] syscall: getpgid 37247.0 32905 41589\\nstress-ng: info: [1305] syscall: sigaltstack 37715.5 28965 46466\\nstress-ng: info: [1305] syscall: setpgid 38256.5 37716 38797\\nstress-ng: info: [1305] syscall: fchdir 39087.5 37778 40397\\nstress-ng: info: [1305] syscall: semtimedop 39503.5 37575 41432\\nstress-ng: info: [1305] syscall: mq_timedsend 40107.5 39864 40351\\nstress-ng: info: [1305] syscall: sigaction 40256.0 30878 49634\\nstress-ng: info: [1305] syscall: epoll_wait 40554.0 28557 52551\\nstress-ng: info: [1305] syscall: setitimer 40796.5 33700 47893\\nstress-ng: info: [1305] syscall: timer_settime 40812.0 39126 42498\\nstress-ng: info: [1305] syscall: timerfd_gettime 41173.0 40961 41385\\nstress-ng: info: [1305] syscall: timerfd_settime 41455.0 39330 43580\\nstress-ng: info: [1305] syscall: fstatfs 42036.5 41793 42280\\nstress-ng: info: [1305] syscall: epoll_pwait 42294.5 40272 44317\\nstress-ng: info: [1305] syscall: fstat 43313.0 40820 45806\\nstress-ng: info: [1305] syscall: timer_delete 43588.0 42153 45023\\nstress-ng: info: [1305] syscall: uname 43588.0 35206 51970\\nstress-ng: info: [1305] syscall: dup2 44082.5 29812 58353\\nstress-ng: info: [1305] syscall: semop 44583.5 43815 45352\\nstress-ng: info: [1305] syscall: readahead 45909.5 41589 50230\\nstress-ng: info: [1305] syscall: setsockopt 46058.5 44240 47877\\nstress-ng: info: [1305] syscall: semget 46850.0 42263 51437\\nstress-ng: info: [1305] syscall: poll 47734.0 41459 54009\\nstress-ng: info: [1305] syscall: kcmp 48181.0 39864 56498\\nstress-ng: info: [1305] syscall: pkey_mprotect 48785.0 43059 54511\\nstress-ng: info: [1305] syscall: ioprio_set 49441.5 31019 67864\\nstress-ng: info: [1305] syscall: mq_timedreceive 49507.5 49287 49728\\nstress-ng: info: [1305] syscall: sync_file_range 49594.5 47454 51735\\nstress-ng: info: [1305] syscall: sched_setattr 50065.0 45572 54558\\nstress-ng: info: [1305] syscall: munlockall 50658.5 49790 51527\\nstress-ng: info: [1305] syscall: msgrcv 51515.0 47453 55577\\nstress-ng: info: [1305] syscall: flock 51913.5 51029 52798\\nstress-ng: info: [1305] syscall: msgctl 52768.0 48756 56780\\nstress-ng: info: [1305] syscall: setreuid 53750.5 52222 55279\\nstress-ng: info: [1305] syscall: getcwd 53998.5 51076 56921\\nstress-ng: info: [1305] syscall: preadv2 55731.5 47653 63810\\nstress-ng: info: [1305] syscall: pselect 55888.0 55587 56189\\nstress-ng: info: [1305] syscall: setuid 56439.5 55922 56957\\nstress-ng: info: [1305] syscall: setregid 56620.5 55154 58087\\nstress-ng: info: [1305] syscall: name_to_handle_at 56978.0 53444 60512\\nstress-ng: info: [1305] syscall: chdir 56996.0 54620 59372\\nstress-ng: info: [1305] syscall: getrusage 59909.0 52692 67126\\nstress-ng: info: [1305] syscall: splice 60556.0 42859 78253\\nstress-ng: info: [1305] syscall: preadv 61259.5 59147 63372\\nstress-ng: info: [1305] syscall: statfs 61615.0 58024 65206\\nstress-ng: info: [1305] syscall: setgid 62728.0 59466 65990\\nstress-ng: info: [1305] syscall: madvise 62739.5 57239 68240\\nstress-ng: info: [1305] syscall: epoll_create1 63340.0 62650 64030\\nstress-ng: info: [1305] syscall: llistxattr 63399.0 62932 63866\\nstress-ng: info: [1305] syscall: statx 63582.5 60815 66350\\nstress-ng: info: [1305] syscall: ppoll 63956.5 57924 69989\\nstress-ng: info: [1305] syscall: timer_create 64586.5 63747 65426\\nstress-ng: info: [1305] syscall: epoll_ctl 64689.0 64689 64689\\nstress-ng: info: [1305] syscall: semctl 65128.0 57475 72781\\nstress-ng: info: [1305] syscall: mincore 66454.0 53774 79134\\nstress-ng: info: [1305] syscall: tee 66774.5 46780 86769\\nstress-ng: info: [1305] syscall: lstat 66966.0 66640 67292\\nstress-ng: info: [1305] syscall: sched_setaffinity 67190.0 58243 76137\\nstress-ng: info: [1305] syscall: clock_adjtime 67919.0 67919 67919\\nstress-ng: info: [1305] syscall: times 68679.5 54636 82723\\nstress-ng: info: [1305] syscall: sysinfo 68898.5 48300 89497\\nstress-ng: info: [1305] syscall: mprotect 69184.0 69079 69289\\nstress-ng: info: [1305] syscall: mq_close 71009.0 57867 84151\\nstress-ng: info: [1305] syscall: fstatat 73041.5 72749 73334\\nstress-ng: info: [1305] syscall: nice 74188.5 67371 81006\\nstress-ng: info: [1305] syscall: mlock2 74248.0 67496 81000\\nstress-ng: info: [1305] syscall: eventfd 74301.5 74004 74599\\nstress-ng: info: [1305] syscall: select 76858.0 58871 94845\\nstress-ng: info: [1305] syscall: listxattr 77322.5 75776 78869\\nstress-ng: info: [1305] syscall: munlock 77340.5 73918 80763\\nstress-ng: info: [1305] syscall: timerfd_create 80307.5 80182 80433\\nstress-ng: info: [1305] syscall: munmap 83957.5 79555 88360\\nstress-ng: info: [1305] syscall: faccessat 84550.0 81610 87490\\nstress-ng: info: [1305] syscall: mq_unlink 85053.5 76626 93481\\nstress-ng: info: [1305] syscall: fgetxattr 86374.5 76967 95782\\nstress-ng: info: [1305] syscall: stat 87552.5 79131 95974\\nstress-ng: info: [1305] syscall: shmget 91120.5 86612 95629\\nstress-ng: info: [1305] syscall: lgetxattr 91392.5 82299 100486\\nstress-ng: info: [1305] syscall: msgget 93344.0 38578 148110\\nstress-ng: info: [1305] syscall: pipe2 96566.0 86620 106512\\nstress-ng: info: [1305] syscall: set_robust_list 97417.0 21531 173303\\nstress-ng: info: [1305] syscall: getxattr 98823.5 83946 113701\\nstress-ng: info: [1305] syscall: fchmodat 99745.5 95378 104113\\nstress-ng: info: [1305] syscall: close 101486.5 31756 171217\\nstress-ng: info: [1305] syscall: inotify_init 101757.0 91286 112228\\nstress-ng: info: [1305] syscall: access 102623.5 59027 146220\\nstress-ng: info: [1305] syscall: lremovexattr 106345.0 103009 109681\\nstress-ng: info: [1305] syscall: lsetxattr 107402.0 102984 111820\\nstress-ng: info: [1305] syscall: sched_get_priority_max 108018.5 22081 193956\\nstress-ng: info: [1305] syscall: inotify_rm_watch 108348.5 91097 125600\\nstress-ng: info: [1305] syscall: futimes 112285.5 104584 119987\\nstress-ng: info: [1305] syscall: sched_setscheduler 112942.0 98828 127056\\nstress-ng: info: [1305] syscall: epoll_create 113350.0 80041 146659\\nstress-ng: info: [1305] syscall: alarm 113444.5 110277 116612\\nstress-ng: info: [1305] syscall: mq_open 114474.5 114030 114919\\nstress-ng: info: [1305] syscall: memfd_create 115005.0 103987 126023\\nstress-ng: info: [1305] syscall: fchmod 117819.5 115859 119780\\nstress-ng: info: [1305] syscall: fchownat 118799.5 112472 125127\\nstress-ng: info: [1305] syscall: getpeername 119294.0 110920 127668\\nstress-ng: info: [1305] syscall: sched_yield 122234.0 45761 198707\\nstress-ng: info: [1305] syscall: shmdt 123237.0 108394 138080\\nstress-ng: info: [1305] syscall: ioperm 123835.5 74698 172973\\nstress-ng: info: [1305] syscall: shmctl 128514.5 101635 155394\\nstress-ng: info: [1305] syscall: pipe 128877.5 116601 141154\\nstress-ng: info: [1305] syscall: mmap 133454.5 130397 136512\\nstress-ng: info: [1305] syscall: socketpair 135328.0 119011 151645\\nstress-ng: info: [1305] syscall: socket 135627.0 116440 154814\\nstress-ng: info: [1305] syscall: utimes 136222.0 97119 175325\\nstress-ng: info: [1305] syscall: pwritev 138110.5 75102 201119\\nstress-ng: info: [1305] syscall: futimesat 141381.0 133986 148776\\nstress-ng: info: [1305] syscall: fremovexattr 142498.0 126601 158395\\nstress-ng: info: [1305] syscall: pread 142614.0 138818 146410\\nstress-ng: info: [1305] syscall: inotify_init1 147951.5 74552 221351\\nstress-ng: info: [1305] syscall: getdents 148756.0 143820 153692\\nstress-ng: info: [1305] syscall: getresgid 151792.0 28871 274713\\nstress-ng: info: [1305] syscall: flistxattr 152337.0 52331 252343\\nstress-ng: info: [1305] syscall: dup3 154899.5 26346 283453\\nstress-ng: info: [1305] syscall: shmat 158914.0 138096 179732\\nstress-ng: info: [1305] syscall: read 160184.0 152210 168158\\nstress-ng: info: [1305] syscall: sched_rr_get_interval 162615.0 51014 274216\\nstress-ng: info: [1305] syscall: unshare 163893.0 115624 212162\\nstress-ng: info: [1305] syscall: writev 166292.5 127213 205372\\nstress-ng: info: [1305] syscall: mremap 168073.5 165276 170871\\nstress-ng: info: [1305] syscall: chmod 171491.0 170260 172722\\nstress-ng: info: [1305] syscall: signalfd 171820.5 67527 276114\\nstress-ng: info: [1305] syscall: readv 176682.0 106466 246898\\nstress-ng: info: [1305] syscall: sigreturn 178548.0 114902 242194\\nstress-ng: info: [1305] syscall: fchown 184083.5 109304 258863\\nstress-ng: info: [1305] syscall: sched_setparam 186342.0 179748 192936\\nstress-ng: info: [1305] syscall: setxattr 195437.5 178587 212288\\nstress-ng: info: [1305] syscall: fsetxattr 198128.0 124392 271864\\nstress-ng: info: [1305] syscall: kill 198219.0 163345 233093\\nstress-ng: info: [1305] syscall: open_by_handle_at 205522.0 95253 315791\\nstress-ng: info: [1305] syscall: inotify_add_watch 213130.5 141373 284888\\nstress-ng: info: [1305] syscall: process_vm_readv 215100.5 209183 221018\\nstress-ng: info: [1305] syscall: readlinkat 215283.5 115687 314880\\nstress-ng: info: [1305] syscall: sendmsg 218521.5 193156 243887\\nstress-ng: info: [1305] syscall: utimensat 221791.5 104113 339470\\nstress-ng: info: [1305] syscall: readlink 225328.0 184139 266517\\nstress-ng: info: [1305] syscall: chown 225421.5 145576 305267\\nstress-ng: info: [1305] syscall: utime 226543.0 159173 293913\\nstress-ng: info: [1305] syscall: sendmmsg 227672.0 150187 305157\\nstress-ng: info: [1305] syscall: send 228056.0 215879 240233\\nstress-ng: info: [1305] syscall: process_vm_writev 228376.5 184795 271958\\nstress-ng: info: [1305] syscall: link 232446.0 196324 268568\\nstress-ng: info: [1305] syscall: removexattr 235395.5 151755 319036\\nstress-ng: info: [1305] syscall: mknodat 236909.0 214514 259304\\nstress-ng: info: [1305] syscall: vmsplice 244616.5 128483 360750\\nstress-ng: info: [1305] syscall: unlinkat 249627.0 248121 251133\\nstress-ng: info: [1305] syscall: sendto 261506.5 255900 267113\\nstress-ng: info: [1305] syscall: lchown 268375.0 173036 363714\\nstress-ng: info: [1305] syscall: mlock 281354.0 208105 354603\\nstress-ng: info: [1305] syscall: linkat 290343.5 263772 316915\\nstress-ng: info: [1305] syscall: pwrite 297805.5 170307 425304\\nstress-ng: info: [1305] syscall: pause 300298.0 139947 460649\\nstress-ng: info: [1305] syscall: bind 300703.5 157542 443865\\nstress-ng: info: [1305] syscall: io_uring_setup 307096.5 279721 334472\\nstress-ng: info: [1305] syscall: nanosleep 310266.5 231853 388680\\nstress-ng: info: [1305] syscall: mknod 322840.0 216099 429581\\nstress-ng: info: [1305] syscall: recvmsg 331009.5 196293 465726\\nstress-ng: info: [1305] syscall: write 336780.0 298367 375193\\nstress-ng: info: [1305] syscall: rename 338481.5 314817 362146\\nstress-ng: info: [1305] syscall: openat 345307.0 263757 426857\\nstress-ng: info: [1305] syscall: clock_nanosleep 346573.5 336302 356845\\nstress-ng: info: [1305] syscall: chroot 349294.5 195979 502610\\nstress-ng: info: [1305] syscall: unlink 356461.0 303479 409443\\nstress-ng: info: [1305] syscall: copy_file_range 363385.0 274499 452271\\nstress-ng: info: [1305] syscall: renameat 374534.5 208336 540733\\nstress-ng: info: [1305] syscall: truncate 387182.0 354493 419871\\nstress-ng: info: [1305] syscall: renameat2 393541.0 307446 479636\\nstress-ng: info: [1305] syscall: connect 397979.5 303903 492056\\nstress-ng: info: [1305] syscall: ftruncate 414111.5 365565 462658\\nstress-ng: info: [1305] syscall: open 436333.5 281697 590970\\nstress-ng: info: [1305] syscall: recvfrom 464714.5 285523 643906\\nstress-ng: info: [1305] syscall: seccomp 494345.5 424388 564303\\nstress-ng: info: [1305] syscall: recv 510114.0 285680 734548\\nstress-ng: info: [1305] syscall: fallocate 526266.5 468784 583749\\nstress-ng: info: [1305] syscall: getrandom 560296.0 116157 1004435\\nstress-ng: info: [1305] syscall: creat 603704.5 572333 635076\\nstress-ng: info: [1305] syscall: remap_file_pages 627432.0 194756 1060108\\nstress-ng: info: [1305] syscall: mkdirat 656478.5 635578 677379\\nstress-ng: info: [1305] syscall: symlinkat 657776.0 641882 673670\\nstress-ng: info: [1305] syscall: rmdir 670651.0 448836 892466\\nstress-ng: info: [1305] syscall: mkdir 671229.0 588328 754130\\nstress-ng: info: [1305] syscall: recvmmsg 761042.5 265215 1256870\\nstress-ng: info: [1305] syscall: symlink 818314.0 750105 886523\\nstress-ng: info: [1305] syscall: accept4 835477.0 835477 835477\\nstress-ng: info: [1305] syscall: vfork 886969.5 777768 996171\\nstress-ng: info: [1305] syscall: fcntl 933482.5 29012 1837953\\nstress-ng: info: [1305] syscall: sendfile 1000633.5 832875 1168392\\nstress-ng: info: [1305] syscall: waitid 1358490.0 1262422 1454558\\nstress-ng: info: [1305] syscall: wait3 1375692.5 1222981 1528404\\nstress-ng: info: [1305] syscall: waitpid 1448026.5 1276645 1619408\\nstress-ng: info: [1305] syscall: wait4 1552375.0 1525551 1579199\\nstress-ng: info: [1305] syscall: wait 1599029.0 1484338 1713720\\nstress-ng: info: [1305] syscall: exit 1872053.5 1609497 2134610\\nstress-ng: info: [1305] syscall: fork 2688800.0 2200930 3176670\\nstress-ng: info: [1305] syscall: syncfs 4397947.0 3845570 4950324\\nstress-ng: info: [1305] syscall: clone3 5516234.5 2630697 8401772\\nstress-ng: info: [1305] syscall: accept 6859450.0 919329 12799571\\nstress-ng: info: [1305] syscall: clone 10844787.0 2950784 18738790\\nstress-ng: info: [1305] syscall: clock_settime 15623439.0 15623439 15623439\\nstress-ng: info: [1305] syscall: execveat 35968071.5 30423428 41512715\\nstress-ng: info: [1305] syscall: execve 37099931.5 30454024 43745839\\nstress-ng: info: [1305] syscall: fsync 212608680.5 3400827 421816534\\nstress-ng: info: [1305] syscall: syslog 748990799.0 455912570 1042069028\\nstress-ng: info: [1305] syscall: msync 4870218401.5 37951 9740398852\\nstress-ng: info: [1305] syscall: fdatasync 7117075878.0 226722452 14007429304\\nstress-ng: info: [1305] syscall: sync 10766310187.5 6469508 21526150867\\nstress-ng: info: [1305] syscall: pwritev2 13436941009.5 5872570 26868009449\\nstress-ng: metrc: [1271] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1271] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1271] syscall 1136 93.22 0.20 1.35 12.19 735.17 0.83 4876\\nstress-ng: info: [1271] skipped: 0\\nstress-ng: info: [1271] passed: 2: syscall (2)\\nstress-ng: info: [1271] failed: 0\\nstress-ng: info: [1271] metrics untrustworthy: 0\\nstress-ng: info: [1271] successful run completed in 1 min, 33.38 secs", "stderr": "", "summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.bogo_ops", "value": 1136.0, "label": "Bogo ops"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.real_time_secs", "value": 93.22, "label": "Real time, s"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.usr_time_secs", "value": 0.2, "label": "User time, s"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.sys_time_secs", "value": 1.35, "label": "System time, s"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.bogo_ops_s_real_time", "value": 12.19, "label": "Bogo ops/s"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 735.17, "label": "Bogo ops/s CPU"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.cpu_used_per_instance", "value": 0.83, "label": "CPU used, %"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.rss_max_kb", "value": 4876.0, "label": "RSS max, KB"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.pwritev2.avg_ns", "value": 13436941009.5, "label": "Syscall pwritev2 avg, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.pwritev2.min_ns", "value": 5872570.0, "label": "Syscall pwritev2 min, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.pwritev2.max_ns", "value": 26868009449.0, "label": "Syscall pwritev2 max, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.sync.avg_ns", "value": 10766310187.5, "label": "Syscall sync avg, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.sync.min_ns", "value": 6469508.0, "label": "Syscall sync min, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.sync.max_ns", "value": 21526150867.0, "label": "Syscall sync max, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.fdatasync.avg_ns", "value": 7117075878.0, "label": "Syscall fdatasync avg, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.fdatasync.min_ns", "value": 226722452.0, "label": "Syscall fdatasync min, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.fdatasync.max_ns", "value": 14007429304.0, "label": "Syscall fdatasync max, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.msync.avg_ns", "value": 4870218401.5, "label": "Syscall msync avg, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.msync.min_ns", "value": 37951.0, "label": "Syscall msync min, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.msync.max_ns", "value": 9740398852.0, "label": "Syscall msync max, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.syslog.avg_ns", "value": 748990799.0, "label": "Syscall syslog avg, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.syslog.min_ns", "value": 455912570.0, "label": "Syscall syslog min, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.syslog.max_ns", "value": 1042069028.0, "label": "Syscall syslog max, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.fsync.avg_ns", "value": 212608680.5, "label": "Syscall fsync avg, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.fsync.min_ns", "value": 3400827.0, "label": "Syscall fsync min, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.fsync.max_ns", "value": 421816534.0, "label": "Syscall fsync max, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.execve.avg_ns", "value": 37099931.5, "label": "Syscall execve avg, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.execve.min_ns", "value": 30454024.0, "label": "Syscall execve min, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.execve.max_ns", "value": 43745839.0, "label": "Syscall execve max, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.execveat.avg_ns", "value": 35968071.5, "label": "Syscall execveat avg, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.execveat.min_ns", "value": 30423428.0, "label": "Syscall execveat min, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.execveat.max_ns", "value": 41512715.0, "label": "Syscall execveat max, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.clock_settime.avg_ns", "value": 15623439.0, "label": "Syscall clock_settime avg, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.clock_settime.min_ns", "value": 15623439.0, "label": "Syscall clock_settime min, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.clock_settime.max_ns", "value": 15623439.0, "label": "Syscall clock_settime max, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.clone.avg_ns", "value": 10844787.0, "label": "Syscall clone avg, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.clone.min_ns", "value": 2950784.0, "label": "Syscall clone min, ns"}, {"stage_name": "main", "subsystem": "syscalls", "metric_name": "stress.syscall.clone.max_ns", "value": 18738790.0, "label": "Syscall clone max, ns"}]} Task result for stage=main 2026-07-16 11:29:12.60376 2026-07-16 11:30:48.28417 +869 40 loader /usr/bin/stress-ng --timeout 72 --cpu 0 --cpu-method all --vm-method all --syscall-method all --verify --metrics {"stage_name": "main", "subsystem": "system", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "72", "--cpu", "0", "--cpu-method", "all", "--vm-method", "all", "--syscall-method", "all", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1268] setting to a 1 min, 12 secs run per stressor\\nstress-ng: info: [1268] dispatching hogs: 4 cpu\\nstress-ng: metrc: [1268] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1268] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1268] cpu 2840 48.83 50.51 0.87 58.16 55.27 26.31 5948\\nstress-ng: info: [1268] skipped: 0\\nstress-ng: info: [1268] passed: 4: cpu (4)\\nstress-ng: info: [1268] failed: 0\\nstress-ng: info: [1268] metrics untrustworthy: 0\\nstress-ng: info: [1268] successful run completed in 49.01 secs", "stderr": "", "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "main", "subsystem": "system", "metric_name": "stress.bogo_ops", "value": 2840.0, "label": "Bogo ops"}, {"stage_name": "main", "subsystem": "system", "metric_name": "stress.real_time_secs", "value": 48.83, "label": "Real time, s"}, {"stage_name": "main", "subsystem": "system", "metric_name": "stress.usr_time_secs", "value": 50.51, "label": "User time, s"}, {"stage_name": "main", "subsystem": "system", "metric_name": "stress.sys_time_secs", "value": 0.87, "label": "System time, s"}, {"stage_name": "main", "subsystem": "system", "metric_name": "stress.bogo_ops_s_real_time", "value": 58.16, "label": "Bogo ops/s"}, {"stage_name": "main", "subsystem": "system", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 55.27, "label": "Bogo ops/s CPU"}, {"stage_name": "main", "subsystem": "system", "metric_name": "stress.cpu_used_per_instance", "value": 26.31, "label": "CPU used, %"}, {"stage_name": "main", "subsystem": "system", "metric_name": "stress.rss_max_kb", "value": 5948.0, "label": "RSS max, KB"}]} Task result for stage=main 2026-07-16 11:29:12.603998 2026-07-16 11:29:59.630344 +870 40 loader plan-stage {"stage_name": "cooldown", "start_offset_sec": 96, "duration_sec": 24, "pattern": "soft", "tasks": [{"subsystem": "IPC", "tool": "stress-ng", "args": {"mq": "@cpu:0.25", "pipe": "@cpu:0.25", "sem": "@cpu:0.25", "shm": "@cpu:0.25", "timeout_sec": 24}}, {"subsystem": "file", "tool": "fio", "args": {"readwrite": "read", "bs": "128k", "numjobs": 1, "iodepth": 1, "size": "@avail_ratio:0.025", "runtime_sec": 24}}, {"subsystem": "memory", "tool": "stress-ng", "args": {"vm": "@cpu:0.25", "vm_method": "all", "vm_bytes": "10%", "timeout_sec": 24}}, {"subsystem": "network", "tool": "stress-ng", "args": {"sock": "@cpu:0.25", "sock_ops": 50000, "timeout_sec": 24}}, {"subsystem": "syscalls", "tool": "stress-ng", "args": {"syscall": "@cpu:0.25", "timeout_sec": 24}}, {"subsystem": "system", "tool": "stress-ng", "args": {"cpu": 1, "cpu_method": "matrixprod", "timeout_sec": 24}}]} Planned stage 2026-07-16 11:30:48.300624 2026-07-16 11:30:48.300624 +871 40 loader /usr/bin/stress-ng --timeout 24 --cpu-method all --vm-method all --syscall-method all --mq 1 --pipe 1 --sem 1 --shm 1 --verify --metrics {"stage_name": "cooldown", "subsystem": "IPC", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "24", "--cpu-method", "all", "--vm-method", "all", "--syscall-method", "all", "--mq", "1", "--pipe", "1", "--sem", "1", "--shm", "1", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1692] setting to a 24 secs run per stressor\\nstress-ng: info: [1692] dispatching hogs: 1 mq, 1 pipe, 1 sem, 1 shm\\nstress-ng: metrc: [1692] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1692] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1692] mq 68590 12.36 4.49 9.04 5548.65 5069.46 109.45 2296\\nstress-ng: metrc: [1692] pipe 99836 12.36 2.56 12.96 8075.43 6432.11 125.55 2424\\nstress-ng: metrc: [1692] sem 352735 12.37 5.16 12.74 28513.91 19709.06 144.67 2904\\nstress-ng: metrc: [1692] shm 32 12.39 0.61 8.17 2.58 3.65 70.78 263740\\nstress-ng: metrc: [1692] miscellaneous metrics:\\nstress-ng: metrc: [1692] pipe 31.62 MB per sec pipe write rate (harmonic mean of 1 instance)\\nstress-ng: metrc: [1692] sem 9468.19 sem_trywait calls per sec (harmonic mean of 1 instance)\\nstress-ng: metrc: [1692] sem 9527.13 sem_timedwait calls per sec (harmonic mean of 1 instance)\\nstress-ng: metrc: [1692] sem 9519.93 sem_wait calls per sec (harmonic mean of 1 instance)\\nstress-ng: info: [1692] skipped: 0\\nstress-ng: info: [1692] passed: 4: mq (1) pipe (1) sem (1) shm (1)\\nstress-ng: info: [1692] failed: 0\\nstress-ng: info: [1692] metrics untrustworthy: 0\\nstress-ng: info: [1692] successful run completed in 12.42 secs", "stderr": "", "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 68590.0, "label": "Bogo ops"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 12.36, "label": "Real time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 4.49, "label": "User time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 9.04, "label": "System time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 5548.65, "label": "Bogo ops/s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 5069.46, "label": "Bogo ops/s CPU"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 109.45, "label": "CPU used, %"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 2296.0, "label": "RSS max, KB"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 99836.0, "label": "Bogo ops"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 12.36, "label": "Real time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 2.56, "label": "User time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 12.96, "label": "System time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 8075.43, "label": "Bogo ops/s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 6432.11, "label": "Bogo ops/s CPU"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 125.55, "label": "CPU used, %"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 2424.0, "label": "RSS max, KB"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 352735.0, "label": "Bogo ops"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 12.37, "label": "Real time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 5.16, "label": "User time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 12.74, "label": "System time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 28513.91, "label": "Bogo ops/s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 19709.06, "label": "Bogo ops/s CPU"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 144.67, "label": "CPU used, %"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 2904.0, "label": "RSS max, KB"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops", "value": 32.0, "label": "Bogo ops"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.real_time_secs", "value": 12.39, "label": "Real time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.usr_time_secs", "value": 0.61, "label": "User time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.sys_time_secs", "value": 8.17, "label": "System time, s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_real_time", "value": 2.58, "label": "Bogo ops/s"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 3.65, "label": "Bogo ops/s CPU"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.cpu_used_per_instance", "value": 70.78, "label": "CPU used, %"}, {"stage_name": "cooldown", "subsystem": "IPC", "metric_name": "stress.rss_max_kb", "value": 263740.0, "label": "RSS max, KB"}]} Task result for stage=cooldown 2026-07-16 11:30:48.302588 2026-07-16 11:31:04.46508 +872 40 loader /usr/bin/fio --name cooldown-file --numjobs 1 --filename /var/lib/imgtests-fio/cooldown-file.dat --size 187MiB --readwrite read --output-format json --ioengine libaio --direct 1 --runtime 24 --time_based --group_reporting --bs 128k --iodepth 1 {"stage_name": "cooldown", "subsystem": "file", "tool": "fio", "utility": "fio", "command": ["/usr/bin/fio", "--name", "cooldown-file", "--numjobs", "1", "--filename", "/var/lib/imgtests-fio/cooldown-file.dat", "--size", "187MiB", "--readwrite", "read", "--output-format", "json", "--ioengine", "libaio", "--direct", "1", "--runtime", "24", "--time_based", "--group_reporting", "--bs", "128k", "--iodepth", "1"], "returncode": 0, "stdout": "{\\n \\"fio version\\" : \\"fio-3.39\\",\\n \\"timestamp\\" : 1784201479,\\n \\"timestamp_ms\\" : 1784201479436,\\n \\"time\\" : \\"Thu Jul 16 11:31:19 2026\\",\\n \\"jobs\\" : [\\n {\\n \\"jobname\\" : \\"cooldown-file\\",\\n \\"groupid\\" : 0,\\n \\"job_start\\" : 1784201468331,\\n \\"error\\" : 0,\\n \\"eta\\" : 0,\\n \\"elapsed\\" : 26,\\n \\"job options\\" : {\\n \\"name\\" : \\"cooldown-file\\",\\n \\"numjobs\\" : \\"1\\",\\n \\"filename\\" : \\"/var/lib/imgtests-fio/cooldown-file.dat\\",\\n \\"size\\" : \\"187MiB\\",\\n \\"rw\\" : \\"read\\",\\n \\"ioengine\\" : \\"libaio\\",\\n \\"direct\\" : \\"1\\",\\n \\"runtime\\" : \\"24\\",\\n \\"time_based\\" : \\"\\",\\n \\"group_reporting\\" : \\"\\",\\n \\"bs\\" : \\"128k\\",\\n \\"iodepth\\" : \\"1\\"\\n },\\n \\"read\\" : {\\n \\"io_bytes\\" : 5018353664,\\n \\"io_kbytes\\" : 4900736,\\n \\"bw_bytes\\" : 209089357,\\n \\"bw\\" : 204188,\\n \\"iops\\" : 1595.225199,\\n \\"runtime\\" : 24001,\\n \\"total_ios\\" : 38287,\\n \\"short_ios\\" : 0,\\n \\"drop_ios\\" : 0,\\n \\"slat_ns\\" : {\\n \\"min\\" : 156099,\\n \\"max\\" : 6807049,\\n \\"mean\\" : 214344.915768,\\n \\"stddev\\" : 152385.723320,\\n \\"N\\" : 38287\\n },\\n \\"clat_ns\\" : {\\n \\"min\\" : 39942,\\n \\"max\\" : 12433018,\\n \\"mean\\" : 388285.578343,\\n \\"stddev\\" : 500541.087953,\\n \\"N\\" : 38287,\\n \\"percentile\\" : {\\n \\"1.000000\\" : 43264,\\n \\"5.000000\\" : 162816,\\n \\"10.000000\\" : 203776,\\n \\"20.000000\\" : 226304,\\n \\"30.000000\\" : 230400,\\n \\"40.000000\\" : 234496,\\n \\"50.000000\\" : 242688,\\n \\"60.000000\\" : 261120,\\n \\"70.000000\\" : 301056,\\n \\"80.000000\\" : 333824,\\n \\"90.000000\\" : 493568,\\n \\"95.000000\\" : 1433600,\\n \\"99.000000\\" : 2736128,\\n \\"99.500000\\" : 3325952,\\n \\"99.900000\\" : 4620288,\\n \\"99.950000\\" : 5210112,\\n \\"99.990000\\" : 6979584\\n }\\n },\\n \\"lat_ns\\" : {\\n \\"min\\" : 307070,\\n \\"max\\" : 12855179,\\n \\"mean\\" : 602630.494110,\\n \\"stddev\\" : 525331.769249,\\n \\"N\\" : 38287\\n },\\n \\"bw_min\\" : 90337,\\n \\"bw_max\\" : 284072,\\n \\"bw_agg\\" : 98.884452,\\n \\"bw_mean\\" : 201911.086957,\\n \\"bw_dev\\" : 83749.344651,\\n \\"bw_samples\\" : 46,\\n \\"iops_min\\" : 705,\\n \\"iops_max\\" : 2219,\\n \\"iops_mean\\" : 1576.934783,\\n \\"iops_stddev\\" : 654.220262,\\n \\"iops_samples\\" : 46\\n },\\n \\"write\\" : {\\n \\"io_bytes\\" : 0,\\n \\"io_kbytes\\" : 0,\\n \\"bw_bytes\\" : 0,\\n \\"bw\\" : 0,\\n \\"iops\\" : 0.000000,\\n \\"runtime\\" : 0,\\n \\"total_ios\\" : 0,\\n \\"short_ios\\" : 0,\\n \\"drop_ios\\" : 0,\\n \\"slat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"clat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"lat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"bw_min\\" : 0,\\n \\"bw_max\\" : 0,\\n \\"bw_agg\\" : 0.000000,\\n \\"bw_mean\\" : 0.000000,\\n \\"bw_dev\\" : 0.000000,\\n \\"bw_samples\\" : 0,\\n \\"iops_min\\" : 0,\\n \\"iops_max\\" : 0,\\n \\"iops_mean\\" : 0.000000,\\n \\"iops_stddev\\" : 0.000000,\\n \\"iops_samples\\" : 0\\n },\\n \\"trim\\" : {\\n \\"io_bytes\\" : 0,\\n \\"io_kbytes\\" : 0,\\n \\"bw_bytes\\" : 0,\\n \\"bw\\" : 0,\\n \\"iops\\" : 0.000000,\\n \\"runtime\\" : 0,\\n \\"total_ios\\" : 0,\\n \\"short_ios\\" : 0,\\n \\"drop_ios\\" : 0,\\n \\"slat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"clat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"lat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n },\\n \\"bw_min\\" : 0,\\n \\"bw_max\\" : 0,\\n \\"bw_agg\\" : 0.000000,\\n \\"bw_mean\\" : 0.000000,\\n \\"bw_dev\\" : 0.000000,\\n \\"bw_samples\\" : 0,\\n \\"iops_min\\" : 0,\\n \\"iops_max\\" : 0,\\n \\"iops_mean\\" : 0.000000,\\n \\"iops_stddev\\" : 0.000000,\\n \\"iops_samples\\" : 0\\n },\\n \\"sync\\" : {\\n \\"total_ios\\" : 0,\\n \\"lat_ns\\" : {\\n \\"min\\" : 0,\\n \\"max\\" : 0,\\n \\"mean\\" : 0.000000,\\n \\"stddev\\" : 0.000000,\\n \\"N\\" : 0\\n }\\n },\\n \\"job_runtime\\" : 24000,\\n \\"usr_cpu\\" : 15.962500,\\n \\"sys_cpu\\" : 44.550000,\\n \\"ctx\\" : 32336,\\n \\"majf\\" : 0,\\n \\"minf\\" : 41,\\n \\"iodepth_level\\" : {\\n \\"1\\" : 100.000000,\\n \\"2\\" : 0.000000,\\n \\"4\\" : 0.000000,\\n \\"8\\" : 0.000000,\\n \\"16\\" : 0.000000,\\n \\"32\\" : 0.000000,\\n \\">=64\\" : 0.000000\\n },\\n \\"iodepth_submit\\" : {\\n \\"0\\" : 0.000000,\\n \\"4\\" : 100.000000,\\n \\"8\\" : 0.000000,\\n \\"16\\" : 0.000000,\\n \\"32\\" : 0.000000,\\n \\"64\\" : 0.000000,\\n \\">=64\\" : 0.000000\\n },\\n \\"iodepth_complete\\" : {\\n \\"0\\" : 0.000000,\\n \\"4\\" : 100.000000,\\n \\"8\\" : 0.000000,\\n \\"16\\" : 0.000000,\\n \\"32\\" : 0.000000,\\n \\"64\\" : 0.000000,\\n \\">=64\\" : 0.000000\\n },\\n \\"latency_ns\\" : {\\n \\"2\\" : 0.000000,\\n \\"4\\" : 0.000000,\\n \\"10\\" : 0.000000,\\n \\"20\\" : 0.000000,\\n \\"50\\" : 0.000000,\\n \\"100\\" : 0.000000,\\n \\"250\\" : 0.000000,\\n \\"500\\" : 0.000000,\\n \\"750\\" : 0.000000,\\n \\"1000\\" : 0.000000\\n },\\n \\"latency_us\\" : {\\n \\"2\\" : 0.000000,\\n \\"4\\" : 0.000000,\\n \\"10\\" : 0.000000,\\n \\"20\\" : 0.000000,\\n \\"50\\" : 2.679761,\\n \\"100\\" : 0.517147,\\n \\"250\\" : 52.383315,\\n \\"500\\" : 34.484290,\\n \\"750\\" : 1.258913,\\n \\"1000\\" : 1.491368\\n },\\n \\"latency_ms\\" : {\\n \\"2\\" : 4.826704,\\n \\"4\\" : 2.167838,\\n \\"10\\" : 0.188053,\\n \\"20\\" : 0.010000,\\n \\"50\\" : 0.000000,\\n \\"100\\" : 0.000000,\\n \\"250\\" : 0.000000,\\n \\"500\\" : 0.000000,\\n \\"750\\" : 0.000000,\\n \\"1000\\" : 0.000000,\\n \\"2000\\" : 0.000000,\\n \\">=2000\\" : 0.000000\\n },\\n \\"latency_depth\\" : 1,\\n \\"latency_target\\" : 0,\\n \\"latency_percentile\\" : 100.000000,\\n \\"latency_window\\" : 0\\n }\\n ],\\n \\"disk_util\\" : [\\n {\\n \\"name\\" : \\"vda\\",\\n \\"read_ios\\" : 37695,\\n \\"write_ios\\" : 53,\\n \\"read_sectors\\" : 9649920,\\n \\"write_sectors\\" : 888,\\n \\"read_merges\\" : 0,\\n \\"write_merges\\" : 60,\\n \\"read_ticks\\" : 10230,\\n \\"write_ticks\\" : 50,\\n \\"in_queue\\" : 10310,\\n \\"util\\" : 29.684087\\n }\\n ]\\n}", "stderr": "", "summary": {"jobs_count": 1}, "metrics": [{"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.read.iops", "value": 1595.225199, "label": "Read IOPS"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.read.bw_kib_s", "value": 204188.0, "label": "Read bandwidth, KiB/s"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.read.runtime_ms", "value": 24001.0, "label": "Read runtime, ms"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.read.clat_mean_ns", "value": 388285.578343, "label": "Read clat mean, ns"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.read.clat_p50_ns", "value": 242688.0, "label": "Read clat p50, ns"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.read.clat_p90_ns", "value": 493568.0, "label": "Read clat p90, ns"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.read.clat_p95_ns", "value": 1433600.0, "label": "Read clat p95, ns"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.read.clat_p99_ns", "value": 2736128.0, "label": "Read clat p99, ns"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.read.clat_p999_ns", "value": 4620288.0, "label": "Read clat p99.9, ns"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.write.iops", "value": 0.0, "label": "Write IOPS"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.write.bw_kib_s", "value": 0.0, "label": "Write bandwidth, KiB/s"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.write.runtime_ms", "value": 0.0, "label": "Write runtime, ms"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.write.clat_mean_ns", "value": 0.0, "label": "Write clat mean, ns"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.trim.iops", "value": 0.0, "label": "Trim IOPS"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.trim.bw_kib_s", "value": 0.0, "label": "Trim bandwidth, KiB/s"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.trim.runtime_ms", "value": 0.0, "label": "Trim runtime, ms"}, {"stage_name": "cooldown", "subsystem": "file", "metric_name": "fio.trim.clat_mean_ns", "value": 0.0, "label": "Trim clat mean, ns"}]} Task result for stage=cooldown 2026-07-16 11:30:48.30279 2026-07-16 11:31:14.344938 +873 40 loader /usr/bin/stress-ng --timeout 24 --cpu-method all --vm 1 --vm-method all --vm-bytes 10% --syscall-method all --verify --metrics {"stage_name": "cooldown", "subsystem": "memory", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "24", "--cpu-method", "all", "--vm", "1", "--vm-method", "all", "--vm-bytes", "10%", "--syscall-method", "all", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1694] setting to a 24 secs run per stressor\\nstress-ng: info: [1694] dispatching hogs: 1 vm\\nstress-ng: metrc: [1694] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1694] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1694] vm 1605 12.51 1.53 7.82 128.31 171.80 74.68 272696\\nstress-ng: info: [1694] skipped: 0\\nstress-ng: info: [1694] passed: 1: vm (1)\\nstress-ng: info: [1694] failed: 0\\nstress-ng: info: [1694] metrics untrustworthy: 0\\nstress-ng: info: [1694] successful run completed in 12.52 secs", "stderr": "", "summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "cooldown", "subsystem": "memory", "metric_name": "stress.bogo_ops", "value": 1605.0, "label": "Bogo ops"}, {"stage_name": "cooldown", "subsystem": "memory", "metric_name": "stress.real_time_secs", "value": 12.51, "label": "Real time, s"}, {"stage_name": "cooldown", "subsystem": "memory", "metric_name": "stress.usr_time_secs", "value": 1.53, "label": "User time, s"}, {"stage_name": "cooldown", "subsystem": "memory", "metric_name": "stress.sys_time_secs", "value": 7.82, "label": "System time, s"}, {"stage_name": "cooldown", "subsystem": "memory", "metric_name": "stress.bogo_ops_s_real_time", "value": 128.31, "label": "Bogo ops/s"}, {"stage_name": "cooldown", "subsystem": "memory", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 171.8, "label": "Bogo ops/s CPU"}, {"stage_name": "cooldown", "subsystem": "memory", "metric_name": "stress.cpu_used_per_instance", "value": 74.68, "label": "CPU used, %"}, {"stage_name": "cooldown", "subsystem": "memory", "metric_name": "stress.rss_max_kb", "value": 272696.0, "label": "RSS max, KB"}]} Task result for stage=cooldown 2026-07-16 11:30:48.302934 2026-07-16 11:31:04.393219 +982 45 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:14:12' --until '2026-07-20 19:41:33' 0 systemd errors records 2026-07-20 19:14:12.847219 2026-07-20 19:41:33.827537 +1116 49 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:16:52' --until '2026-07-20 20:16:53' 1 OOM records 2026-07-20 20:16:52.750697 2026-07-20 20:16:53.062978 +874 40 loader /usr/bin/stress-ng --timeout 24 --cpu-method all --vm-method all --sock 1 --sock-ops 50000 --syscall-method all --verify --metrics {"stage_name": "cooldown", "subsystem": "network", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "24", "--cpu-method", "all", "--vm-method", "all", "--sock", "1", "--sock-ops", "50000", "--syscall-method", "all", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1693] setting to a 24 secs run per stressor\\nstress-ng: info: [1693] dispatching hogs: 1 sock\\nstress-ng: warn: [1698] sock: WARNING: finished prematurely after just 12.93 secs\\nstress-ng: metrc: [1693] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1693] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1693] sock 164 12.41 1.92 12.72 13.21 11.21 117.90 2260\\nstress-ng: metrc: [1693] miscellaneous metrics:\\nstress-ng: metrc: [1693] sock 6764.80 messages sent per sec (harmonic mean of 1 instance)\\nstress-ng: metrc: [1693] sock 48816.00 byte average out queue length (harmonic mean of 1 instance)\\nstress-ng: metrc: [1693] sock 74943.64 byte average in queue length (geometric mean of 1 instance)\\nstress-ng: info: [1693] skipped: 0\\nstress-ng: info: [1693] passed: 1: sock (1)\\nstress-ng: info: [1693] failed: 0\\nstress-ng: info: [1693] metrics untrustworthy: 0\\nstress-ng: info: [1693] successful run completed in 12.44 secs", "stderr": "", "summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "cooldown", "subsystem": "network", "metric_name": "stress.bogo_ops", "value": 164.0, "label": "Bogo ops"}, {"stage_name": "cooldown", "subsystem": "network", "metric_name": "stress.real_time_secs", "value": 12.41, "label": "Real time, s"}, {"stage_name": "cooldown", "subsystem": "network", "metric_name": "stress.usr_time_secs", "value": 1.92, "label": "User time, s"}, {"stage_name": "cooldown", "subsystem": "network", "metric_name": "stress.sys_time_secs", "value": 12.72, "label": "System time, s"}, {"stage_name": "cooldown", "subsystem": "network", "metric_name": "stress.bogo_ops_s_real_time", "value": 13.21, "label": "Bogo ops/s"}, {"stage_name": "cooldown", "subsystem": "network", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 11.21, "label": "Bogo ops/s CPU"}, {"stage_name": "cooldown", "subsystem": "network", "metric_name": "stress.cpu_used_per_instance", "value": 117.9, "label": "CPU used, %"}, {"stage_name": "cooldown", "subsystem": "network", "metric_name": "stress.rss_max_kb", "value": 2260.0, "label": "RSS max, KB"}]} Task result for stage=cooldown 2026-07-16 11:30:48.303112 2026-07-16 11:31:04.372082 +875 40 loader /usr/bin/stress-ng --timeout 24 --cpu-method all --vm-method all --syscall 1 --syscall-method all --verify --metrics --syscall-top 0 {"stage_name": "cooldown", "subsystem": "syscalls", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "24", "--cpu-method", "all", "--vm-method", "all", "--syscall", "1", "--syscall-method", "all", "--verify", "--metrics", "--syscall-top", "0"], "returncode": 0, "stdout": "stress-ng: info: [1691] setting to a 24 secs run per stressor\\nstress-ng: info: [1691] dispatching hogs: 1 syscall\\nstress-ng: info: [1700] syscall: using method 'all'\\nstress-ng: info: [1700] syscall: 284 system call tests, 263 (92.6%) fastest non-failing tests fully exercised\\nstress-ng: info: [1700] syscall: Top 263 fastest system calls (timings in nanosecs):\\nstress-ng: info: [1700] syscall: System Call Avg (ns) Min (ns) Max (ns)\\nstress-ng: info: [1700] syscall: gettimeofday 2674.0 2635 2713\\nstress-ng: info: [1700] syscall: time 2681.5 2634 2729\\nstress-ng: info: [1700] syscall: getcpu 5410.0 5159 5661\\nstress-ng: info: [1700] syscall: set_robust_list 21343.5 20951 21736\\nstress-ng: info: [1700] syscall: membarrier 21531.5 21108 21955\\nstress-ng: info: [1700] syscall: iopl 21546.5 20590 22503\\nstress-ng: info: [1700] syscall: sched_get_priority_min 21892.0 20496 23288\\nstress-ng: info: [1700] syscall: umask 24166.0 23821 24511\\nstress-ng: info: [1700] syscall: setresgid 26087.0 25812 26362\\nstress-ng: info: [1700] syscall: timer_getoverrun 26189.0 25985 26393\\nstress-ng: info: [1700] syscall: sched_getscheduler 26384.5 26267 26502\\nstress-ng: info: [1700] syscall: getuid 26902.5 23711 30094\\nstress-ng: info: [1700] syscall: mlockall 27098.0 25624 28572\\nstress-ng: info: [1700] syscall: epoll_wait 27240.0 26989 27491\\nstress-ng: info: [1700] syscall: signal 27310.0 27161 27459\\nstress-ng: info: [1700] syscall: fcntl 28478.5 28431 28526\\nstress-ng: info: [1700] syscall: setrlimit 28698.0 28525 28871\\nstress-ng: info: [1700] syscall: sigprocmask 28902.0 27694 30110\\nstress-ng: info: [1700] syscall: timer_gettime 29066.5 28917 29216\\nstress-ng: info: [1700] syscall: mq_setattr 29137.0 27883 30391\\nstress-ng: info: [1700] syscall: sched_getparam 29537.5 29090 29985\\nstress-ng: info: [1700] syscall: prlimit 29600.0 29482 29718\\nstress-ng: info: [1700] syscall: prctl 29694.0 27601 31787\\nstress-ng: info: [1700] syscall: brk 29796.0 29075 30517\\nstress-ng: info: [1700] syscall: clock_gettime 30015.5 25703 34328\\nstress-ng: info: [1700] syscall: getresuid 30204.0 27397 33011\\nstress-ng: info: [1700] syscall: uname 30690.0 30439 30941\\nstress-ng: info: [1700] syscall: dup 31364.5 29624 33105\\nstress-ng: info: [1700] syscall: gettid 31419.0 29827 33011\\nstress-ng: info: [1700] syscall: getresgid 31481.5 28620 34343\\nstress-ng: info: [1700] syscall: lseek 31521.0 30862 32180\\nstress-ng: info: [1700] syscall: mq_getattr 31779.5 30219 33340\\nstress-ng: info: [1700] syscall: getsid 32007.0 30548 33466\\nstress-ng: info: [1700] syscall: setpriority 32054.0 31756 32352\\nstress-ng: info: [1700] syscall: sched_getattr 32265.5 32242 32289\\nstress-ng: info: [1700] syscall: clock_getres 33395.5 28338 38453\\nstress-ng: info: [1700] syscall: sched_getaffinity 33552.0 33246 33858\\nstress-ng: info: [1700] syscall: sigpending 33763.5 26252 41275\\nstress-ng: info: [1700] syscall: sigaltstack 33881.0 33591 34171\\nstress-ng: info: [1700] syscall: getrlimit 34108.5 32430 35787\\nstress-ng: info: [1700] syscall: getpid 34242.0 26158 42326\\nstress-ng: info: [1700] syscall: setpgid 34563.0 34202 34924\\nstress-ng: info: [1700] syscall: getegid 34767.0 26299 43235\\nstress-ng: info: [1700] syscall: get_robust_list 34837.5 32979 36696\\nstress-ng: info: [1700] syscall: msgsnd 36077.0 35050 37104\\nstress-ng: info: [1700] syscall: sigaction 36170.5 35755 36586\\nstress-ng: info: [1700] syscall: getpgrp 36335.5 26879 45792\\nstress-ng: info: [1700] syscall: semtimedop 37119.5 36289 37950\\nstress-ng: info: [1700] syscall: timerfd_settime 37291.5 36555 38028\\nstress-ng: info: [1700] syscall: getpriority 37582.5 28542 46623\\nstress-ng: info: [1700] syscall: sched_rr_get_interval 37903.5 37825 37982\\nstress-ng: info: [1700] syscall: ioprio_set 38130.5 34014 42247\\nstress-ng: info: [1700] syscall: timerfd_gettime 38303.0 37762 38844\\nstress-ng: info: [1700] syscall: getppid 38547.0 32823 44271\\nstress-ng: info: [1700] syscall: fchdir 38586.0 37261 39911\\nstress-ng: info: [1700] syscall: listen 38586.0 37684 39488\\nstress-ng: info: [1700] syscall: sync_file_range 39440.5 38217 40664\\nstress-ng: info: [1700] syscall: poll 39464.0 37339 41589\\nstress-ng: info: [1700] syscall: getsockopt 39527.0 38516 40538\\nstress-ng: info: [1700] syscall: ioprio_get 40271.5 33920 46623\\nstress-ng: info: [1700] syscall: splice 41095.0 40460 41730\\nstress-ng: info: [1700] syscall: epoll_pwait 41283.0 39958 42608\\nstress-ng: info: [1700] syscall: setitimer 41510.0 33622 49398\\nstress-ng: info: [1700] syscall: pkey_mprotect 41518.0 40883 42153\\nstress-ng: info: [1700] syscall: geteuid 42569.0 40570 44568\\nstress-ng: info: [1700] syscall: setsockopt 43439.5 42624 44255\\nstress-ng: info: [1700] syscall: fstatfs 43988.0 43439 44537\\nstress-ng: info: [1700] syscall: timer_delete 44035.5 39597 48474\\nstress-ng: info: [1700] syscall: fstat 44098.0 42529 45667\\nstress-ng: info: [1700] syscall: semop 44529.0 43125 45933\\nstress-ng: info: [1700] syscall: semget 44615.0 43235 45995\\nstress-ng: info: [1700] syscall: sched_yield 44827.5 44553 45102\\nstress-ng: info: [1700] syscall: sched_setattr 45603.5 45431 45776\\nstress-ng: info: [1700] syscall: msgrcv 45854.0 44521 47187\\nstress-ng: info: [1700] syscall: getgroups 45893.0 45054 46732\\nstress-ng: info: [1700] syscall: msgget 46293.5 42342 50245\\nstress-ng: info: [1700] syscall: getpgid 46521.0 36728 56314\\nstress-ng: info: [1700] syscall: getgid 46584.0 39174 53994\\nstress-ng: info: [1700] syscall: close 47705.0 31459 63951\\nstress-ng: info: [1700] syscall: sysinfo 47728.5 46842 48615\\nstress-ng: info: [1700] syscall: dup3 48285.5 27350 69221\\nstress-ng: info: [1700] syscall: mq_notify 48474.0 36085 60863\\nstress-ng: info: [1700] syscall: munlockall 49139.5 48552 49727\\nstress-ng: info: [1700] syscall: mq_timedreceive 50261.0 48661 51861\\nstress-ng: info: [1700] syscall: name_to_handle_at 52017.5 51798 52237\\nstress-ng: info: [1700] syscall: dup2 52025.0 28353 75697\\nstress-ng: info: [1700] syscall: setregid 52205.5 51343 53068\\nstress-ng: info: [1700] syscall: flock 52315.5 51814 52817\\nstress-ng: info: [1700] syscall: pselect 52943.0 50920 54966\\nstress-ng: info: [1700] syscall: setreuid 54166.0 53429 54903\\nstress-ng: info: [1700] syscall: madvise 54189.0 52425 55953\\nstress-ng: info: [1700] syscall: setuid 54291.0 53915 54667\\nstress-ng: info: [1700] syscall: ppoll 54628.5 52755 56502\\nstress-ng: info: [1700] syscall: msgctl 54989.0 53429 56549\\nstress-ng: info: [1700] syscall: select 55545.5 53005 58086\\nstress-ng: info: [1700] syscall: preadv 56667.0 55781 57553\\nstress-ng: info: [1700] syscall: epoll_create1 56769.0 55201 58337\\nstress-ng: info: [1700] syscall: readv 56847.0 55263 58431\\nstress-ng: info: [1700] syscall: semctl 57224.5 56221 58228\\nstress-ng: info: [1700] syscall: sched_setaffinity 57608.5 57036 58181\\nstress-ng: info: [1700] syscall: mq_close 57623.5 57208 58039\\nstress-ng: info: [1700] syscall: flistxattr 58094.5 49791 66398\\nstress-ng: info: [1700] syscall: statfs 60658.5 59796 61521\\nstress-ng: info: [1700] syscall: setgid 61513.0 61176 61850\\nstress-ng: info: [1700] syscall: chdir 61623.0 53053 70193\\nstress-ng: info: [1700] syscall: getrusage 62564.0 57648 67480\\nstress-ng: info: [1700] syscall: lstat 62791.0 62775 62807\\nstress-ng: info: [1700] syscall: epoll_ctl 63849.5 60784 66915\\nstress-ng: info: [1700] syscall: access 64657.0 64218 65096\\nstress-ng: info: [1700] syscall: tee 64908.0 55327 74489\\nstress-ng: info: [1700] syscall: clock_adjtime 66052.0 66052 66052\\nstress-ng: info: [1700] syscall: mlock2 66092.5 64109 68076\\nstress-ng: info: [1700] syscall: nice 66868.0 66194 67542\\nstress-ng: info: [1700] syscall: timer_create 66993.5 62414 71573\\nstress-ng: info: [1700] syscall: llistxattr 68162.0 62524 73800\\nstress-ng: info: [1700] syscall: mprotect 68970.0 66351 71589\\nstress-ng: info: [1700] syscall: eventfd 70796.5 69738 71855\\nstress-ng: info: [1700] syscall: ioperm 72098.5 70193 74004\\nstress-ng: info: [1700] syscall: epoll_create 72733.5 71636 73831\\nstress-ng: info: [1700] syscall: pwritev 73282.0 73266 73298\\nstress-ng: info: [1700] syscall: mq_unlink 73321.5 72435 74208\\nstress-ng: info: [1700] syscall: readlinkat 73455.0 72545 74365\\nstress-ng: info: [1700] syscall: fstatat 73682.5 69895 77470\\nstress-ng: info: [1700] syscall: munmap 74834.5 71259 78410\\nstress-ng: info: [1700] syscall: inotify_init1 75117.0 68969 81265\\nstress-ng: info: [1700] syscall: listxattr 75720.5 74474 76967\\nstress-ng: info: [1700] syscall: statx 75948.0 65849 86047\\nstress-ng: info: [1700] syscall: kcmp 76332.5 45117 107548\\nstress-ng: info: [1700] syscall: signalfd 77289.0 75870 78708\\nstress-ng: info: [1700] syscall: munlock 77728.0 72937 82519\\nstress-ng: info: [1700] syscall: stat 78943.5 78865 79022\\nstress-ng: info: [1700] syscall: getsockname 82174.0 42922 121426\\nstress-ng: info: [1700] syscall: getcwd 82237.0 79806 84668\\nstress-ng: info: [1700] syscall: fgetxattr 82417.0 74207 90627\\nstress-ng: info: [1700] syscall: pipe2 86063.0 85749 86377\\nstress-ng: info: [1700] syscall: timer_settime 87498.0 34955 140041\\nstress-ng: info: [1700] syscall: sched_setscheduler 87740.5 84620 90861\\nstress-ng: info: [1700] syscall: faccessat 88517.5 74443 102592\\nstress-ng: info: [1700] syscall: fsetxattr 89403.5 87914 90893\\nstress-ng: info: [1700] syscall: writev 90634.5 76622 104647\\nstress-ng: info: [1700] syscall: shmget 90861.5 84746 96977\\nstress-ng: info: [1700] syscall: sched_get_priority_max 91858.0 21751 161965\\nstress-ng: info: [1700] syscall: shmctl 93778.5 92288 95269\\nstress-ng: info: [1700] syscall: fremovexattr 97001.5 95802 98201\\nstress-ng: info: [1700] syscall: mq_timedsend 99213.0 42828 155598\\nstress-ng: info: [1700] syscall: lgetxattr 102270.5 86674 117867\\nstress-ng: info: [1700] syscall: lsetxattr 103345.0 103173 103517\\nstress-ng: info: [1700] syscall: fchownat 104458.0 97997 110919\\nstress-ng: info: [1700] syscall: lremovexattr 106340.0 102090 110590\\nstress-ng: info: [1700] syscall: inotify_init 107147.5 98483 115812\\nstress-ng: info: [1700] syscall: utimes 107798.5 91442 124155\\nstress-ng: info: [1700] syscall: utimensat 109053.0 98060 120046\\nstress-ng: info: [1700] syscall: setresuid 113734.5 26205 201264\\nstress-ng: info: [1700] syscall: fchown 115773.0 100820 130726\\nstress-ng: info: [1700] syscall: readahead 116737.5 39049 194426\\nstress-ng: info: [1700] syscall: shmdt 117066.5 113177 120956\\nstress-ng: info: [1700] syscall: preadv2 120171.5 46309 194034\\nstress-ng: info: [1700] syscall: times 123551.0 50480 196622\\nstress-ng: info: [1700] syscall: restart_syscall 126319.0 23304 229334\\nstress-ng: info: [1700] syscall: unshare 128796.5 126491 131102\\nstress-ng: info: [1700] syscall: alarm 129236.0 116377 142095\\nstress-ng: info: [1700] syscall: socketpair 129377.5 127762 130993\\nstress-ng: info: [1700] syscall: futimes 129440.0 95692 163188\\nstress-ng: info: [1700] syscall: mmap 130529.5 123120 137939\\nstress-ng: info: [1700] syscall: fchmod 136089.0 110527 161651\\nstress-ng: info: [1700] syscall: shutdown 137986.5 36790 239183\\nstress-ng: info: [1700] syscall: removexattr 142213.0 136528 147898\\nstress-ng: info: [1700] syscall: mq_open 148156.5 121097 175216\\nstress-ng: info: [1700] syscall: shmat 148924.5 146031 151818\\nstress-ng: info: [1700] syscall: memfd_create 149199.5 111751 186648\\nstress-ng: info: [1700] syscall: pread 149763.5 148807 150720\\nstress-ng: info: [1700] syscall: linkat 150884.5 147928 153841\\nstress-ng: info: [1700] syscall: sched_setparam 156358.0 114134 198582\\nstress-ng: info: [1700] syscall: mincore 156467.5 102748 210187\\nstress-ng: info: [1700] syscall: read 159839.0 147160 172518\\nstress-ng: info: [1700] syscall: utime 163854.0 152743 174965\\nstress-ng: info: [1700] syscall: pipe 164379.5 99111 229648\\nstress-ng: info: [1700] syscall: vmsplice 165806.5 82582 249031\\nstress-ng: info: [1700] syscall: mlock 168739.0 166136 171342\\nstress-ng: info: [1700] syscall: pwrite 171248.0 161588 180908\\nstress-ng: info: [1700] syscall: process_vm_writev 173286.5 172298 174275\\nstress-ng: info: [1700] syscall: inotify_rm_watch 174502.0 111515 237489\\nstress-ng: info: [1700] syscall: sendmmsg 184021.0 181958 186084\\nstress-ng: info: [1700] syscall: recvmmsg 186154.0 98703 273605\\nstress-ng: info: [1700] syscall: chroot 191211.5 141013 241410\\nstress-ng: info: [1700] syscall: timerfd_create 193469.5 90564 296375\\nstress-ng: info: [1700] syscall: socket 195430.0 132153 258707\\nstress-ng: info: [1700] syscall: clock_settime 200197.0 200197 200197\\nstress-ng: info: [1700] syscall: futimesat 201247.5 176799 225696\\nstress-ng: info: [1700] syscall: open_by_handle_at 204902.0 115122 294682\\nstress-ng: info: [1700] syscall: chmod 216067.5 158546 273589\\nstress-ng: info: [1700] syscall: write 217039.5 212131 221948\\nstress-ng: info: [1700] syscall: process_vm_readv 225186.5 207442 242931\\nstress-ng: info: [1700] syscall: sendto 225257.0 215064 235450\\nstress-ng: info: [1700] syscall: fchmodat 225994.5 123183 328806\\nstress-ng: info: [1700] syscall: setxattr 228699.0 203851 253547\\nstress-ng: info: [1700] syscall: getxattr 230691.0 119121 342261\\nstress-ng: info: [1700] syscall: inotify_add_watch 231522.0 166810 296234\\nstress-ng: info: [1700] syscall: send 232698.0 231295 234101\\nstress-ng: info: [1700] syscall: chown 234619.0 115592 353646\\nstress-ng: info: [1700] syscall: getitimer 245189.0 56424 433954\\nstress-ng: info: [1700] syscall: sigreturn 258268.0 206972 309564\\nstress-ng: info: [1700] syscall: recvfrom 261639.5 95268 428011\\nstress-ng: info: [1700] syscall: readlink 272076.0 153779 390373\\nstress-ng: info: [1700] syscall: mknod 274145.5 249062 299229\\nstress-ng: info: [1700] syscall: renameat2 274169.5 187307 361032\\nstress-ng: info: [1700] syscall: bind 275134.0 174118 376150\\nstress-ng: info: [1700] syscall: clock_nanosleep 275526.0 268288 282764\\nstress-ng: info: [1700] syscall: mknodat 284237.5 272068 296407\\nstress-ng: info: [1700] syscall: link 286605.5 237772 335439\\nstress-ng: info: [1700] syscall: unlink 296548.0 293302 299794\\nstress-ng: info: [1700] syscall: recvmsg 301197.0 182460 419934\\nstress-ng: info: [1700] syscall: kill 308818.5 144149 473488\\nstress-ng: info: [1700] syscall: getdents 309234.0 149434 469034\\nstress-ng: info: [1700] syscall: rename 309728.5 300954 318503\\nstress-ng: info: [1700] syscall: ftruncate 310740.0 243417 378063\\nstress-ng: info: [1700] syscall: sendmsg 312159.0 186992 437326\\nstress-ng: info: [1700] syscall: unlinkat 320376.5 318220 322533\\nstress-ng: info: [1700] syscall: renameat 325943.5 291686 360201\\nstress-ng: info: [1700] syscall: connect 331173.5 323677 338670\\nstress-ng: info: [1700] syscall: mremap 331409.0 300845 361973\\nstress-ng: info: [1700] syscall: truncate 341735.0 324806 358664\\nstress-ng: info: [1700] syscall: lchown 360444.5 187871 533018\\nstress-ng: info: [1700] syscall: io_uring_setup 387574.0 289333 485815\\nstress-ng: info: [1700] syscall: openat 389534.5 316872 462197\\nstress-ng: info: [1700] syscall: open 401069.0 358853 443285\\nstress-ng: info: [1700] syscall: copy_file_range 416625.5 279439 553812\\nstress-ng: info: [1700] syscall: nanosleep 434730.0 346417 523043\\nstress-ng: info: [1700] syscall: seccomp 454787.0 403138 506436\\nstress-ng: info: [1700] syscall: creat 461892.0 447410 476374\\nstress-ng: info: [1700] syscall: symlinkat 494879.0 472485 517273\\nstress-ng: info: [1700] syscall: recv 506248.5 277980 734517\\nstress-ng: info: [1700] syscall: getpeername 529481.5 448460 610503\\nstress-ng: info: [1700] syscall: mkdirat 578315.0 467544 689086\\nstress-ng: info: [1700] syscall: rmdir 588861.5 569180 608543\\nstress-ng: info: [1700] syscall: pause 608558.0 538914 678202\\nstress-ng: info: [1700] syscall: mkdir 620900.0 613279 628521\\nstress-ng: info: [1700] syscall: fallocate 623040.5 434722 811359\\nstress-ng: info: [1700] syscall: symlink 719751.0 611286 828216\\nstress-ng: info: [1700] syscall: remap_file_pages 756432.0 404754 1108110\\nstress-ng: info: [1700] syscall: vfork 913966.0 906297 921635\\nstress-ng: info: [1700] syscall: sendfile 916819.5 795299 1038340\\nstress-ng: info: [1700] syscall: getrandom 929139.0 118196 1740082\\nstress-ng: info: [1700] syscall: accept4 939543.0 939543 939543\\nstress-ng: info: [1700] syscall: waitpid 1352734.5 1341224 1364245\\nstress-ng: info: [1700] syscall: waitid 1453538.5 1413267 1493810\\nstress-ng: info: [1700] syscall: wait3 1459074.5 1330434 1587715\\nstress-ng: info: [1700] syscall: wait4 1464736.0 1343984 1585488\\nstress-ng: info: [1700] syscall: wait 1488360.0 1314736 1661984\\nstress-ng: info: [1700] syscall: exit 1590294.0 1448160 1732428\\nstress-ng: info: [1700] syscall: fork 2096346.0 2052844 2139848\\nstress-ng: info: [1700] syscall: msync 2274282.5 37919 4510646\\nstress-ng: info: [1700] syscall: fsync 2411375.5 2310846 2511905\\nstress-ng: info: [1700] syscall: clone 2553063.0 2482972 2623154\\nstress-ng: info: [1700] syscall: syncfs 2685105.5 2640655 2729556\\nstress-ng: info: [1700] syscall: clone3 3005984.0 2860125 3151843\\nstress-ng: info: [1700] syscall: accept 3426263.0 1062679 5789847\\nstress-ng: info: [1700] syscall: pwritev2 4190669.5 3887065 4494274\\nstress-ng: info: [1700] syscall: fdatasync 4769980.5 4613834 4926127\\nstress-ng: info: [1700] syscall: sync 6553140.0 5706732 7399548\\nstress-ng: info: [1700] syscall: execve 34700342.0 33533024 35867660\\nstress-ng: info: [1700] syscall: execveat 35723831.5 31659551 39788112\\nstress-ng: info: [1700] syscall: syslog 694220718.0 669253242 719188194\\nstress-ng: metrc: [1691] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1691] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1691] syscall 568 13.77 0.13 0.62 41.26 762.37 5.41 4864\\nstress-ng: info: [1691] skipped: 0\\nstress-ng: info: [1691] passed: 1: syscall (1)\\nstress-ng: info: [1691] failed: 0\\nstress-ng: info: [1691] metrics untrustworthy: 0\\nstress-ng: info: [1691] successful run completed in 13.78 secs", "stderr": "", "summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.bogo_ops", "value": 568.0, "label": "Bogo ops"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.real_time_secs", "value": 13.77, "label": "Real time, s"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.usr_time_secs", "value": 0.13, "label": "User time, s"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.sys_time_secs", "value": 0.62, "label": "System time, s"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.bogo_ops_s_real_time", "value": 41.26, "label": "Bogo ops/s"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 762.37, "label": "Bogo ops/s CPU"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.cpu_used_per_instance", "value": 5.41, "label": "CPU used, %"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.rss_max_kb", "value": 4864.0, "label": "RSS max, KB"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.syslog.avg_ns", "value": 694220718.0, "label": "Syscall syslog avg, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.syslog.min_ns", "value": 669253242.0, "label": "Syscall syslog min, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.syslog.max_ns", "value": 719188194.0, "label": "Syscall syslog max, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.execveat.avg_ns", "value": 35723831.5, "label": "Syscall execveat avg, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.execveat.min_ns", "value": 31659551.0, "label": "Syscall execveat min, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.execveat.max_ns", "value": 39788112.0, "label": "Syscall execveat max, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.execve.avg_ns", "value": 34700342.0, "label": "Syscall execve avg, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.execve.min_ns", "value": 33533024.0, "label": "Syscall execve min, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.execve.max_ns", "value": 35867660.0, "label": "Syscall execve max, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.sync.avg_ns", "value": 6553140.0, "label": "Syscall sync avg, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.sync.min_ns", "value": 5706732.0, "label": "Syscall sync min, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.sync.max_ns", "value": 7399548.0, "label": "Syscall sync max, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.fdatasync.avg_ns", "value": 4769980.5, "label": "Syscall fdatasync avg, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.fdatasync.min_ns", "value": 4613834.0, "label": "Syscall fdatasync min, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.fdatasync.max_ns", "value": 4926127.0, "label": "Syscall fdatasync max, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.pwritev2.avg_ns", "value": 4190669.5, "label": "Syscall pwritev2 avg, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.pwritev2.min_ns", "value": 3887065.0, "label": "Syscall pwritev2 min, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.pwritev2.max_ns", "value": 4494274.0, "label": "Syscall pwritev2 max, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.accept.avg_ns", "value": 3426263.0, "label": "Syscall accept avg, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.accept.min_ns", "value": 1062679.0, "label": "Syscall accept min, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.accept.max_ns", "value": 5789847.0, "label": "Syscall accept max, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.clone3.avg_ns", "value": 3005984.0, "label": "Syscall clone3 avg, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.clone3.min_ns", "value": 2860125.0, "label": "Syscall clone3 min, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.clone3.max_ns", "value": 3151843.0, "label": "Syscall clone3 max, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.syncfs.avg_ns", "value": 2685105.5, "label": "Syscall syncfs avg, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.syncfs.min_ns", "value": 2640655.0, "label": "Syscall syncfs min, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.syncfs.max_ns", "value": 2729556.0, "label": "Syscall syncfs max, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.clone.avg_ns", "value": 2553063.0, "label": "Syscall clone avg, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.clone.min_ns", "value": 2482972.0, "label": "Syscall clone min, ns"}, {"stage_name": "cooldown", "subsystem": "syscalls", "metric_name": "stress.syscall.clone.max_ns", "value": 2623154.0, "label": "Syscall clone max, ns"}]} Task result for stage=cooldown 2026-07-16 11:30:48.303295 2026-07-16 11:31:06.261978 +876 40 loader /usr/bin/stress-ng --timeout 24 --cpu 1 --cpu-method matrixprod --vm-method all --syscall-method all --verify --metrics {"stage_name": "cooldown", "subsystem": "system", "tool": "stress-ng", "utility": "stress-ng", "command": ["/usr/bin/stress-ng", "--timeout", "24", "--cpu", "1", "--cpu-method", "matrixprod", "--vm-method", "all", "--syscall-method", "all", "--verify", "--metrics"], "returncode": 0, "stdout": "stress-ng: info: [1696] setting to a 24 secs run per stressor\\nstress-ng: info: [1696] dispatching hogs: 1 cpu\\nstress-ng: metrc: [1696] stressor bogo ops real time usr time sys time bogo ops/s bogo ops/s CPU used per RSS Max\\nstress-ng: metrc: [1696] (secs) (secs) (secs) (real time) (usr+sys time) instance (%) (KB)\\nstress-ng: metrc: [1696] cpu 129 12.37 8.70 0.17 10.43 14.54 71.73 2984\\nstress-ng: info: [1696] skipped: 0\\nstress-ng: info: [1696] passed: 1: cpu (1)\\nstress-ng: info: [1696] failed: 0\\nstress-ng: info: [1696] metrics untrustworthy: 0\\nstress-ng: info: [1696] successful run completed in 12.39 secs", "stderr": "", "summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}, "metrics": [{"stage_name": "cooldown", "subsystem": "system", "metric_name": "stress.bogo_ops", "value": 129.0, "label": "Bogo ops"}, {"stage_name": "cooldown", "subsystem": "system", "metric_name": "stress.real_time_secs", "value": 12.37, "label": "Real time, s"}, {"stage_name": "cooldown", "subsystem": "system", "metric_name": "stress.usr_time_secs", "value": 8.7, "label": "User time, s"}, {"stage_name": "cooldown", "subsystem": "system", "metric_name": "stress.sys_time_secs", "value": 0.17, "label": "System time, s"}, {"stage_name": "cooldown", "subsystem": "system", "metric_name": "stress.bogo_ops_s_real_time", "value": 10.43, "label": "Bogo ops/s"}, {"stage_name": "cooldown", "subsystem": "system", "metric_name": "stress.bogo_ops_s_usr_sys_time", "value": 14.54, "label": "Bogo ops/s CPU"}, {"stage_name": "cooldown", "subsystem": "system", "metric_name": "stress.cpu_used_per_instance", "value": 71.73, "label": "CPU used, %"}, {"stage_name": "cooldown", "subsystem": "system", "metric_name": "stress.rss_max_kb", "value": 2984.0, "label": "RSS max, KB"}]} Task result for stage=cooldown 2026-07-16 11:30:48.303722 2026-07-16 11:31:04.530292 +877 40 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-16 11:31:14.782973 2026-07-16 11:31:14.782976 +878 40 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-16 11:28:47' --until '2026-07-16 11:31:14' 0 OOM records 2026-07-16 11:28:47.617977 2026-07-16 11:31:14.361898 +879 40 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-16 11:28:47' --until '2026-07-16 11:31:14' 0 systemd errors records 2026-07-16 11:28:47.617977 2026-07-16 11:31:14.361898 +880 42 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-17 12:16:29.647539 2026-07-17 12:16:29.647549 +881 42 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-17 12:24:50.437699 2026-07-17 12:24:50.437704 +882 42 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-17 12:24:48' --until '2026-07-17 12:24:49' 0 OOM records 2026-07-17 12:24:48.160305 2026-07-17 12:24:49.36912 +883 42 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-17 12:24:48' --until '2026-07-17 12:24:49' 0 systemd errors records 2026-07-17 12:24:48.160305 2026-07-17 12:24:49.36912 +884 42 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-17 12:16:29.647539 2026-07-17 12:16:29.647549 +885 42 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-17 12:25:10.333874 2026-07-17 12:25:10.333877 +886 42 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-17 12:24:53' --until '2026-07-17 12:25:09' 0 OOM records 2026-07-17 12:24:53.026169 2026-07-17 12:25:09.91173 +887 42 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-17 12:24:53' --until '2026-07-17 12:25:09' 0 systemd errors records 2026-07-17 12:24:53.026169 2026-07-17 12:25:09.91173 +888 42 loader /usr/bin/stress-ng --timeout 200 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 1123859.78}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 1123852.55, "usr_time_secs": 1.1, "sys_time_secs": 6.13, "bogo_ops_s_real_time": 0.0, "bogo_ops_s_usr_sys_time": 314.36, "cpu_used_per_instance": 0.0, "rss_max_kb": 4952, "top10_slowest": [["syslog", 99414640379.5, 78376677, 198750904082], ["execveat", 111509342.0, 91014709, 132003975], ["execve", 78811188.5, 75657568, 81964809], ["sync", 57874199.5, 19691146, 96057253], ["fdatasync", 18210105.5, 12549652, 23870559], ["pwritev2", 11210192.0, 10394436, 12025948], ["fork", 10883516.5, 6032569, 15734464], ["msync", 8951466.0, 64958, 17837974], ["fsync", 8002745.0, 7463011, 8542479], ["waitpid", 7057136.0, 2843716, 11270556]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-17 12:25:11.82029 2026-07-17 12:16:29.647549 +889 42 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-17 12:28:37.250285 2026-07-17 12:28:37.25029 +890 42 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-17 12:25:11' --until '2026-07-17 12:28:36' 0 OOM records 2026-07-17 12:25:11.309307 2026-07-17 12:28:36.180434 +891 42 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-17 12:25:11' --until '2026-07-17 12:28:36' 0 systemd errors records 2026-07-17 12:25:11.309307 2026-07-17 12:28:36.180434 +892 43 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.299, "userspace_time": 7.296, "total_time": 10.596} 2026-07-17 12:37:38.659863 2026-07-17 12:37:38.65987 +893 43 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-17 12:44:17.023319 2026-07-17 12:44:17.023345 +894 43 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-17 12:44:16' --until '2026-07-17 12:44:16' 0 OOM records 2026-07-17 12:44:16.479154 2026-07-17 12:44:16.717491 +895 43 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-17 12:44:16' --until '2026-07-17 12:44:16' 0 systemd errors records 2026-07-17 12:44:16.479154 2026-07-17 12:44:16.717491 +896 43 loader systemd-analyze critical-chain [{"service_name": "docker.service", "slow_time_s": 2.46}, {"service_name": "containerd.service", "slow_time_s": 2.73}] 2026-07-17 12:37:38.659863 2026-07-17 12:37:38.65987 +897 43 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-17 12:44:18.191277 2026-07-17 12:44:18.19128 +898 43 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-17 12:44:17' --until '2026-07-17 12:44:17' 0 OOM records 2026-07-17 12:44:17.363698 2026-07-17 12:44:17.878678 +899 43 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-17 12:44:17' --until '2026-07-17 12:44:17' 0 systemd errors records 2026-07-17 12:44:17.363698 2026-07-17 12:44:17.878678 +900 43 loader /usr/bin/stress-ng --timeout 200 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 201.96}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 201.75, "usr_time_secs": 0.05, "sys_time_secs": 0.16, "bogo_ops_s_real_time": 11.26, "bogo_ops_s_usr_sys_time": 10849.01, "cpu_used_per_instance": 0.03, "rss_max_kb": 4944, "top10_slowest": [["syslog", 773391525.0, 565224405, 981558645], ["fdatasync", 149056823.0, 21339755, 276773891], ["fsync", 50569002.0, 4510026, 96627978], ["sync", 14917034.5, 11054942, 18779127], ["pwritev2", 13970987.0, 3834958, 24107016], ["msync", 7060718.5, 542, 14120895], ["syncfs", 3341341.5, 2243185, 4439498], ["execve", 1463316.5, 1230046, 1696587], ["execveat", 1150516.5, 949518, 1351515], ["pause", 451741.0, 37039, 866443]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-17 12:44:18.634933 2026-07-17 12:37:38.65987 +901 43 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-17 12:47:41.154881 2026-07-17 12:47:41.154884 +902 43 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-17 12:44:18' --until '2026-07-17 12:47:40' 1 OOM records 2026-07-17 12:44:18.524721 2026-07-17 12:47:40.849664 +903 43 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-17 12:44:18' --until '2026-07-17 12:47:40' 0 systemd errors records 2026-07-17 12:44:18.524721 2026-07-17 12:47:40.849664 +904 44 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 3.022, "userspace_time": 21.66, "total_time": 24.682} 2026-07-20 18:26:55.373547 2026-07-20 18:26:55.373553 +905 44 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 18:32:46.900961 2026-07-20 18:32:46.900964 +906 44 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 18:32:46' --until '2026-07-20 18:32:46' 0 OOM records 2026-07-20 18:32:46.050003 2026-07-20 18:32:46.478711 +907 44 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 18:32:46' --until '2026-07-20 18:32:46' 0 systemd errors records 2026-07-20 18:32:46.050003 2026-07-20 18:32:46.478711 +908 44 loader systemd-analyze critical-chain [{"service_name": "containerd.service", "slow_time_s": 5.054}, {"service_name": "docker.service", "slow_time_s": 9.245}] 2026-07-20 18:26:55.373547 2026-07-20 18:26:55.373553 +909 44 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 18:33:01.840203 2026-07-20 18:33:01.840207 +910 44 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 18:32:47' --until '2026-07-20 18:33:01' 0 OOM records 2026-07-20 18:32:47.767334 2026-07-20 18:33:01.415393 +911 44 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 18:32:47' --until '2026-07-20 18:33:01' 0 systemd errors records 2026-07-20 18:32:47.767334 2026-07-20 18:33:01.415393 +912 44 loader /usr/bin/stress-ng --timeout 200 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --perf --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 1405153.75}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 1405149.97, "usr_time_secs": 0.33, "sys_time_secs": 3.45, "bogo_ops_s_real_time": 0.0, "bogo_ops_s_usr_sys_time": 600.53, "cpu_used_per_instance": 0.0, "rss_max_kb": 4888, "stats": {"cpu_clock": 2825501692, "task_clock": 2871128448, "page_faults_total": 9300, "page_faults_minor": 9300, "page_faults_major": 0, "context_switches": 752, "cgroup_switches": 644, "cpu_migrations": 100, "alignment_faults": 0, "emulation_faults": 0, "page_faults_user": 8688, "page_faults_kernel": 612, "system_call_enter": 12944, "system_call_exit": 12956, "tlb_flushes": 2800, "software_i/o_tlb_bounces": 0, "kmalloc": 27700, "kfree": 27696, "kmem_cache_alloc": 94788, "kmem_cache_free": 19904, "mm_page_alloc": 8480, "mm_page_free": 1008, "mmap_lock_start": 3084, "mmap_lock_release": 3084, "mmap_lock_acquire": 3188, "rcu_utilization": 12120, "rcu_stall_warning": 0, "rcu_preempt_task": 36, "sched_migrate_task": 176, "sched_move_numa": 0, "sched_wakeup": 144, "sched_proc_exec": 16, "sched_proc_exit": 0, "sched_proc_fork": 264, "sched_proc_free": 168, "sched_proc_wait": 572, "sched_switch": 752, "sched_wait_task": 0, "new_task": 264, "signal_generate": 332, "signal_deliver": 100, "irq_entry": 20, "irq_exit": 20, "soft_irq_entry": 2688, "soft_irq_exit": 2688, "tasklet_entry": 0, "tasklet_exit": 0, "nmi_handler": 0, "ipi_entry": 0, "ipi_raise": 0, "ipi_send_cpu": 996, "ipi_send_cpu_mask": 0, "ipi_exit": 0, "x86_platform_ipi_entry": 0, "call_function_entry": 0, "irq_work_entry": 0, "local_timer_entry": 2828, "reschedule_entry": 88, "thermal_apic_entry": 0, "block_bio_complete": 0, "iomap_read_page": 0, "iomap_write_page": 0, "io_uring_submit_req": 0, "io_uring_complete": 0, "writeback_dirty_inode": 636, "writeback_dirty_folio": 168, "migrate_mm_pages": 0, "skb_consume": 228, "skb_kfree": 12, "lock_contention_begin": 6404, "lock_contention_end": 6392, "maple_tree_op": 220, "maple_tree_read": 1184, "maple_tree_write": 17724, "qdisc_enqueue": 0, "qdisc_dequeue": 0, "msr_read": 0, "msr_write": 0, "iommu_io_page_fault": 0, "iommu_map": 0, "iommu_unmap": 0, "filemap_page_cache_add": 200, "filemap_page_cache_del": 228, "filemap_page_fault": 1008, "filemap_map_pages": 3624, "oom_compact_retry": 0, "oom_wake_reaper": 0, "oom_mark_victim": 0, "oom_score_adjust_update": 4, "thermal_zone_trip": 0}, "top10_slowest": [["syslog", 797887763.5, 686475282, 909300245], ["execve", 24894466.5, 23054698, 26734235], ["execveat", 24827897.0, 24422631, 25233163], ["fdatasync", 10469469.5, 9555547, 11383392], ["sync", 9997589.0, 9385508, 10609670], ["pwritev2", 8276664.5, 7449515, 9103814], ["syncfs", 6025045.0, 3037565, 9012525], ["clone", 4970323.0, 3759161, 6181485], ["clone3", 4234270.5, 4202782, 4265759], ["msync", 4178340.5, 53952, 8302729]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 18:33:02.880235 2026-07-20 18:26:55.373553 +913 44 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 18:36:28.149875 2026-07-20 18:36:28.149878 +914 44 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 18:33:02' --until '2026-07-20 18:36:27' 0 OOM records 2026-07-20 18:33:02.67229 2026-07-20 18:36:27.723685 +915 44 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 18:33:02' --until '2026-07-20 18:36:27' 0 systemd errors records 2026-07-20 18:33:02.67229 2026-07-20 18:36:27.723685 +916 45 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 2.889, "userspace_time": 8.3, "total_time": 11.19} 2026-07-20 19:08:00.987038 2026-07-20 19:08:00.987045 +917 45 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:13:14.008485 2026-07-20 19:13:14.008488 +918 45 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:13:13' --until '2026-07-20 19:13:13' 0 OOM records 2026-07-20 19:13:13.481044 2026-07-20 19:13:13.703003 +919 45 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:13:13' --until '2026-07-20 19:13:13' 0 systemd errors records 2026-07-20 19:13:13.481044 2026-07-20 19:13:13.703003 +920 45 loader systemd-analyze critical-chain [{"service_name": "docker.service", "slow_time_s": 2.61}, {"service_name": "containerd.service", "slow_time_s": 2.964}] 2026-07-20 19:08:00.987038 2026-07-20 19:08:00.987045 +921 45 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:13:15.177009 2026-07-20 19:13:15.177013 +922 45 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:13:14' --until '2026-07-20 19:13:14' 0 OOM records 2026-07-20 19:13:14.349107 2026-07-20 19:13:14.871229 +923 45 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:13:14' --until '2026-07-20 19:13:14' 0 systemd errors records 2026-07-20 19:13:14.349107 2026-07-20 19:13:14.871229 +924 45 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 50% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 11.82}, "metrics": {"0": {"bogo_ops": 1898, "real_time_secs": 11.02, "usr_time_secs": 0.08, "sys_time_secs": 0.72, "bogo_ops_s_real_time": 172.29, "bogo_ops_s_usr_sys_time": 2391.49, "cpu_used_per_instance": 1.8, "rss_max_kb": 2076, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:13:15.61222 2026-07-20 19:08:00.987045 +926 45 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 70% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 11.96}, "metrics": {"0": {"bogo_ops": 3032, "real_time_secs": 11.01, "usr_time_secs": 0.11, "sys_time_secs": 0.84, "bogo_ops_s_real_time": 275.34, "bogo_ops_s_usr_sys_time": 3191.59, "cpu_used_per_instance": 2.16, "rss_max_kb": 2188, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:13:38.046868 2026-07-20 19:08:00.987045 +927 45 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 80% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 11.84}, "metrics": {"0": {"bogo_ops": 3518, "real_time_secs": 11.01, "usr_time_secs": 0.16, "sys_time_secs": 0.67, "bogo_ops_s_real_time": 319.62, "bogo_ops_s_usr_sys_time": 4250.71, "cpu_used_per_instance": 1.88, "rss_max_kb": 2252, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:13:49.263362 2026-07-20 19:08:00.987045 +928 45 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 90% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 11.97}, "metrics": {"0": {"bogo_ops": 4130, "real_time_secs": 11.01, "usr_time_secs": 0.14, "sys_time_secs": 0.82, "bogo_ops_s_real_time": 375.13, "bogo_ops_s_usr_sys_time": 4315.8, "cpu_used_per_instance": 2.17, "rss_max_kb": 2284, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:14:00.479765 2026-07-20 19:08:00.987045 +929 45 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:14:12.004594 2026-07-20 19:14:12.004599 +930 45 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:13:15' --until '2026-07-20 19:14:11' 1 OOM records 2026-07-20 19:13:15.506838 2026-07-20 19:14:11.698752 +931 45 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:13:15' --until '2026-07-20 19:14:11' 0 systemd errors records 2026-07-20 19:13:15.506838 2026-07-20 19:14:11.698752 +932 45 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 60163072, "io_kbytes": 58753, "bw_bytes": 12030208, "bw": 11748, "iops": 23496.5007, "runtime": 5001, "total_ios": 117506, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3978, "max": 460680, "mean": 11119.898899, "stddev": 16703.757228, "N": 117506}, "clat_ns": {"min": 360, "max": 98486018, "mean": 30950.67845, "stddev": 303249.564266, "N": 117506, "percentile": {"1.000000": 430, "5.000000": 470, "10.000000": 556, "20.000000": 27776, "30.000000": 30592, "40.000000": 31872, "50.000000": 33024, "60.000000": 34048, "70.000000": 34560, "80.000000": 35584, "90.000000": 39168, "95.000000": 41728, "99.000000": 49408, "99.500000": 53504, "99.900000": 71168, "99.950000": 79360, "99.990000": 264192}}, "lat_ns": {"min": 23034, "max": 98490528, "mean": 42070.577349, "stddev": 303100.61842, "N": 117506}, "bw_min": 9904, "bw_max": 12400, "bw_agg": 100.0, "bw_mean": 11754.6, "bw_dev": 1041.555951, "bw_samples": 5, "iops_min": 19808, "iops_max": 24801, "iops_mean": 23509.6, "iops_stddev": 2083.409657, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.2, "sys_cpu": 16.56, "ctx": 117515, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 7.566422, "750": 3.840655, "1000": 0.970163}, "latency_us": {"2": 0.096165, "4": 0.015318, "10": 0.01, "20": 0.039147, "50": 86.607492, "100": 0.836553, "250": 0.012765, "500": 0.01, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.01, "100": 0.01, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:14:13.557589 2026-07-20 19:08:00.987045 +933 45 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 70477312, "io_kbytes": 68825, "bw_bytes": 14092643, "bw": 13762, "iops": 27524.695061, "runtime": 5001, "total_ios": 137651, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3627, "max": 62750, "mean": 4693.706657, "stddev": 1291.108492, "N": 137651}, "clat_ns": {"min": 1873, "max": 5620870, "mean": 31211.383324, "stddev": 25413.4303, "N": 137651, "percentile": {"1.000000": 21888, "5.000000": 24448, "10.000000": 26240, "20.000000": 27776, "30.000000": 29056, "40.000000": 30336, "50.000000": 31104, "60.000000": 31872, "70.000000": 32640, "80.000000": 33024, "90.000000": 35584, "95.000000": 37632, "99.000000": 44288, "99.500000": 49920, "99.900000": 71168, "99.950000": 77312, "99.990000": 569344}}, "lat_ns": {"min": 19678, "max": 5626350, "mean": 35905.089981, "stddev": 25476.476613, "N": 137651}, "bw_min": 13027, "bw_max": 14598, "bw_agg": 100.0, "bw_mean": 13767.6, "bw_dev": 585.54274, "bw_samples": 5, "iops_min": 26054, "iops_max": 29196, "iops_mean": 27535.4, "iops_stddev": 1171.183931, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.98, "sys_cpu": 29.56, "ctx": 137650, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.01, "20": 0.348708, "50": 99.155836, "100": 0.473662, "250": 0.01, "500": 0.01, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:14:19.17121 2026-07-20 19:08:00.987045 +934 45 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 9387520, "io_kbytes": 9167, "bw_bytes": 1877128, "bw": 1833, "iops": 3666.266747, "runtime": 5001, "total_ios": 18335, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4208, "max": 101524, "mean": 9453.027161, "stddev": 3096.774009, "N": 18335}, "clat_ns": {"min": 19768, "max": 6581137, "mean": 261814.379493, "stddev": 168229.915716, "N": 18335, "percentile": {"1.000000": 38656, "5.000000": 47872, "10.000000": 52480, "20.000000": 57600, "30.000000": 69120, "40.000000": 342016, "50.000000": 350208, "60.000000": 358400, "70.000000": 362496, "80.000000": 370688, "90.000000": 378880, "95.000000": 387072, "99.000000": 432128, "99.500000": 444416, "99.900000": 708608, "99.950000": 1171456, "99.990000": 6520832}}, "lat_ns": {"min": 31950, "max": 6590123, "mean": 271267.406654, "stddev": 168370.230376, "N": 18335}, "bw_min": 1790, "bw_max": 1905, "bw_agg": 99.992755, "bw_mean": 1833.6, "bw_dev": 46.682973, "bw_samples": 5, "iops_min": 3581, "iops_max": 3810, "iops_mean": 3667.6, "iops_stddev": 93.232505, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.26, "sys_cpu": 6.18, "ctx": 18335, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 6.866648, "100": 26.583038, "250": 0.250886, "500": 66.015817, "750": 0.196346, "1000": 0.016362}, "latency_ms": {"2": 0.032724, "4": 0.021816, "10": 0.010908, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:15:12.921264 2026-07-20 19:08:00.987045 +997 45 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:41:49' --until '2026-07-20 19:43:49' 0 systemd errors records 2026-07-20 19:41:49.456116 2026-07-20 19:43:49.942453 +935 45 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 16.57}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 40741376, "io_kbytes": 39786, "bw_bytes": 2458001, "bw": 2400, "iops": 4800.784314, "runtime": 16575, "total_ios": 79573, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4529, "max": 11676789272, "mean": 203517.800573, "stddev": 41394153.751988, "N": 79573}, "clat_ns": {"min": 340, "max": 106363, "mean": 4068.913941, "stddev": 10698.101289, "N": 79573, "percentile": {"1.000000": 402, "5.000000": 430, "10.000000": 442, "20.000000": 462, "30.000000": 470, "40.000000": 482, "50.000000": 502, "60.000000": 516, "70.000000": 548, "80.000000": 628, "90.000000": 12992, "95.000000": 35072, "99.000000": 41728, "99.500000": 44800, "99.900000": 52992, "99.950000": 59136, "99.990000": 72192}}, "lat_ns": {"min": 22952, "max": 11676795263, "mean": 207586.714514, "stddev": 41394157.668235, "N": 79573}, "bw_min": 0, "bw_max": 8679, "bw_agg": 100.0, "bw_mean": 6632.0, "bw_dev": 3300.394401, "bw_samples": 6, "iops_min": 1, "iops_max": 17359, "iops_mean": 13264.833333, "iops_stddev": 6600.710156, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.892965, "sys_cpu": 11.493906, "ctx": 79578, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 49.868674, "750": 34.098249, "1000": 4.055396}, "latency_us": {"2": 1.720433, "4": 0.057809, "10": 0.170912, "20": 0.046498, "50": 9.828711, "100": 0.152062, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:16:02.42286 2026-07-20 19:08:00.987045 +936 45 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 13.74}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 305184768, "io_kbytes": 298032, "bw_bytes": 22203329, "bw": 21682, "iops": 5420.734813, "runtime": 13745, "total_ios": 74508, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 7243, "max": 231983, "mean": 11824.284278, "stddev": 2471.19964, "N": 74508}, "clat_ns": {"min": 1232, "max": 9781137120, "mean": 172110.192838, "stddev": 35833561.330364, "N": 74508, "percentile": {"1.000000": 30080, "5.000000": 32640, "10.000000": 33536, "20.000000": 35072, "30.000000": 36096, "40.000000": 37120, "50.000000": 38144, "60.000000": 39680, "70.000000": 41216, "80.000000": 43776, "90.000000": 48384, "95.000000": 55552, "99.000000": 69120, "99.500000": 75264, "99.900000": 101888, "99.950000": 127488, "99.990000": 489472}}, "lat_ns": {"min": 34395, "max": 9781155746, "mean": 183934.477117, "stddev": 35833586.441243, "N": 74508}, "bw_min": 67715, "bw_max": 78720, "bw_agg": 100.0, "bw_mean": 74523.75, "bw_dev": 5265.37016, "bw_samples": 4, "iops_min": 16928, "iops_max": 19680, "iops_mean": 18630.75, "iops_stddev": 1316.665833, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.771246, "sys_cpu": 6.635623, "ctx": 74530, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.0, "20": 0.01, "50": 91.65593, "100": 8.228647, "250": 0.088581, "500": 0.01, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.01}}} 2026-07-20 19:16:20.051504 2026-07-20 19:08:00.987045 +937 45 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 297689088, "io_kbytes": 290712, "bw_bytes": 59525912, "bw": 58130, "iops": 14532.693461, "runtime": 5001, "total_ios": 72678, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3636, "max": 99711, "mean": 5215.66419, "stddev": 2317.881877, "N": 72678}, "clat_ns": {"min": 2244, "max": 21171553, "mean": 63071.941592, "stddev": 291209.401989, "N": 72678, "percentile": {"1.000000": 24448, "5.000000": 27008, "10.000000": 28544, "20.000000": 30080, "30.000000": 30848, "40.000000": 31616, "50.000000": 32384, "60.000000": 33024, "70.000000": 34560, "80.000000": 38656, "90.000000": 50944, "95.000000": 59136, "99.000000": 749568, "99.500000": 2572288, "99.900000": 3751936, "99.950000": 4816896, "99.990000": 6782976}}, "lat_ns": {"min": 22323, "max": 21188957, "mean": 68287.605782, "stddev": 291405.33654, "N": 72678}, "bw_min": 22634, "bw_max": 93032, "bw_agg": 100.0, "bw_mean": 58159.2, "bw_dev": 25085.06594, "bw_samples": 5, "iops_min": 5658, "iops_max": 23258, "iops_mean": 14539.6, "iops_stddev": 6271.423148, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.92, "sys_cpu": 16.98, "ctx": 72676, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.01, "10": 0.0, "20": 0.030271, "50": 89.154902, "100": 8.89265, "250": 0.221525, "500": 0.264179, "750": 0.438922, "1000": 0.148601}, "latency_ms": {"2": 0.276562, "4": 0.484328, "10": 0.08118, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:16:34.373998 2026-07-20 19:08:00.987045 +938 45 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 74014720, "io_kbytes": 72280, "bw_bytes": 14799984, "bw": 14453, "iops": 3613.277345, "runtime": 5001, "total_ios": 18070, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4298, "max": 72298, "mean": 10217.725844, "stddev": 2925.521758, "N": 18070}, "clat_ns": {"min": 1462, "max": 14822952, "mean": 264967.037133, "stddev": 196823.236868, "N": 18070, "percentile": {"1.000000": 40704, "5.000000": 51456, "10.000000": 55552, "20.000000": 60672, "30.000000": 72192, "40.000000": 342016, "50.000000": 354304, "60.000000": 362496, "70.000000": 366592, "80.000000": 370688, "90.000000": 382976, "95.000000": 395264, "99.000000": 444416, "99.500000": 497664, "99.900000": 1384448, "99.950000": 2088960, "99.990000": 4489216}}, "lat_ns": {"min": 29396, "max": 14834153, "mean": 275184.762977, "stddev": 196914.515774, "N": 18070}, "bw_min": 13980, "bw_max": 14632, "bw_agg": 100.0, "bw_mean": 14458.8, "bw_dev": 272.556783, "bw_samples": 5, "iops_min": 3495, "iops_max": 3658, "iops_mean": 3614.6, "iops_stddev": 68.090381, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.3, "sys_cpu": 6.92, "ctx": 18070, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 4.095185, "100": 29.97233, "250": 0.415053, "500": 65.019369, "750": 0.276702, "1000": 0.083011}, "latency_ms": {"2": 0.066408, "4": 0.049806, "10": 0.011068, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:17:28.436061 2026-07-20 19:08:00.987045 +1045 46 loader /usr/bin/perf bench --format default --repeat 3 sched messaging {"tool": "perf", "test_type": {"benchmark": "sched/messaging"}, "time": {"duration_sec": 0.121}, "metrics": {}} 2026-07-20 19:54:49.340461 2026-07-20 19:54:49.542233 +1046 46 loader /usr/bin/perf bench --format default --repeat 3 sched messaging --thread {"tool": "perf", "test_type": {"benchmark": "sched/messaging"}, "time": {"duration_sec": 0.108}, "metrics": {}} 2026-07-20 19:54:49.548588 2026-07-20 19:54:49.764806 +1047 46 loader /usr/bin/perf bench --format default --repeat 3 sched pipe {"tool": "perf", "test_type": {"benchmark": "sched/pipe"}, "time": {"duration_sec": 15.33}, "metrics": {"usecs_per_op": 15.330034, "ops_per_sec": 65231}} 2026-07-20 19:54:49.76945 2026-07-20 19:55:05.182129 +1048 46 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:55:05.4922 2026-07-20 19:55:05.492203 +1049 46 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:52:21' --until '2026-07-20 19:55:05' 1 OOM records 2026-07-20 19:52:21.973871 2026-07-20 19:55:05.187132 +939 45 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 324628480, "io_kbytes": 317020, "bw_bytes": 64912713, "bw": 63391, "iops": 15847.830434, "runtime": 5001, "total_ios": 79255, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 7965, "max": 545822, "mean": 16423.072197, "stddev": 5254.453237, "N": 79255}, "clat_ns": {"min": 1814, "max": 15311975, "mean": 45817.777263, "stddev": 102466.874163, "N": 79255, "percentile": {"1.000000": 32384, "5.000000": 35072, "10.000000": 36608, "20.000000": 38144, "30.000000": 39680, "40.000000": 40704, "50.000000": 42240, "60.000000": 43776, "70.000000": 46336, "80.000000": 49408, "90.000000": 55040, "95.000000": 61184, "99.000000": 75264, "99.500000": 82432, "99.900000": 107008, "99.950000": 181248, "99.990000": 5799936}}, "lat_ns": {"min": 39917, "max": 15329057, "mean": 62240.849461, "stddev": 102684.431628, "N": 79255}, "bw_min": 61640, "bw_max": 66280, "bw_agg": 100.0, "bw_mean": 63416.2, "bw_dev": 1958.223736, "bw_samples": 5, "iops_min": 15410, "iops_max": 16570, "iops_mean": 15854.0, "iops_stddev": 489.605964, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.9, "sys_cpu": 26.9, "ctx": 79310, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.01, "50": 81.944357, "100": 17.924421, "250": 0.088323, "500": 0.01, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.010094, "10": 0.010094, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:18:36.638721 2026-07-20 19:08:00.987045 +940 45 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.09}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 211812352, "io_kbytes": 206848, "bw_bytes": 41613428, "bw": 40638, "iops": 19.842829, "runtime": 5090, "total_ios": 101, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 90683, "max": 198339, "mean": 125332.653465, "stddev": 23070.551704, "N": 101}, "clat_ns": {"min": 761565, "max": 327262292, "mean": 50259048.970297, "stddev": 79834350.196899, "N": 101, "percentile": {"1.000000": 815104, "5.000000": 831488, "10.000000": 839680, "20.000000": 864256, "30.000000": 880640, "40.000000": 937984, "50.000000": 1089536, "60.000000": 15269888, "70.000000": 46399488, "80.000000": 111673344, "90.000000": 204472320, "95.000000": 206569472, "99.000000": 304087040, "99.500000": 329252864, "99.900000": 329252864, "99.950000": 329252864, "99.990000": 329252864}}, "lat_ns": {"min": 860353, "max": 327360769, "mean": 50384381.623762, "stddev": 79831124.935518, "N": 101}, "bw_min": 14350, "bw_max": 96256, "bw_agg": 100.0, "bw_mean": 40973.0, "bw_dev": 34086.616846, "bw_samples": 5, "iops_min": 7, "iops_max": 47, "iops_mean": 20.0, "iops_stddev": 16.643317, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.176852, "sys_cpu": 0.078601, "ctx": 105, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 46.534653}, "latency_ms": {"2": 9.90099, "4": 0.0, "10": 0.0, "20": 6.930693, "50": 7.920792, "100": 4.950495, "250": 21.782178, "500": 1.980198, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:18:42.753171 2026-07-20 19:08:00.987045 +941 45 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 520093696, "io_kbytes": 507904, "bw_bytes": 103686940, "bw": 101256, "iops": 49.441786, "runtime": 5016, "total_ios": 248, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 28495, "max": 804354, "mean": 66140.290323, "stddev": 50505.884801, "N": 248}, "clat_ns": {"min": 206946, "max": 69537338, "mean": 20155230.443548, "stddev": 20778121.84844, "N": 248, "percentile": {"1.000000": 222208, "5.000000": 264192, "10.000000": 301056, "20.000000": 358400, "30.000000": 448512, "40.000000": 7372800, "50.000000": 13434880, "60.000000": 14614528, "70.000000": 33816576, "80.000000": 45875200, "90.000000": 51118080, "95.000000": 54263808, "99.000000": 61603840, "99.500000": 61603840, "99.900000": 69730304, "99.950000": 69730304, "99.990000": 69730304}}, "lat_ns": {"min": 248114, "max": 69617180, "mean": 20221370.733871, "stddev": 20778396.661521, "N": 248}, "bw_min": 45101, "bw_max": 237330, "bw_agg": 99.909362, "bw_mean": 101165.6, "bw_dev": 78047.013596, "bw_samples": 5, "iops_min": 22, "iops_max": 115, "iops_mean": 49.2, "iops_stddev": 37.731949, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.01994, "sys_cpu": 0.458624, "ctx": 248, "majf": 0, "minf": 558, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 4.435484, "500": 29.435484, "750": 0.0, "1000": 2.822581}, "latency_ms": {"2": 2.016129, "4": 0.403226, "10": 2.016129, "20": 19.758065, "50": 25.0, "100": 14.112903, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:18:48.375345 2026-07-20 19:08:00.987045 +942 45 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.05}, "metrics": {"read": {"io_bytes": 251658240, "io_kbytes": 245760, "bw_bytes": 49774177, "bw": 48607, "iops": 23.734177, "runtime": 5056, "total_ios": 120, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 40759, "max": 554769, "mean": 74434.466667, "stddev": 46973.359074, "N": 120}, "clat_ns": {"min": 224468, "max": 79475693, "mean": 42053783.2, "stddev": 29625260.052276, "N": 120, "percentile": {"1.000000": 254976, "5.000000": 272384, "10.000000": 313344, "20.000000": 329728, "30.000000": 423936, "40.000000": 54263808, "50.000000": 60030976, "60.000000": 62128128, "70.000000": 64749568, "80.000000": 65273856, "90.000000": 68681728, "95.000000": 69730304, "99.000000": 76021760, "99.500000": 79167488, "99.900000": 79167488, "99.950000": 79167488, "99.990000": 79167488}}, "lat_ns": {"min": 311153, "max": 79531639, "mean": 42128217.666667, "stddev": 29619256.513929, "N": 120}, "bw_min": 41001, "bw_max": 57344, "bw_agg": 100.0, "bw_mean": 48759.6, "bw_dev": 6192.388093, "bw_samples": 5, "iops_min": 20, "iops_max": 28, "iops_mean": 23.8, "iops_stddev": 3.03315, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.019782, "sys_cpu": 0.217606, "ctx": 121, "majf": 0, "minf": 557, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.833333, "500": 30.833333, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 5.833333, "100": 62.5, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:19:50.259996 2026-07-20 19:08:00.987045 +1050 46 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:52:21' --until '2026-07-20 19:55:05' 0 systemd errors records 2026-07-20 19:52:21.973871 2026-07-20 19:55:05.187132 +1117 49 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:16:52' --until '2026-07-20 20:16:53' 0 systemd errors records 2026-07-20 20:16:52.750697 2026-07-20 20:16:53.062978 +1296 52 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:11:14' --until '2026-07-22 14:12:21' 1 OOM records 2026-07-22 14:11:14.663618 2026-07-22 14:12:21.658512 +943 45 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.1}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 589299712, "io_kbytes": 575488, "bw_bytes": 115616973, "bw": 112907, "iops": 55.130469, "runtime": 5097, "total_ios": 281, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 37632, "max": 433035, "mean": 80430.010676, "stddev": 41882.557178, "N": 281}, "clat_ns": {"min": 344657, "max": 452012742, "mean": 18052644.800712, "stddev": 56971729.047303, "N": 281, "percentile": {"1.000000": 382976, "5.000000": 428032, "10.000000": 444416, "20.000000": 481280, "30.000000": 561152, "40.000000": 634880, "50.000000": 692224, "60.000000": 741376, "70.000000": 815104, "80.000000": 1036288, "90.000000": 51642368, "95.000000": 141557760, "99.000000": 350224384, "99.500000": 446693376, "99.900000": 450887680, "99.950000": 450887680, "99.990000": 450887680}}, "lat_ns": {"min": 388911, "max": 452084218, "mean": 18133074.811388, "stddev": 56981277.265431, "N": 281}, "bw_min": 6150, "bw_max": 507904, "bw_agg": 100.0, "bw_mean": 114692.8, "bw_dev": 219897.564655, "bw_samples": 5, "iops_min": 3, "iops_max": 248, "iops_mean": 56.0, "iops_stddev": 107.373181, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.176609, "sys_cpu": 0.294349, "ctx": 284, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 20.996441, "750": 39.857651, "1000": 18.505338}, "latency_ms": {"2": 4.270463, "4": 0.0, "10": 1.067616, "20": 3.202847, "50": 1.779359, "100": 1.779359, "250": 7.47331, "500": 1.067616, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:20:49.626089 2026-07-20 19:08:00.987045 +944 45 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 234881024, "io_kbytes": 229376, "bw_bytes": 46948035, "bw": 45847, "iops": 11.193284, "runtime": 5003, "total_ios": 56, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 166629, "max": 374986, "mean": 245365.214286, "stddev": 47664.559311, "N": 56}, "clat_ns": {"min": 1160473, "max": 260214780, "mean": 89078167.178571, "stddev": 85724401.446749, "N": 56, "percentile": {"1.000000": 1155072, "5.000000": 1286144, "10.000000": 1335296, "20.000000": 1581056, "30.000000": 3129344, "40.000000": 49545216, "50.000000": 68681728, "60.000000": 98041856, "70.000000": 126353408, "80.000000": 189792256, "90.000000": 231735296, "95.000000": 252706816, "99.000000": 261095424, "99.500000": 261095424, "99.900000": 261095424, "99.950000": 261095424, "99.990000": 261095424}}, "lat_ns": {"min": 1386364, "max": 260505044, "mean": 89323532.392857, "stddev": 85720629.994895, "N": 56}, "bw_min": 24576, "bw_max": 106496, "bw_agg": 98.301571, "bw_mean": 45069.0, "bw_dev": 34991.533162, "bw_samples": 5, "iops_min": 6, "iops_max": 26, "iops_mean": 11.0, "iops_stddev": 8.544004, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.19992, "sys_cpu": 0.09996, "ctx": 57, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 26.785714, "4": 3.571429, "10": 1.785714, "20": 3.571429, "50": 5.357143, "100": 19.642857, "250": 33.928571, "500": 5.357143, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:20:55.505176 2026-07-20 19:08:00.987045 +945 45 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.05}, "metrics": {"read": {"io_bytes": 184549376, "io_kbytes": 180224, "bw_bytes": 36558909, "bw": 35702, "iops": 8.716323, "runtime": 5048, "total_ios": 44, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 92926, "max": 1177075, "mean": 171843.022727, "stddev": 158032.325539, "N": 44}, "clat_ns": {"min": 79222952, "max": 164291021, "mean": 114527438.636364, "stddev": 16913628.464712, "N": 44, "percentile": {"1.000000": 79167488, "5.000000": 89653248, "10.000000": 93847552, "20.000000": 105381888, "30.000000": 110624768, "40.000000": 111673344, "50.000000": 112721920, "60.000000": 113770496, "70.000000": 114819072, "80.000000": 120061952, "90.000000": 137363456, "95.000000": 149946368, "99.000000": 164626432, "99.500000": 164626432, "99.900000": 164626432, "99.950000": 164626432, "99.990000": 164626432}}, "lat_ns": {"min": 79370614, "max": 164401281, "mean": 114699281.659091, "stddev": 16932817.930882, "N": 44}, "bw_min": 32768, "bw_max": 41001, "bw_agg": 98.686183, "bw_mean": 35233.8, "bw_dev": 3679.628269, "bw_samples": 5, "iops_min": 8, "iops_max": 10, "iops_mean": 8.6, "iops_stddev": 0.894427, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 0.178324, "ctx": 44, "majf": 0, "minf": 1070, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 11.363636, "250": 88.636364, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:21:01.138206 2026-07-20 19:08:00.987045 +946 45 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 415236096, "io_kbytes": 405504, "bw_bytes": 82749321, "bw": 80809, "iops": 19.728976, "runtime": 5018, "total_ios": 99, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 62810, "max": 1236156, "mean": 135896.040404, "stddev": 116681.727998, "N": 99}, "clat_ns": {"min": 350888, "max": 130919180, "mean": 50535178.111111, "stddev": 51011418.15084, "N": 99, "percentile": {"1.000000": 350208, "5.000000": 411648, "10.000000": 481280, "20.000000": 528384, "30.000000": 692224, "40.000000": 14745600, "50.000000": 27918336, "60.000000": 62128128, "70.000000": 107479040, "80.000000": 113770496, "90.000000": 117964800, "95.000000": 122159104, "99.000000": 130547712, "99.500000": 130547712, "99.900000": 130547712, "99.950000": 130547712, "99.990000": 130547712}}, "lat_ns": {"min": 432986, "max": 131023618, "mean": 50671074.151515, "stddev": 51022499.73951, "N": 99}, "bw_min": 57344, "bw_max": 102502, "bw_agg": 99.396257, "bw_mean": 80322.4, "bw_dev": 21059.439185, "bw_samples": 5, "iops_min": 14, "iops_max": 25, "iops_mean": 19.6, "iops_stddev": 5.128353, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 0.318916, "ctx": 99, "majf": 0, "minf": 1070, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 14.141414, "750": 21.212121, "1000": 2.020202}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 10.10101, "50": 10.10101, "100": 9.090909, "250": 33.333333, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:22:16.522498 2026-07-20 19:08:00.987045 +1077 47 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 957 --vm-method all --vm-bytes 70% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 206.62}, "metrics": {"0": {"bogo_ops": 1633599, "real_time_secs": 38.21, "usr_time_secs": 165.14, "sys_time_secs": 3.27, "bogo_ops_s_real_time": 42753.06, "bogo_ops_s_usr_sys_time": 9699.76, "cpu_used_per_instance": 0.46, "rss_max_kb": 9720, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 957, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:07:29.606001 2026-07-20 19:08:00.987045 +1078 47 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:08:13.059043 2026-07-20 20:08:13.059051 +947 45 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260720-191413Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.06}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 620756992, "io_kbytes": 606208, "bw_bytes": 122606555, "bw": 119732, "iops": 29.231681, "runtime": 5063, "total_ios": 148, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 59893, "max": 329817, "mean": 153471.472973, "stddev": 77164.947793, "N": 148}, "clat_ns": {"min": 830944, "max": 689805806, "mean": 34047583.398649, "stddev": 109325750.616386, "N": 148, "percentile": {"1.000000": 839680, "5.000000": 970752, "10.000000": 1089536, "20.000000": 1138688, "30.000000": 1187840, "40.000000": 1220608, "50.000000": 1318912, "60.000000": 1630208, "70.000000": 8355840, "80.000000": 20578304, "90.000000": 54263808, "95.000000": 206569472, "99.000000": 624951296, "99.500000": 692060160, "99.900000": 692060160, "99.950000": 692060160, "99.990000": 692060160}}, "lat_ns": {"min": 899004, "max": 690135623, "mean": 34201054.871622, "stddev": 109352206.730043, "N": 148}, "bw_min": 12288, "bw_max": 499712, "bw_agg": 100.0, "bw_mean": 120440.0, "bw_dev": 212205.425171, "bw_samples": 5, "iops_min": 3, "iops_max": 122, "iops_mean": 29.4, "iops_stddev": 51.810231, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.276571, "sys_cpu": 0.19755, "ctx": 159, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 6.081081}, "latency_ms": {"2": 60.810811, "4": 2.702703, "10": 4.72973, "20": 5.405405, "50": 8.783784, "100": 5.405405, "250": 2.027027, "500": 2.027027, "750": 2.027027, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:23:18.10553 2026-07-20 19:08:00.987045 +948 45 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 61635584, "io_kbytes": 60191, "bw_bytes": 12324651, "bw": 12035, "iops": 24071.585683, "runtime": 5001, "total_ios": 120382, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4078, "max": 2870483, "mean": 11004.151626, "stddev": 17866.755268, "N": 120382}, "clat_ns": {"min": 401, "max": 51611428, "mean": 29990.271959, "stddev": 158597.838972, "N": 120382, "percentile": {"1.000000": 524, "5.000000": 564, "10.000000": 604, "20.000000": 28544, "30.000000": 30336, "40.000000": 31360, "50.000000": 32128, "60.000000": 33024, "70.000000": 34048, "80.000000": 35072, "90.000000": 38144, "95.000000": 40704, "99.000000": 48384, "99.500000": 52480, "99.900000": 64768, "99.950000": 72192, "99.990000": 124416}}, "lat_ns": {"min": 22363, "max": 51617900, "mean": 40994.423585, "stddev": 158525.724246, "N": 120382}, "bw_min": 11323, "bw_max": 12579, "bw_agg": 100.0, "bw_mean": 12040.4, "bw_dev": 457.343197, "bw_samples": 5, "iops_min": 22647, "iops_max": 25157, "iops_mean": 24080.8, "iops_stddev": 913.999836, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 5.4, "sys_cpu": 16.2, "ctx": 120389, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.419498, "750": 11.479291, "1000": 0.443588}, "latency_us": {"2": 0.128757, "4": 0.01, "10": 0.014952, "20": 0.040704, "50": 86.708976, "100": 0.743467, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 0.01, "50": 0.0, "100": 0.01, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:23:32.145039 2026-07-20 19:08:00.987045 +949 45 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 66205184, "io_kbytes": 64653, "bw_bytes": 13238389, "bw": 12928, "iops": 25856.228754, "runtime": 5001, "total_ios": 129307, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3797, "max": 55566, "mean": 5213.095934, "stddev": 1574.129765, "N": 129307}, "clat_ns": {"min": 1592, "max": 4704448, "mean": 32947.334831, "stddev": 29949.5005, "N": 129307, "percentile": {"1.000000": 23424, "5.000000": 26496, "10.000000": 27776, "20.000000": 30080, "30.000000": 30592, "40.000000": 31360, "50.000000": 31872, "60.000000": 32640, "70.000000": 33024, "80.000000": 34560, "90.000000": 37120, "95.000000": 39168, "99.000000": 45824, "99.500000": 50432, "99.900000": 254976, "99.950000": 358400, "99.990000": 700416}}, "lat_ns": {"min": 20309, "max": 4709248, "mean": 38160.430766, "stddev": 30038.550989, "N": 129307}, "bw_min": 12683, "bw_max": 13144, "bw_agg": 100.0, "bw_mean": 12935.4, "bw_dev": 188.510742, "bw_samples": 5, "iops_min": 25367, "iops_max": 26288, "iops_mean": 25871.4, "iops_stddev": 376.877036, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.74, "sys_cpu": 31.3, "ctx": 129306, "majf": 0, "minf": 48, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.01, "20": 0.157764, "50": 99.306302, "100": 0.339502, "250": 0.092802, "500": 0.078882, "750": 0.01624, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:23:38.301104 2026-07-20 19:08:00.987045 +950 45 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 15839232, "io_kbytes": 15468, "bw_bytes": 3167212, "bw": 3092, "iops": 6185.962807, "runtime": 5001, "total_ios": 30936, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3756, "max": 63421, "mean": 7223.284264, "stddev": 2935.399388, "N": 30936}, "clat_ns": {"min": 16662, "max": 13411874, "mean": 153437.03184, "stddev": 238262.567231, "N": 30936, "percentile": {"1.000000": 27520, "5.000000": 30336, "10.000000": 31872, "20.000000": 35584, "30.000000": 41216, "40.000000": 45312, "50.000000": 48896, "60.000000": 54016, "70.000000": 61184, "80.000000": 333824, "90.000000": 509952, "95.000000": 610304, "99.000000": 905216, "99.500000": 1028096, "99.900000": 1433600, "99.950000": 1908736, "99.990000": 4292608}}, "lat_ns": {"min": 25558, "max": 13422504, "mean": 160660.316104, "stddev": 238528.067878, "N": 30936}, "bw_min": 2592, "bw_max": 3709, "bw_agg": 100.0, "bw_mean": 3094.6, "bw_dev": 467.649762, "bw_samples": 5, "iops_min": 5184, "iops_max": 7418, "iops_mean": 6189.6, "iops_stddev": 935.472768, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.42, "sys_cpu": 8.84, "ctx": 30936, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 52.511637, "100": 24.211275, "250": 0.096974, "500": 12.820016, "750": 7.977761, "1000": 1.810189}, "latency_ms": {"2": 0.513964, "4": 0.032325, "10": 0.01293, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:24:46.180587 2026-07-20 19:08:00.987045 +951 45 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 21.88}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 42395136, "io_kbytes": 41401, "bw_bytes": 1937797, "bw": 1892, "iops": 3784.760947, "runtime": 21878, "total_ios": 82803, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4608, "max": 16980286785, "mean": 259312.5116, "stddev": 59009471.491571, "N": 82803}, "clat_ns": {"min": 360, "max": 88949, "mean": 4219.595763, "stddev": 10932.082915, "N": 82803, "percentile": {"1.000000": 410, "5.000000": 430, "10.000000": 442, "20.000000": 450, "30.000000": 462, "40.000000": 482, "50.000000": 490, "60.000000": 510, "70.000000": 540, "80.000000": 604, "90.000000": 29312, "95.000000": 35072, "99.000000": 41728, "99.500000": 45312, "99.900000": 55040, "99.950000": 58624, "99.990000": 77312}}, "lat_ns": {"min": 27793, "max": 16980293377, "mean": 263532.107363, "stddev": 59009477.806228, "N": 82803}, "bw_min": 0, "bw_max": 9097, "bw_agg": 100.0, "bw_mean": 6901.5, "bw_dev": 3419.282191, "bw_samples": 6, "iops_min": 1, "iops_max": 18194, "iops_mean": 13803.5, "iops_stddev": 6838.259918, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.713078, "sys_cpu": 9.411711, "ctx": 82811, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 54.176781, "750": 30.570148, "1000": 3.443112}, "latency_us": {"2": 1.057933, "4": 0.073669, "10": 0.22463, "20": 0.072461, "50": 10.131275, "100": 0.249991, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:25:45.049571 2026-07-20 19:08:00.987045 +952 45 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 373194752, "io_kbytes": 364448, "bw_bytes": 74624025, "bw": 72875, "iops": 18218.756249, "runtime": 5001, "total_ios": 91112, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 36529, "max": 26421484, "mean": 53881.697515, "stddev": 91612.601495, "N": 91112}, "clat_ns": {"min": 330, "max": 28964, "mean": 508.542014, "stddev": 328.462724, "N": 91112, "percentile": {"1.000000": 370, "5.000000": 410, "10.000000": 422, "20.000000": 430, "30.000000": 442, "40.000000": 450, "50.000000": 454, "60.000000": 462, "70.000000": 482, "80.000000": 510, "90.000000": 732, "95.000000": 844, "99.000000": 932, "99.500000": 1004, "99.900000": 2832, "99.950000": 8896, "99.990000": 12608}}, "lat_ns": {"min": 36980, "max": 26426213, "mean": 54390.239529, "stddev": 91636.297444, "N": 91112}, "bw_min": 68640, "bw_max": 75252, "bw_agg": 100.0, "bw_mean": 72904.2, "bw_dev": 2497.142407, "bw_samples": 5, "iops_min": 17160, "iops_max": 18813, "iops_mean": 18225.8, "iops_stddev": 624.20165, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.66, "sys_cpu": 40.84, "ctx": 91114, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 75.940601, "750": 14.219861, "1000": 9.324787}, "latency_us": {"2": 0.37646, "4": 0.045, "10": 0.048292, "20": 0.043902, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:26:08.179331 2026-07-20 19:08:00.987045 +953 45 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 231272448, "io_kbytes": 225852, "bw_bytes": 46245240, "bw": 45161, "iops": 11290.341932, "runtime": 5001, "total_ios": 56463, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3627, "max": 78280, "mean": 5634.128066, "stddev": 2610.731013, "N": 56463}, "clat_ns": {"min": 16090, "max": 32159880, "mean": 82408.085986, "stddev": 403532.582206, "N": 56463, "percentile": {"1.000000": 24192, "5.000000": 26752, "10.000000": 28544, "20.000000": 30080, "30.000000": 31104, "40.000000": 32128, "50.000000": 33024, "60.000000": 34560, "70.000000": 37632, "80.000000": 46848, "90.000000": 55552, "95.000000": 62208, "99.000000": 2899968, "99.500000": 3194880, "99.900000": 4079616, "99.950000": 4554752, "99.990000": 7110656}}, "lat_ns": {"min": 22864, "max": 32164369, "mean": 88042.214052, "stddev": 403506.33832, "N": 56463}, "bw_min": 42092, "bw_max": 53933, "bw_agg": 100.0, "bw_mean": 45189.6, "bw_dev": 5005.53187, "bw_samples": 5, "iops_min": 10523, "iops_max": 13482, "iops_mean": 11297.0, "iops_stddev": 1250.917863, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.56, "sys_cpu": 13.6, "ctx": 56464, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.03365, "50": 82.903849, "100": 15.35873, "250": 0.108035, "500": 0.028337, "750": 0.092096, "1000": 0.076156}, "latency_ms": {"2": 0.100951, "4": 1.183076, "10": 0.111577, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:26:13.842599 2026-07-20 19:08:00.987045 +954 45 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 150495232, "io_kbytes": 146968, "bw_bytes": 30093027, "bw": 29387, "iops": 7346.930614, "runtime": 5001, "total_ios": 36742, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3787, "max": 61839, "mean": 7131.222525, "stddev": 2498.72457, "N": 36742}, "clat_ns": {"min": 16851, "max": 24154912, "mean": 128022.162022, "stddev": 317806.685251, "N": 36742, "percentile": {"1.000000": 28288, "5.000000": 32128, "10.000000": 35072, "20.000000": 40192, "30.000000": 44800, "40.000000": 46848, "50.000000": 48384, "60.000000": 50944, "70.000000": 55040, "80.000000": 61184, "90.000000": 468992, "95.000000": 493568, "99.000000": 1351680, "99.500000": 1974272, "99.900000": 3686400, "99.950000": 4489216, "99.990000": 7307264}}, "lat_ns": {"min": 25659, "max": 24160393, "mean": 135153.384546, "stddev": 317873.693238, "N": 36742}, "bw_min": 26724, "bw_max": 33069, "bw_agg": 100.0, "bw_mean": 29405.8, "bw_dev": 2329.514155, "bw_samples": 5, "iops_min": 6681, "iops_max": 8267, "iops_mean": 7351.4, "iops_stddev": 582.280259, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.46, "sys_cpu": 9.36, "ctx": 36744, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 57.792172, "100": 28.512329, "250": 0.111589, "500": 9.749061, "750": 2.378749, "1000": 0.231343}, "latency_ms": {"2": 0.721245, "4": 0.435469, "10": 0.054434, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:27:14.412298 2026-07-20 19:08:00.987045 +955 45 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 24.29}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 328155136, "io_kbytes": 320464, "bw_bytes": 13510998, "bw": 13194, "iops": 3298.583663, "runtime": 24288, "total_ios": 80116, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4648, "max": 19388500266, "mean": 300782.193719, "stddev": 68499047.420552, "N": 80116}, "clat_ns": {"min": 352, "max": 1232600, "mean": 1679.777735, "stddev": 7590.493382, "N": 80116, "percentile": {"1.000000": 422, "5.000000": 474, "10.000000": 502, "20.000000": 524, "30.000000": 532, "40.000000": 540, "50.000000": 564, "60.000000": 580, "70.000000": 612, "80.000000": 684, "90.000000": 916, "95.000000": 1096, "99.000000": 38656, "99.500000": 41728, "99.900000": 48384, "99.950000": 51968, "99.990000": 64768}}, "lat_ns": {"min": 32171, "max": 19388506638, "mean": 302461.971454, "stddev": 68499063.669463, "N": 80116}, "bw_min": 58978, "bw_max": 68608, "bw_agg": 100.0, "bw_mean": 64103.6, "bw_dev": 4637.505881, "bw_samples": 5, "iops_min": 14744, "iops_max": 17152, "iops_mean": 16025.8, "iops_stddev": 1159.51464, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.70408, "sys_cpu": 8.276032, "ctx": 80118, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 9.320236, "750": 74.397124, "1000": 9.407609}, "latency_us": {"2": 3.819462, "4": 0.096111, "10": 0.133556, "20": 0.059913, "50": 2.692346, "100": 0.072395, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:28:08.482759 2026-07-20 19:08:00.987045 +1072 47 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 25% --mmap 4 --mmap-bytes 25% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 196.31}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 3829002, "real_time_secs": 33.02, "usr_time_secs": 55.76, "sys_time_secs": 8.45, "bogo_ops_s_real_time": 115969.73, "bogo_ops_s_usr_sys_time": 59636.46, "cpu_used_per_instance": 48.62, "rss_max_kb": 197392, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 238, "real_time_secs": 33.04, "usr_time_secs": 3.7, "sys_time_secs": 62.34, "bogo_ops_s_real_time": 7.2, "bogo_ops_s_usr_sys_time": 3.6, "cpu_used_per_instance": 49.97, "rss_max_kb": 178052, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:00:13.314511 2026-07-20 19:08:00.987045 +1079 47 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:00:13' --until '2026-07-20 20:08:12' 854 OOM records 2026-07-20 20:00:13.001573 2026-07-20 20:08:12.653524 +956 45 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 639631360, "io_kbytes": 624640, "bw_bytes": 127619984, "bw": 124628, "iops": 60.853951, "runtime": 5012, "total_ios": 305, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 429469, "max": 415988326, "mean": 16428065.177049, "stddev": 53949848.360728, "N": 305}, "clat_ns": {"min": 641, "max": 49685, "mean": 1964.685246, "stddev": 3008.450424, "N": 305, "percentile": {"1.000000": 660, "5.000000": 724, "10.000000": 764, "20.000000": 940, "30.000000": 1096, "40.000000": 1256, "50.000000": 1320, "60.000000": 1560, "70.000000": 1912, "80.000000": 2352, "90.000000": 3600, "95.000000": 4512, "99.000000": 6240, "99.500000": 8256, "99.900000": 49920, "99.950000": 49920, "99.990000": 49920}}, "lat_ns": {"min": 430751, "max": 415994066, "mean": 16430029.862295, "stddev": 53951174.004898, "N": 305}, "bw_min": 6144, "bw_max": 565248, "bw_agg": 99.91664, "bw_mean": 124525.6, "bw_dev": 246426.792303, "bw_samples": 5, "iops_min": 3, "iops_max": 276, "iops_mean": 60.8, "iops_stddev": 120.32747, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.35921, "sys_cpu": 0.299341, "ctx": 307, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 8.196721, "1000": 15.081967}, "latency_us": {"2": 50.163934, "4": 19.672131, "10": 6.557377, "20": 0.0, "50": 0.327869, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:28:33.81473 2026-07-20 19:08:00.987045 +957 45 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 37643878400, "io_kbytes": 36761600, "bw_bytes": 7527270225, "bw": 7350849, "iops": 3589.282144, "runtime": 5001, "total_ios": 17950, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 23435, "max": 1031176, "mean": 30383.519276, "stddev": 9784.393249, "N": 17950}, "clat_ns": {"min": 100252, "max": 56442053, "mean": 247319.822061, "stddev": 1715572.638547, "N": 17950, "percentile": {"1.000000": 126464, "5.000000": 138240, "10.000000": 140288, "20.000000": 146432, "30.000000": 150528, "40.000000": 156672, "50.000000": 160768, "60.000000": 166912, "70.000000": 175104, "80.000000": 187392, "90.000000": 209920, "95.000000": 232448, "99.000000": 284672, "99.500000": 325632, "99.900000": 34865152, "99.950000": 46923776, "99.990000": 55312384}}, "lat_ns": {"min": 126641, "max": 56632035, "mean": 277703.341337, "stddev": 1717324.594884, "N": 17950}, "bw_min": 460339, "bw_max": 10340352, "bw_agg": 100.0, "bw_mean": 7355362.4, "bw_dev": 4410799.884532, "bw_samples": 5, "iops_min": 224, "iops_max": 5049, "iops_mean": 3591.2, "iops_stddev": 2154.077923, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.44, "sys_cpu": 14.2, "ctx": 17950, "majf": 0, "minf": 556, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 97.13649, "500": 2.529248, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.016713, "4": 0.050139, "10": 0.05571, "20": 0.022284, "50": 0.155989, "100": 0.027855, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:28:39.565809 2026-07-20 19:08:00.987045 +958 45 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 272629760, "io_kbytes": 266240, "bw_bytes": 54352025, "bw": 53078, "iops": 25.917065, "runtime": 5016, "total_ios": 130, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 38724, "max": 642955, "mean": 81991.861538, "stddev": 54612.956047, "N": 130}, "clat_ns": {"min": 146929, "max": 146728197, "mean": 38491360.430769, "stddev": 31118416.990168, "N": 130, "percentile": {"1.000000": 193536, "5.000000": 224256, "10.000000": 236544, "20.000000": 305152, "30.000000": 436224, "40.000000": 33816576, "50.000000": 50593792, "60.000000": 55836672, "70.000000": 58458112, "80.000000": 62652416, "90.000000": 73924608, "95.000000": 80216064, "99.000000": 89653248, "99.500000": 145752064, "99.900000": 145752064, "99.950000": 145752064, "99.990000": 145752064}}, "lat_ns": {"min": 203307, "max": 146815183, "mean": 38573352.292308, "stddev": 31112884.458966, "N": 130}, "bw_min": 51200, "bw_max": 55296, "bw_agg": 99.585235, "bw_mean": 52858.8, "bw_dev": 2224.946449, "bw_samples": 5, "iops_min": 25, "iops_max": 27, "iops_mean": 25.8, "iops_stddev": 1.095445, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 0.299103, "ctx": 130, "majf": 0, "minf": 558, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 11.538462, "500": 20.769231, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.769231, "4": 0.0, "10": 1.538462, "20": 0.769231, "50": 13.846154, "100": 50.0, "250": 0.769231, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:29:42.674937 2026-07-20 19:08:00.987045 +959 45 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.34}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 666894336, "io_kbytes": 651264, "bw_bytes": 124909971, "bw": 121982, "iops": 59.561716, "runtime": 5339, "total_ios": 318, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 412435, "max": 896066889, "mean": 16781927.654088, "stddev": 64458343.14218, "N": 318}, "clat_ns": {"min": 601, "max": 48281, "mean": 1909.562893, "stddev": 2990.77722, "N": 318, "percentile": {"1.000000": 636, "5.000000": 724, "10.000000": 788, "20.000000": 860, "30.000000": 988, "40.000000": 1128, "50.000000": 1256, "60.000000": 1448, "70.000000": 1912, "80.000000": 2480, "90.000000": 3216, "95.000000": 4768, "99.000000": 6176, "99.500000": 17280, "99.900000": 48384, "99.950000": 48384, "99.990000": 48384}}, "lat_ns": {"min": 413067, "max": 896075026, "mean": 16783837.216981, "stddev": 64459635.225136, "N": 318}, "bw_min": 14350, "bw_max": 573440, "bw_agg": 100.0, "bw_mean": 129854.0, "bw_dev": 247986.380634, "bw_samples": 5, "iops_min": 7, "iops_max": 280, "iops_mean": 63.4, "iops_stddev": 121.090049, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.224803, "sys_cpu": 0.449607, "ctx": 318, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 7.232704, "1000": 22.955975}, "latency_us": {"2": 41.194969, "4": 22.641509, "10": 5.345912, "20": 0.314465, "50": 0.314465, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:30:32.743503 2026-07-20 19:08:00.987045 +1080 47 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:00:13' --until '2026-07-20 20:08:12' 0 systemd errors records 2026-07-20 20:00:13.001573 2026-07-20 20:08:12.653524 +1150 50 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 5.26, "kernel_time": 1.159, "userspace_time": 14.333, "total_time": 20.753} 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1151 50 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 13:30:45.07142 2026-07-22 13:30:45.071425 +1152 50 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 13:30:44' --until '2026-07-22 13:30:44' 0 OOM records 2026-07-22 13:30:44.514135 2026-07-22 13:30:44.760482 +960 45 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.06}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 146800640, "io_kbytes": 143360, "bw_bytes": 29006251, "bw": 28326, "iops": 6.915629, "runtime": 5061, "total_ios": 35, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 115897591, "max": 174956071, "mean": 144576049.428571, "stddev": 19485026.948535, "N": 35}, "clat_ns": {"min": 3026, "max": 43323, "mean": 6220.714286, "stddev": 6556.418398, "N": 35, "percentile": {"1.000000": 3024, "5.000000": 3056, "10.000000": 3632, "20.000000": 3920, "30.000000": 4768, "40.000000": 4960, "50.000000": 5280, "60.000000": 5536, "70.000000": 5728, "80.000000": 5856, "90.000000": 6240, "95.000000": 9152, "99.000000": 43264, "99.500000": 43264, "99.900000": 43264, "99.950000": 43264, "99.990000": 43264}}, "lat_ns": {"min": 115901979, "max": 174961622, "mean": 144582270.142857, "stddev": 19483969.420489, "N": 35}, "bw_min": 24576, "bw_max": 32800, "bw_agg": 98.367542, "bw_mean": 27864.8, "bw_dev": 3440.121393, "bw_samples": 5, "iops_min": 6, "iops_max": 8, "iops_mean": 6.8, "iops_stddev": 0.83666, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.019763, "sys_cpu": 0.177866, "ctx": 36, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 20.0, "10": 77.142857, "20": 0.0, "50": 2.857143, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:30:38.621609 2026-07-20 19:08:00.987045 +961 45 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.07}, "metrics": {"read": {"io_bytes": 146800640, "io_kbytes": 143360, "bw_bytes": 28971904, "bw": 28292, "iops": 6.90744, "runtime": 5067, "total_ios": 35, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 107703, "max": 1528223, "mean": 185803.742857, "stddev": 235647.387247, "N": 35}, "clat_ns": {"min": 95438729, "max": 179181501, "mean": 144553241.971429, "stddev": 18836001.494339, "N": 35, "percentile": {"1.000000": 95944704, "5.000000": 98041856, "10.000000": 120061952, "20.000000": 130547712, "30.000000": 137363456, "40.000000": 141557760, "50.000000": 145752064, "60.000000": 149946368, "70.000000": 156237824, "80.000000": 158334976, "90.000000": 164626432, "95.000000": 168820736, "99.000000": 179306496, "99.500000": 179306496, "99.900000": 179306496, "99.950000": 179306496, "99.990000": 179306496}}, "lat_ns": {"min": 95608611, "max": 179293021, "mean": 144739045.714286, "stddev": 18866906.395864, "N": 35}, "bw_min": 24576, "bw_max": 32768, "bw_agg": 98.484159, "bw_mean": 27864.0, "bw_dev": 3430.338759, "bw_samples": 5, "iops_min": 6, "iops_max": 8, "iops_mean": 6.8, "iops_stddev": 0.83666, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.019739, "sys_cpu": 0.138176, "ctx": 35, "majf": 0, "minf": 1070, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 5.714286, "250": 94.285714, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:30:44.26572 2026-07-20 19:08:00.987045 +962 45 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.08}, "metrics": {"read": {"io_bytes": 322961408, "io_kbytes": 315392, "bw_bytes": 63612646, "bw": 62121, "iops": 15.166437, "runtime": 5077, "total_ios": 77, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 70323, "max": 1204909, "mean": 129991.87013, "stddev": 127403.370284, "N": 77}, "clat_ns": {"min": 308874, "max": 147183410, "mean": 65786516.116883, "stddev": 52666887.976839, "N": 77, "percentile": {"1.000000": 309248, "5.000000": 333824, "10.000000": 391168, "20.000000": 452608, "30.000000": 610304, "40.000000": 49020928, "50.000000": 80216064, "60.000000": 106430464, "70.000000": 110624768, "80.000000": 112721920, "90.000000": 126353408, "95.000000": 137363456, "99.000000": 147849216, "99.500000": 147849216, "99.900000": 147849216, "99.950000": 147849216, "99.990000": 147849216}}, "lat_ns": {"min": 379197, "max": 147328765, "mean": 65916507.987013, "stddev": 52648777.537543, "N": 77}, "bw_min": 49201, "bw_max": 86102, "bw_agg": 100.0, "bw_mean": 62286.2, "bw_dev": 14331.224274, "bw_samples": 5, "iops_min": 12, "iops_max": 21, "iops_mean": 15.2, "iops_stddev": 3.49285, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.019701, "sys_cpu": 0.236407, "ctx": 78, "majf": 0, "minf": 1070, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 22.077922, "750": 10.38961, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 1.298701, "50": 7.792208, "100": 12.987013, "250": 45.454545, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:31:47.644033 2026-07-20 19:08:00.987045 +963 45 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260720-192331Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.79}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 645922816, "io_kbytes": 630784, "bw_bytes": 111519823, "bw": 108906, "iops": 26.588398, "runtime": 5792, "total_ios": 154, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 879307, "max": 1175220561, "mean": 37601200.214286, "stddev": 136280837.599738, "N": 154}, "clat_ns": {"min": 771, "max": 75331, "mean": 2999.077922, "stddev": 6146.611711, "N": 154, "percentile": {"1.000000": 796, "5.000000": 860, "10.000000": 996, "20.000000": 1208, "30.000000": 1336, "40.000000": 1480, "50.000000": 1864, "60.000000": 2192, "70.000000": 2864, "80.000000": 3824, "90.000000": 5920, "95.000000": 6496, "99.000000": 10688, "99.500000": 75264, "99.900000": 75264, "99.950000": 75264, "99.990000": 75264}}, "lat_ns": {"min": 880299, "max": 1175231292, "mean": 37604199.292208, "stddev": 136283188.028818, "N": 154}, "bw_min": 8200, "bw_max": 564683, "bw_agg": 100.0, "bw_mean": 125233.4, "bw_dev": 245734.609674, "bw_samples": 5, "iops_min": 2, "iops_max": 137, "iops_mean": 30.4, "iops_stddev": 59.609563, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.103609, "sys_cpu": 0.3799, "ctx": 155, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 10.38961}, "latency_us": {"2": 44.155844, "4": 28.571429, "10": 15.584416, "20": 0.649351, "50": 0.0, "100": 0.649351, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:32:38.509809 2026-07-20 19:08:00.987045 +1153 50 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 13:30:44' --until '2026-07-22 13:30:44' 0 systemd errors records 2026-07-22 13:30:44.514135 2026-07-22 13:30:44.760482 +1154 50 loader systemd-analyze critical-chain [{"service_name": "cloud-init.service", "slow_time_s": 1.336}, {"service_name": "cloud-init-local.service", "slow_time_s": 2.245}, {"service_name": "wicked.service", "slow_time_s": 5.393}] 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +964 45 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 63338496, "io_kbytes": 61854, "bw_bytes": 12665166, "bw": 12368, "iops": 24736.652669, "runtime": 5001, "total_ios": 123708, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4068, "max": 5625946, "mean": 11076.472944, "stddev": 22380.314871, "N": 123708}, "clat_ns": {"min": 391, "max": 16156065, "mean": 28823.992676, "stddev": 63908.876493, "N": 123708, "percentile": {"1.000000": 510, "5.000000": 548, "10.000000": 628, "20.000000": 27520, "30.000000": 29056, "40.000000": 30080, "50.000000": 31104, "60.000000": 32128, "70.000000": 33024, "80.000000": 34560, "90.000000": 37120, "95.000000": 39680, "99.000000": 47360, "99.500000": 52480, "99.900000": 63744, "99.950000": 74240, "99.990000": 224256}}, "lat_ns": {"min": 21604, "max": 16161306, "mean": 39900.465621, "stddev": 65245.05727, "N": 123708}, "bw_min": 12052, "bw_max": 13223, "bw_agg": 100.0, "bw_mean": 12375.6, "bw_dev": 485.871691, "bw_samples": 5, "iops_min": 24104, "iops_max": 26446, "iops_mean": 24751.4, "iops_stddev": 971.652098, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.6, "sys_cpu": 17.94, "ctx": 123721, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.605458, "750": 10.742232, "1000": 0.845539}, "latency_us": {"2": 0.286966, "4": 0.01, "10": 0.01, "20": 0.066285, "50": 86.706599, "100": 0.716203, "250": 0.01, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:32:48.045074 2026-07-20 19:08:00.987045 +965 45 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 47795200, "io_kbytes": 46675, "bw_bytes": 9557128, "bw": 9333, "iops": 18666.266747, "runtime": 5001, "total_ios": 93350, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3697, "max": 74247, "mean": 4996.064563, "stddev": 1793.756719, "N": 93350}, "clat_ns": {"min": 482, "max": 21989641, "mean": 48121.850166, "stddev": 184726.48699, "N": 93350, "percentile": {"1.000000": 22912, "5.000000": 25216, "10.000000": 25984, "20.000000": 27264, "30.000000": 28032, "40.000000": 29056, "50.000000": 29824, "60.000000": 30848, "70.000000": 31872, "80.000000": 34048, "90.000000": 40704, "95.000000": 50432, "99.000000": 634880, "99.500000": 1662976, "99.900000": 1941504, "99.950000": 2637824, "99.990000": 5275648}}, "lat_ns": {"min": 20159, "max": 21994089, "mean": 53117.91473, "stddev": 184783.081877, "N": 93350}, "bw_min": 8982, "bw_max": 9903, "bw_agg": 100.0, "bw_mean": 9336.6, "bw_dev": 343.220483, "bw_samples": 5, "iops_min": 17966, "iops_max": 19806, "iops_mean": 18673.6, "iops_stddev": 685.924777, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.24, "sys_cpu": 20.36, "ctx": 93348, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.01, "20": 0.18211, "50": 94.544189, "100": 3.69684, "250": 0.160686, "500": 0.128548, "750": 0.680236, "1000": 0.01714}, "latency_ms": {"2": 0.522764, "4": 0.041778, "10": 0.022496, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:32:53.781487 2026-07-20 19:08:00.987045 +966 45 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 11202048, "io_kbytes": 10939, "bw_bytes": 2239961, "bw": 2187, "iops": 4374.925015, "runtime": 5001, "total_ios": 21879, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4097, "max": 110778, "mean": 8837.8744, "stddev": 3091.779548, "N": 21879}, "clat_ns": {"min": 1824, "max": 3976163, "mean": 218392.143425, "stddev": 162525.152393, "N": 21879, "percentile": {"1.000000": 33024, "5.000000": 42752, "10.000000": 47360, "20.000000": 54016, "30.000000": 57600, "40.000000": 64768, "50.000000": 325632, "60.000000": 350208, "70.000000": 358400, "80.000000": 366592, "90.000000": 374784, "95.000000": 382976, "99.000000": 423936, "99.500000": 436224, "99.900000": 618496, "99.950000": 962560, "99.990000": 3620864}}, "lat_ns": {"min": 31353, "max": 3981534, "mean": 227230.017825, "stddev": 162616.08705, "N": 21879}, "bw_min": 2147, "bw_max": 2225, "bw_agg": 100.0, "bw_mean": 2188.2, "bw_dev": 29.777508, "bw_samples": 5, "iops_min": 4295, "iops_max": 4450, "iops_mean": 4376.6, "iops_stddev": 59.209796, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.18, "sys_cpu": 7.02, "ctx": 21877, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.0, "20": 0.0, "50": 13.058184, "100": 33.895516, "250": 0.2331, "500": 52.621235, "750": 0.123406, "1000": 0.013712}, "latency_ms": {"2": 0.027424, "4": 0.018282, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:33:55.363574 2026-07-20 19:08:00.987045 +967 45 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 46851072, "io_kbytes": 45753, "bw_bytes": 9368340, "bw": 9148, "iops": 18297.540492, "runtime": 5001, "total_ios": 91506, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4578, "max": 9577545, "mean": 49544.128604, "stddev": 37832.289608, "N": 91506}, "clat_ns": {"min": 341, "max": 5893384, "mean": 4458.554237, "stddev": 22552.06139, "N": 91506, "percentile": {"1.000000": 390, "5.000000": 410, "10.000000": 422, "20.000000": 430, "30.000000": 442, "40.000000": 454, "50.000000": 462, "60.000000": 482, "70.000000": 532, "80.000000": 732, "90.000000": 29568, "95.000000": 34048, "99.000000": 40704, "99.500000": 43264, "99.900000": 54528, "99.950000": 59648, "99.990000": 81408}}, "lat_ns": {"min": 21292, "max": 9579419, "mean": 54002.68284, "stddev": 39997.954634, "N": 91506}, "bw_min": 8672, "bw_max": 9783, "bw_agg": 100.0, "bw_mean": 9152.2, "bw_dev": 419.95083, "bw_samples": 5, "iops_min": 17345, "iops_max": 19567, "iops_mean": 18305.0, "iops_stddev": 839.86993, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.98, "sys_cpu": 43.12, "ctx": 91518, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 64.477739, "750": 15.833934, "1000": 6.021463}, "latency_us": {"2": 2.056696, "4": 0.044806, "10": 0.081962, "20": 0.055734, "50": 11.244071, "100": 0.177038, "250": 0.01, "500": 0.01, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:34:43.23182 2026-07-20 19:08:00.987045 +1051 46 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 203.92}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 2944, "real_time_secs": 12.0, "usr_time_secs": 0.06, "sys_time_secs": 1.14, "bogo_ops_s_real_time": 245.26, "bogo_ops_s_usr_sys_time": 2435.93, "cpu_used_per_instance": 10.07, "rss_max_kb": 2112, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 729091, "real_time_secs": 12.0, "usr_time_secs": 0.18, "sys_time_secs": 0.54, "bogo_ops_s_real_time": 60745.58, "bogo_ops_s_usr_sys_time": 1017487.72, "cpu_used_per_instance": 5.97, "rss_max_kb": 2280, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 810992, "real_time_secs": 12.01, "usr_time_secs": 0.11, "sys_time_secs": 0.51, "bogo_ops_s_real_time": 67550.08, "bogo_ops_s_usr_sys_time": 1310564.94, "cpu_used_per_instance": 5.15, "rss_max_kb": 2280, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 4309671, "real_time_secs": 12.01, "usr_time_secs": 0.24, "sys_time_secs": 0.79, "bogo_ops_s_real_time": 358983.07, "bogo_ops_s_usr_sys_time": 4200454.97, "cpu_used_per_instance": 8.55, "rss_max_kb": 2944, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 3255562, "real_time_secs": 12.0, "usr_time_secs": 0.24, "sys_time_secs": 0.94, "bogo_ops_s_real_time": 271248.1, "bogo_ops_s_usr_sys_time": 2750106.23, "cpu_used_per_instance": 9.86, "rss_max_kb": 2152, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 134, "real_time_secs": 12.01, "usr_time_secs": 0.08, "sys_time_secs": 0.8, "bogo_ops_s_real_time": 11.16, "bogo_ops_s_usr_sys_time": 151.71, "cpu_used_per_instance": 7.35, "rss_max_kb": 263888, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 823, "real_time_secs": 12.0, "usr_time_secs": 0.09, "sys_time_secs": 0.63, "bogo_ops_s_real_time": 68.56, "bogo_ops_s_usr_sys_time": 1140.16, "cpu_used_per_instance": 6.01, "rss_max_kb": 57248, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 5770517, "real_time_secs": 12.0, "usr_time_secs": 2.36, "sys_time_secs": 0.02, "bogo_ops_s_real_time": 480869.12, "bogo_ops_s_usr_sys_time": 2430230.62, "cpu_used_per_instance": 19.79, "rss_max_kb": 2152, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 3050997, "real_time_secs": 12.01, "usr_time_secs": 0.27, "sys_time_secs": 1.64, "bogo_ops_s_real_time": 254099.63, "bogo_ops_s_usr_sys_time": 1601604.34, "cpu_used_per_instance": 15.87, "rss_max_kb": 2152, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 35762, "real_time_secs": 12.0, "usr_time_secs": 0.34, "sys_time_secs": 1.3, "bogo_ops_s_real_time": 2980.15, "bogo_ops_s_usr_sys_time": 21742.61, "cpu_used_per_instance": 13.71, "rss_max_kb": 2156, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 2685617, "real_time_secs": 12.0, "usr_time_secs": 2.43, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 223714.29, "bogo_ops_s_usr_sys_time": 1101007.9, "cpu_used_per_instance": 20.32, "rss_max_kb": 2152, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 11499813, "real_time_secs": 12.01, "usr_time_secs": 2.05, "sys_time_secs": 30.29, "bogo_ops_s_real_time": 957620.29, "bogo_ops_s_usr_sys_time": 355648.29, "cpu_used_per_instance": 269.26, "rss_max_kb": 2152, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 1658926, "real_time_secs": 12.0, "usr_time_secs": 0.26, "sys_time_secs": 0.55, "bogo_ops_s_real_time": 138223.71, "bogo_ops_s_usr_sys_time": 2026946.52, "cpu_used_per_instance": 6.82, "rss_max_kb": 2152, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 13, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:55:06.676363 2026-07-20 19:08:00.987045 +1155 50 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 13:30:46.225656 2026-07-22 13:30:46.225659 +968 45 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.06}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 371982336, "io_kbytes": 363264, "bw_bytes": 73543364, "bw": 71819, "iops": 17954.922894, "runtime": 5058, "total_ios": 90816, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 7766, "max": 82402, "mean": 12682.877819, "stddev": 2497.899729, "N": 90816}, "clat_ns": {"min": 712, "max": 204724247, "mean": 42311.644644, "stddev": 707112.265001, "N": 90816, "percentile": {"1.000000": 29056, "5.000000": 31872, "10.000000": 33024, "20.000000": 34560, "30.000000": 35584, "40.000000": 36608, "50.000000": 38144, "60.000000": 39680, "70.000000": 41216, "80.000000": 43264, "90.000000": 46848, "95.000000": 50944, "99.000000": 60160, "99.500000": 64768, "99.900000": 82432, "99.950000": 114176, "99.990000": 250880}}, "lat_ns": {"min": 33175, "max": 204737583, "mean": 54994.522463, "stddev": 707122.596638, "N": 90816}, "bw_min": 64176, "bw_max": 77108, "bw_agg": 100.0, "bw_mean": 72679.8, "bw_dev": 5154.292599, "bw_samples": 5, "iops_min": 16044, "iops_max": 19277, "iops_mean": 18169.8, "iops_stddev": 1288.473399, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.045284, "sys_cpu": 23.571287, "ctx": 90828, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.01, "1000": 0.01}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.01, "50": 94.362227, "100": 5.563998, "250": 0.04845, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.01, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:34:49.345684 2026-07-20 19:08:00.987045 +969 45 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 142659584, "io_kbytes": 139316, "bw_bytes": 28526211, "bw": 27857, "iops": 6964.407119, "runtime": 5001, "total_ios": 34829, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3677, "max": 122390, "mean": 6422.202102, "stddev": 3650.678487, "N": 34829}, "clat_ns": {"min": 1212, "max": 9893305, "mean": 136422.569324, "stddev": 570216.163828, "N": 34829, "percentile": {"1.000000": 22656, "5.000000": 25216, "10.000000": 26752, "20.000000": 28288, "30.000000": 29568, "40.000000": 31104, "50.000000": 35584, "60.000000": 42240, "70.000000": 47360, "80.000000": 53504, "90.000000": 78336, "95.000000": 651264, "99.000000": 2637824, "99.500000": 4145152, "99.900000": 8290304, "99.950000": 8454144, "99.990000": 8716288}}, "lat_ns": {"min": 22885, "max": 9900839, "mean": 142844.771426, "stddev": 570470.608579, "N": 34829}, "bw_min": 19848, "bw_max": 35412, "bw_agg": 100.0, "bw_mean": 27869.2, "bw_dev": 7000.745332, "bw_samples": 5, "iops_min": 4963, "iops_max": 8853, "iops_mean": 6967.4, "iops_stddev": 1749.780215, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.68, "sys_cpu": 9.12, "ctx": 34825, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.0, "20": 0.07465, "50": 74.219759, "100": 18.309455, "250": 1.116885, "500": 0.697694, "750": 2.021304, "1000": 0.961842}, "latency_ms": {"2": 1.093916, "4": 0.970456, "10": 0.525424, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:34:54.960431 2026-07-20 19:08:00.987045 +970 45 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 92950528, "io_kbytes": 90772, "bw_bytes": 18586388, "bw": 18150, "iops": 4537.692462, "runtime": 5001, "total_ios": 22693, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4049, "max": 81740, "mean": 8900.190808, "stddev": 2760.611011, "N": 22693}, "clat_ns": {"min": 19048, "max": 5591469, "mean": 210217.88199, "stddev": 179967.795986, "N": 22693, "percentile": {"1.000000": 33536, "5.000000": 41216, "10.000000": 45312, "20.000000": 50432, "30.000000": 54016, "40.000000": 58624, "50.000000": 296960, "60.000000": 350208, "70.000000": 358400, "80.000000": 362496, "90.000000": 374784, "95.000000": 382976, "99.000000": 407552, "99.500000": 444416, "99.900000": 1003520, "99.950000": 3096576, "99.990000": 4292608}}, "lat_ns": {"min": 27453, "max": 5600788, "mean": 219118.072798, "stddev": 180050.574298, "N": 22693}, "bw_min": 17632, "bw_max": 18568, "bw_agg": 100.0, "bw_mean": 18161.6, "bw_dev": 350.831584, "bw_samples": 5, "iops_min": 4408, "iops_max": 4642, "iops_mean": 4540.2, "iops_stddev": 87.622486, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.66, "sys_cpu": 7.18, "ctx": 22695, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 18.715022, "100": 30.987529, "250": 0.09254, "500": 49.759838, "750": 0.326092, "1000": 0.01322}, "latency_ms": {"2": 0.035253, "4": 0.05288, "10": 0.01322, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:36:04.742001 2026-07-20 19:08:00.987045 +971 45 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 378167296, "io_kbytes": 369304, "bw_bytes": 75618335, "bw": 73846, "iops": 18461.507698, "runtime": 5001, "total_ios": 92326, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 8036, "max": 761751, "mean": 14528.816801, "stddev": 4034.170866, "N": 92326}, "clat_ns": {"min": 1733, "max": 4948845, "mean": 38948.574562, "stddev": 18208.804289, "N": 92326, "percentile": {"1.000000": 29312, "5.000000": 32128, "10.000000": 33024, "20.000000": 35072, "30.000000": 36096, "40.000000": 36608, "50.000000": 37632, "60.000000": 38656, "70.000000": 40192, "80.000000": 42240, "90.000000": 45824, "95.000000": 49408, "99.000000": 58112, "99.500000": 63232, "99.900000": 79360, "99.950000": 93696, "99.990000": 216064}}, "lat_ns": {"min": 35208, "max": 4963484, "mean": 53477.391363, "stddev": 18800.252343, "N": 92326}, "bw_min": 71623, "bw_max": 75452, "bw_agg": 100.0, "bw_mean": 73875.0, "bw_dev": 1689.023682, "bw_samples": 5, "iops_min": 17905, "iops_max": 18863, "iops_mean": 18468.6, "iops_stddev": 422.505976, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.96, "sys_cpu": 27.56, "ctx": 92363, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.0, "20": 0.01, "50": 95.484479, "100": 4.462448, "250": 0.036826, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:36:53.310059 2026-07-20 19:08:00.987045 +1073 47 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 196.73}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 4258910, "real_time_secs": 33.12, "usr_time_secs": 54.95, "sys_time_secs": 9.34, "bogo_ops_s_real_time": 128595.71, "bogo_ops_s_usr_sys_time": 66239.34, "cpu_used_per_instance": 48.53, "rss_max_kb": 256144, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 174, "real_time_secs": 33.11, "usr_time_secs": 3.67, "sys_time_secs": 62.54, "bogo_ops_s_real_time": 5.25, "bogo_ops_s_usr_sys_time": 2.63, "cpu_used_per_instance": 49.99, "rss_max_kb": 230116, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:00:46.662881 2026-07-20 19:08:00.987045 +1156 50 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 13:30:45' --until '2026-07-22 13:30:45' 0 OOM records 2026-07-22 13:30:45.3872 2026-07-22 13:30:45.915373 +972 45 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 308281344, "io_kbytes": 301056, "bw_bytes": 61349521, "bw": 59911, "iops": 29.253731, "runtime": 5025, "total_ios": 147, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 68273, "max": 249064, "mean": 104103.863946, "stddev": 27475.372022, "N": 147}, "clat_ns": {"min": 486056, "max": 1458353241, "mean": 34069446.360544, "stddev": 135764588.149808, "N": 147, "percentile": {"1.000000": 489472, "5.000000": 544768, "10.000000": 585728, "20.000000": 692224, "30.000000": 790528, "40.000000": 839680, "50.000000": 856064, "60.000000": 913408, "70.000000": 1011712, "80.000000": 16187392, "90.000000": 99090432, "95.000000": 206569472, "99.000000": 421527552, "99.500000": 1451229184, "99.900000": 1451229184, "99.950000": 1451229184, "99.990000": 1451229184}}, "lat_ns": {"min": 563376, "max": 1458512521, "mean": 34173550.22449, "stddev": 135773800.617219, "N": 147}, "bw_min": 12288, "bw_max": 239616, "bw_agg": 100.0, "bw_mean": 74752.0, "bw_dev": 110294.513469, "bw_samples": 4, "iops_min": 6, "iops_max": 117, "iops_mean": 36.5, "iops_stddev": 53.854743, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.139331, "sys_cpu": 0.17914, "ctx": 150, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 2.040816, "750": 25.170068, "1000": 42.176871}, "latency_ms": {"2": 6.122449, "4": 0.680272, "10": 0.0, "20": 5.442177, "50": 5.442177, "100": 3.401361, "250": 7.482993, "500": 1.360544, "750": 0.0, "1000": 0.0, "2000": 0.680272, ">=2000": 0.0}}} 2026-07-20 19:36:59.490138 2026-07-20 19:08:00.987045 +973 45 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 197132288, "io_kbytes": 192512, "bw_bytes": 39277204, "bw": 38356, "iops": 18.72883, "runtime": 5019, "total_ios": 94, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 45457, "max": 783158, "mean": 77542.351064, "stddev": 75138.539185, "N": 94}, "clat_ns": {"min": 308419, "max": 107533613, "mean": 53308172.819149, "stddev": 19208488.595002, "N": 94, "percentile": {"1.000000": 309248, "5.000000": 15925248, "10.000000": 30801920, "20.000000": 45350912, "30.000000": 48496640, "40.000000": 51118080, "50.000000": 54263808, "60.000000": 56885248, "70.000000": 61079552, "80.000000": 67633152, "90.000000": 71827456, "95.000000": 85458944, "99.000000": 107479040, "99.500000": 107479040, "99.900000": 107479040, "99.950000": 107479040, "99.990000": 107479040}}, "lat_ns": {"min": 363375, "max": 107622094, "mean": 53385715.170213, "stddev": 19213251.482082, "N": 94}, "bw_min": 30720, "bw_max": 51251, "bw_agg": 99.354363, "bw_mean": 38109.4, "bw_dev": 9465.10823, "bw_samples": 5, "iops_min": 15, "iops_max": 25, "iops_mean": 18.6, "iops_stddev": 4.615192, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.019928, "sys_cpu": 0.179354, "ctx": 95, "majf": 0, "minf": 558, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 3.191489, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 1.06383, "20": 2.12766, "50": 25.531915, "100": 67.021277, "250": 1.06383, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:37:05.173644 2026-07-20 19:08:00.987045 +974 45 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 411041792, "io_kbytes": 401408, "bw_bytes": 81799361, "bw": 79882, "iops": 39.004975, "runtime": 5025, "total_ios": 196, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 35601, "max": 674087, "mean": 65144.071429, "stddev": 46575.751918, "N": 196}, "clat_ns": {"min": 197575, "max": 74449827, "mean": 25563896.744898, "stddev": 24662322.958148, "N": 196, "percentile": {"1.000000": 205824, "5.000000": 240640, "10.000000": 261120, "20.000000": 296960, "30.000000": 321536, "40.000000": 387072, "50.000000": 25034752, "60.000000": 31588352, "70.000000": 51118080, "80.000000": 53739520, "90.000000": 57933824, "95.000000": 58982400, "99.000000": 71827456, "99.500000": 74973184, "99.900000": 74973184, "99.950000": 74973184, "99.990000": 74973184}}, "lat_ns": {"min": 273225, "max": 74499085, "mean": 25629040.816327, "stddev": 24660928.360801, "N": 196}, "bw_min": 65536, "bw_max": 88064, "bw_agg": 100.0, "bw_mean": 79889.2, "bw_dev": 8941.89282, "bw_samples": 5, "iops_min": 32, "iops_max": 43, "iops_mean": 39.0, "iops_stddev": 4.358899, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.079618, "sys_cpu": 0.258758, "ctx": 196, "majf": 0, "minf": 557, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 6.632653, "500": 36.22449, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.510204, "20": 2.55102, "50": 23.979592, "100": 30.102041, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:38:30.272011 2026-07-20 19:08:00.987045 +975 45 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.07}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 687865856, "io_kbytes": 671744, "bw_bytes": 135673738, "bw": 132493, "iops": 64.69428, "runtime": 5070, "total_ios": 328, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 37616, "max": 357554, "mean": 85571.286585, "stddev": 44684.335553, "N": 328}, "clat_ns": {"min": 327523, "max": 471070425, "mean": 15369107.801829, "stddev": 44952531.96389, "N": 328, "percentile": {"1.000000": 362496, "5.000000": 411648, "10.000000": 436224, "20.000000": 464896, "30.000000": 501760, "40.000000": 552960, "50.000000": 593920, "60.000000": 651264, "70.000000": 716800, "80.000000": 847872, "90.000000": 78118912, "95.000000": 110624768, "99.000000": 204472320, "99.500000": 208666624, "99.900000": 471859200, "99.950000": 471859200, "99.990000": 471859200}}, "lat_ns": {"min": 368295, "max": 471349522, "mean": 15454679.088415, "stddev": 44971376.532323, "N": 328}, "bw_min": 18432, "bw_max": 565248, "bw_agg": 100.0, "bw_mean": 133943.6, "bw_dev": 241264.55143, "bw_samples": 5, "iops_min": 9, "iops_max": 276, "iops_mean": 65.4, "iops_stddev": 117.806197, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.25641, "sys_cpu": 0.315582, "ctx": 336, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 29.573171, "750": 46.036585, "1000": 7.012195}, "latency_ms": {"2": 1.829268, "4": 0.0, "10": 0.609756, "20": 1.219512, "50": 2.439024, "100": 4.878049, "250": 6.097561, "500": 0.304878, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:39:21.83384 2026-07-20 19:08:00.987045 +1052 46 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 2 --syscall-method all --mq 2 --pipe 2 --sem 2 --sem-sysv 2 --shm 2 --shm-sysv 2 --verify --dekker 2 --fifo 2 --futex 2 --peterson 2 --pipeherd 2 --sigq 2 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 204.14}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 3063, "real_time_secs": 12.02, "usr_time_secs": 0.11, "sys_time_secs": 1.42, "bogo_ops_s_real_time": 254.78, "bogo_ops_s_usr_sys_time": 1997.82, "cpu_used_per_instance": 6.38, "rss_max_kb": 2244, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 932030, "real_time_secs": 12.02, "usr_time_secs": 0.24, "sys_time_secs": 0.63, "bogo_ops_s_real_time": 77567.39, "bogo_ops_s_usr_sys_time": 1059571.71, "cpu_used_per_instance": 3.66, "rss_max_kb": 2364, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 1162332, "real_time_secs": 12.03, "usr_time_secs": 0.16, "sys_time_secs": 0.83, "bogo_ops_s_real_time": 96650.01, "bogo_ops_s_usr_sys_time": 1177161.89, "cpu_used_per_instance": 4.11, "rss_max_kb": 2360, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 6767979, "real_time_secs": 12.0, "usr_time_secs": 0.44, "sys_time_secs": 1.42, "bogo_ops_s_real_time": 563822.54, "bogo_ops_s_usr_sys_time": 3639052.51, "cpu_used_per_instance": 7.75, "rss_max_kb": 2872, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 1797347, "real_time_secs": 12.01, "usr_time_secs": 0.12, "sys_time_secs": 0.63, "bogo_ops_s_real_time": 149619.14, "bogo_ops_s_usr_sys_time": 2387073.51, "cpu_used_per_instance": 3.13, "rss_max_kb": 2164, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 372, "real_time_secs": 12.03, "usr_time_secs": 0.11, "sys_time_secs": 1.01, "bogo_ops_s_real_time": 30.91, "bogo_ops_s_usr_sys_time": 332.25, "cpu_used_per_instance": 4.65, "rss_max_kb": 132828, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 324, "real_time_secs": 12.01, "usr_time_secs": 0.05, "sys_time_secs": 0.37, "bogo_ops_s_real_time": 26.97, "bogo_ops_s_usr_sys_time": 766.1, "cpu_used_per_instance": 1.76, "rss_max_kb": 30584, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 7123441, "real_time_secs": 12.03, "usr_time_secs": 2.55, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 592317.62, "bogo_ops_s_usr_sys_time": 2781493.49, "cpu_used_per_instance": 10.65, "rss_max_kb": 2164, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 4770514, "real_time_secs": 12.02, "usr_time_secs": 0.37, "sys_time_secs": 2.62, "bogo_ops_s_real_time": 397042.85, "bogo_ops_s_usr_sys_time": 1596451.24, "cpu_used_per_instance": 12.44, "rss_max_kb": 2172, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 43953, "real_time_secs": 12.0, "usr_time_secs": 0.43, "sys_time_secs": 1.49, "bogo_ops_s_real_time": 3661.78, "bogo_ops_s_usr_sys_time": 22915.27, "cpu_used_per_instance": 7.99, "rss_max_kb": 2044, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1761703, "real_time_secs": 12.01, "usr_time_secs": 2.19, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 146715.95, "bogo_ops_s_usr_sys_time": 802285.67, "cpu_used_per_instance": 9.14, "rss_max_kb": 2172, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 24714103, "real_time_secs": 12.02, "usr_time_secs": 3.2, "sys_time_secs": 26.28, "bogo_ops_s_real_time": 2056923.76, "bogo_ops_s_usr_sys_time": 838165.2, "cpu_used_per_instance": 122.7, "rss_max_kb": 2172, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 2485114, "real_time_secs": 12.01, "usr_time_secs": 0.36, "sys_time_secs": 0.88, "bogo_ops_s_real_time": 206852.28, "bogo_ops_s_usr_sys_time": 2000359.0, "cpu_used_per_instance": 5.17, "rss_max_kb": 2044, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 26, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:55:18.894368 2026-07-20 19:08:00.987045 +976 45 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1401MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.12}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 239075328, "io_kbytes": 233472, "bw_bytes": 46667056, "bw": 45573, "iops": 11.126293, "runtime": 5123, "total_ios": 57, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 138527, "max": 330530, "mean": 232165.54386, "stddev": 41178.781908, "N": 57}, "clat_ns": {"min": 1578220, "max": 544425750, "mean": 89631472.122807, "stddev": 96496302.573674, "N": 57, "percentile": {"1.000000": 1581056, "5.000000": 1597440, "10.000000": 1646592, "20.000000": 1761280, "30.000000": 12517376, "40.000000": 30277632, "50.000000": 69730304, "60.000000": 111673344, "70.000000": 135266304, "80.000000": 168820736, "90.000000": 206569472, "95.000000": 208666624, "99.000000": 541065216, "99.500000": 541065216, "99.900000": 541065216, "99.950000": 541065216, "99.990000": 541065216}}, "lat_ns": {"min": 1754050, "max": 544675128, "mean": 89863637.666667, "stddev": 96501491.899128, "N": 57}, "bw_min": 28672, "bw_max": 86016, "bw_agg": 100.0, "bw_mean": 45891.4, "bw_dev": 23238.894634, "bw_samples": 5, "iops_min": 7, "iops_max": 21, "iops_mean": 11.2, "iops_stddev": 5.674504, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.175713, "sys_cpu": 0.078094, "ctx": 60, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 26.315789, "4": 0.0, "10": 0.0, "20": 8.77193, "50": 10.526316, "100": 10.526316, "250": 42.105263, "500": 0.0, "750": 1.754386, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:39:27.575808 2026-07-20 19:08:00.987045 +977 45 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1401MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.05}, "metrics": {"read": {"io_bytes": 205520896, "io_kbytes": 200704, "bw_bytes": 40681095, "bw": 39727, "iops": 9.699129, "runtime": 5052, "total_ios": 49, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 88406, "max": 1441429, "mean": 149840.122449, "stddev": 189679.321538, "N": 49}, "clat_ns": {"min": 75590352, "max": 117126766, "mean": 102942642.632653, "stddev": 5700894.180605, "N": 49, "percentile": {"1.000000": 76021760, "5.000000": 100139008, "10.000000": 101187584, "20.000000": 102236160, "30.000000": 102236160, "40.000000": 102236160, "50.000000": 102236160, "60.000000": 103284736, "70.000000": 104333312, "80.000000": 105381888, "90.000000": 107479040, "95.000000": 110624768, "99.000000": 116916224, "99.500000": 116916224, "99.900000": 116916224, "99.950000": 116916224, "99.990000": 116916224}}, "lat_ns": {"min": 75701783, "max": 117288497, "mean": 103092482.755102, "stddev": 5715150.196569, "N": 49}, "bw_min": 36864, "bw_max": 41001, "bw_agg": 99.036862, "bw_mean": 39345.2, "bw_dev": 2248.681992, "bw_samples": 5, "iops_min": 9, "iops_max": 10, "iops_mean": 9.6, "iops_stddev": 0.547723, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.039596, "sys_cpu": 0.138586, "ctx": 50, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 6.122449, "250": 93.877551, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:39:33.400244 2026-07-20 19:08:00.987045 +978 45 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1401MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.04}, "metrics": {"read": {"io_bytes": 419430400, "io_kbytes": 409600, "bw_bytes": 83170811, "bw": 81221, "iops": 19.829467, "runtime": 5043, "total_ios": 100, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 57743, "max": 1215823, "mean": 125863.02, "stddev": 113217.067871, "N": 100}, "clat_ns": {"min": 302638, "max": 114021140, "mean": 50289496.22, "stddev": 46176458.635804, "N": 100, "percentile": {"1.000000": 301056, "5.000000": 350208, "10.000000": 391168, "20.000000": 464896, "30.000000": 528384, "40.000000": 25296896, "50.000000": 45875200, "60.000000": 64749568, "70.000000": 94896128, "80.000000": 107479040, "90.000000": 112721920, "95.000000": 112721920, "99.000000": 113770496, "99.500000": 113770496, "99.900000": 113770496, "99.950000": 113770496, "99.990000": 113770496}}, "lat_ns": {"min": 422384, "max": 114134382, "mean": 50415359.24, "stddev": 46167096.892499, "N": 100}, "bw_min": 69562, "bw_max": 98304, "bw_agg": 99.872577, "bw_mean": 81118.6, "bw_dev": 10616.975925, "bw_samples": 5, "iops_min": 16, "iops_max": 24, "iops_mean": 19.6, "iops_stddev": 2.880972, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 0.317334, "ctx": 101, "majf": 0, "minf": 1071, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 26.0, "750": 11.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 1.0, "50": 14.0, "100": 24.0, "250": 24.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:40:37.47475 2026-07-20 19:08:00.987045 +979 45 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260720-193247Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 725614592, "io_kbytes": 708608, "bw_bytes": 144688851, "bw": 141297, "iops": 34.49651, "runtime": 5015, "total_ios": 173, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 72023, "max": 351314, "mean": 179564.878613, "stddev": 76097.975641, "N": 173}, "clat_ns": {"min": 805962, "max": 527793389, "mean": 28803456.242775, "stddev": 85453241.742038, "N": 173, "percentile": {"1.000000": 847872, "5.000000": 880640, "10.000000": 929792, "20.000000": 1003520, "30.000000": 1089536, "40.000000": 1171456, "50.000000": 1269760, "60.000000": 1417216, "70.000000": 1613824, "80.000000": 2113536, "90.000000": 84410368, "95.000000": 170917888, "99.000000": 471859200, "99.500000": 526385152, "99.900000": 526385152, "99.950000": 526385152, "99.990000": 526385152}}, "lat_ns": {"min": 887132, "max": 528042250, "mean": 28983021.121387, "stddev": 85477792.289638, "N": 173}, "bw_min": 8192, "bw_max": 569344, "bw_agg": 99.733395, "bw_mean": 140921.8, "bw_dev": 240954.264337, "bw_samples": 5, "iops_min": 2, "iops_max": 139, "iops_mean": 34.4, "iops_stddev": 58.828564, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.279218, "sys_cpu": 0.378939, "ctx": 178, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 19.653179}, "latency_ms": {"2": 59.537572, "4": 2.312139, "10": 0.0, "20": 2.312139, "50": 5.202312, "100": 1.734104, "250": 5.202312, "500": 3.468208, "750": 0.578035, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:41:26.786627 2026-07-20 19:08:00.987045 +980 45 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:41:35.035479 2026-07-20 19:41:35.035484 +981 45 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:14:12' --until '2026-07-20 19:41:33' 1 OOM records 2026-07-20 19:14:12.847219 2026-07-20 19:41:33.827537 +983 45 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260720-194149Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260720-194149Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260720-194149Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260720-194149Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260720-194149Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "281MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 15.01}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1517289472, "io_kbytes": 1481728, "bw_bytes": 101085241, "bw": 98716, "iops": 96.402398, "runtime": 15010, "total_ios": 1447, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 26452, "max": 579061, "mean": 64511.250173, "stddev": 22289.584201, "N": 1447}, "clat_ns": {"min": 208070, "max": 209361987, "mean": 10305142.253628, "stddev": 29076618.621649, "N": 1447, "percentile": {"1.000000": 261120, "5.000000": 301056, "10.000000": 362496, "20.000000": 407552, "30.000000": 440320, "40.000000": 473088, "50.000000": 497664, "60.000000": 528384, "70.000000": 569344, "80.000000": 651264, "90.000000": 49020928, "95.000000": 78118912, "99.000000": 129499136, "99.500000": 160432128, "99.900000": 206569472, "99.950000": 208666624, "99.990000": 208666624}}, "lat_ns": {"min": 243149, "max": 209415883, "mean": 10369653.503801, "stddev": 29076201.279923, "N": 1447}, "bw_min": 46080, "bw_max": 348160, "bw_agg": 100.0, "bw_mean": 98741.6, "bw_dev": 73277.769898, "bw_samples": 15, "iops_min": 45, "iops_max": 340, "iops_mean": 96.4, "iops_stddev": 71.563957, "iops_samples": 15}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.413085, "sys_cpu": 0.286495, "ctx": 1453, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.621977, "500": 50.103663, "750": 32.480995, "1000": 2.76434}, "latency_ms": {"2": 0.414651, "4": 0.0, "10": 0.138217, "20": 1.036628, "50": 2.557015, "100": 7.118176, "250": 2.76434, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:41:50.170013 2026-07-20 19:08:00.987045 +984 45 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 281MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260720-194149Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260720-194149Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260720-194149Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260720-194149Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260720-194149Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_512b", "detailed": {"size": "281MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 15.01}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1528320, "io_kbytes": 1492, "bw_bytes": 101840, "bw": 99, "iops": 198.907177, "runtime": 15007, "total_ios": 2985, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 7094, "max": 209041265, "mean": 4915814.043886, "stddev": 20506971.388885, "N": 2985}, "clat_ns": {"min": 440, "max": 152446496, "mean": 108854.677052, "stddev": 3472433.238079, "N": 2985, "percentile": {"1.000000": 540, "5.000000": 804, "10.000000": 1032, "20.000000": 1288, "30.000000": 1464, "40.000000": 1688, "50.000000": 1928, "60.000000": 2128, "70.000000": 2224, "80.000000": 2480, "90.000000": 2864, "95.000000": 3600, "99.000000": 156672, "99.500000": 321536, "99.900000": 62128128, "99.950000": 93847552, "99.990000": 152043520}}, "lat_ns": {"min": 37594, "max": 209045704, "mean": 5024668.720938, "stddev": 20774209.020899, "N": 2985}, "bw_min": 42, "bw_max": 417, "bw_agg": 99.544383, "bw_mean": 99.2, "bw_dev": 91.295595, "bw_samples": 15, "iops_min": 84, "iops_max": 834, "iops_mean": 198.933333, "iops_stddev": 182.495192, "iops_samples": 15}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.079968, "sys_cpu": 1.1662, "ctx": 2988, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.502513, "750": 3.819095, "1000": 4.79062}, "latency_us": {"2": 45.360134, "4": 41.474037, "10": 1.876047, "20": 0.234506, "50": 0.234506, "100": 0.368509, "250": 0.737018, "500": 0.469012, "750": 0.033501, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.067002, "250": 0.033501, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:41:50.118606 2026-07-20 19:08:00.987045 +985 45 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260720-194149Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260720-194149Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "281MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 15.03}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1401946112, "io_kbytes": 1369088, "bw_bytes": 93301351, "bw": 91114, "iops": 88.979103, "runtime": 15026, "total_ios": 1337, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 25971, "max": 14476613, "mean": 80997.850411, "stddev": 419777.974424, "N": 1337}, "clat_ns": {"min": 251696, "max": 209200440, "mean": 11154344.958115, "stddev": 30244795.841715, "N": 1337, "percentile": {"1.000000": 296960, "5.000000": 350208, "10.000000": 387072, "20.000000": 423936, "30.000000": 452608, "40.000000": 481280, "50.000000": 509952, "60.000000": 544768, "70.000000": 593920, "80.000000": 733184, "90.000000": 55836672, "95.000000": 82313216, "99.000000": 128450560, "99.500000": 202375168, "99.900000": 206569472, "99.950000": 208666624, "99.990000": 208666624}}, "lat_ns": {"min": 309981, "max": 209257943, "mean": 11235342.808527, "stddev": 30249611.835258, "N": 1337}, "bw_min": 46080, "bw_max": 286720, "bw_agg": 100.0, "bw_mean": 91234.533333, "bw_dev": 58531.720372, "bw_samples": 15, "iops_min": 45, "iops_max": 280, "iops_mean": 89.066667, "iops_stddev": 57.167007, "iops_samples": 15}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.366057, "sys_cpu": 0.425957, "ctx": 1341, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 45.998504, "750": 34.854151, "1000": 3.81451}, "latency_ms": {"2": 0.598355, "4": 0.0, "10": 0.224383, "20": 1.271503, "50": 2.393418, "100": 7.928197, "250": 2.916978, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:41:50.171203 2026-07-20 19:08:00.987045 +986 45 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260720-194149Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260720-194149Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260720-194149Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260720-194149Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260720-194149Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "281MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 19.59}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 95682560, "io_kbytes": 93440, "bw_bytes": 4883258, "bw": 4768, "iops": 18.628151, "runtime": 19594, "total_ios": 365, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 35451, "max": 135446, "mean": 62107.227397, "stddev": 17939.217742, "N": 365}, "clat_ns": {"min": 125136, "max": 13912577080, "mean": 53614553.021918, "stddev": 728144341.250713, "N": 365, "percentile": {"1.000000": 138240, "5.000000": 160768, "10.000000": 171008, "20.000000": 193536, "30.000000": 214016, "40.000000": 228352, "50.000000": 246784, "60.000000": 268288, "70.000000": 317440, "80.000000": 35913728, "90.000000": 54788096, "95.000000": 86507520, "99.000000": 164626432, "99.500000": 206569472, "99.900000": 13891534848, "99.950000": 13891534848, "99.990000": 13891534848}}, "lat_ns": {"min": 170325, "max": 13912653210, "mean": 53676660.249315, "stddev": 728145037.132689, "N": 365}, "bw_min": 8448, "bw_max": 26624, "bw_agg": 100.0, "bw_mean": 15536.333333, "bw_dev": 6623.974899, "bw_samples": 6, "iops_min": 33, "iops_max": 104, "iops_mean": 60.666667, "iops_stddev": 25.866323, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.025519, "sys_cpu": 0.107181, "ctx": 365, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 52.328767, "500": 23.835616, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.273973, "4": 0.273973, "10": 0.0, "20": 0.0, "50": 6.575342, "100": 12.328767, "250": 4.109589, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.273973}}} 2026-07-20 19:42:05.994003 2026-07-20 19:08:00.987045 +1157 50 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 13:30:45' --until '2026-07-22 13:30:45' 0 systemd errors records 2026-07-22 13:30:45.3872 2026-07-22 13:30:45.915373 +1297 52 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:11:14' --until '2026-07-22 14:12:21' 0 systemd errors records 2026-07-22 14:11:14.663618 2026-07-22 14:12:21.658512 +987 45 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260720-194149Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260720-194149Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "281MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 19.42}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 86245376, "io_kbytes": 84224, "bw_bytes": 4439916, "bw": 4335, "iops": 16.936937, "runtime": 19425, "total_ios": 329, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 22495, "max": 117991, "mean": 47201.911854, "stddev": 14223.375603, "N": 329}, "clat_ns": {"min": 145446, "max": 13912574706, "mean": 58990889.735562, "stddev": 766857738.763821, "N": 329, "percentile": {"1.000000": 154624, "5.000000": 166912, "10.000000": 179200, "20.000000": 201728, "30.000000": 218112, "40.000000": 238592, "50.000000": 259072, "60.000000": 284672, "70.000000": 350208, "80.000000": 47448064, "90.000000": 56360960, "95.000000": 99090432, "99.000000": 164626432, "99.500000": 206569472, "99.900000": 13891534848, "99.950000": 13891534848, "99.990000": 13891534848}}, "lat_ns": {"min": 183301, "max": 13912650545, "mean": 59038091.647416, "stddev": 766859210.544741, "N": 329}, "bw_min": 6662, "bw_max": 20224, "bw_agg": 100.0, "bw_mean": 13996.833333, "bw_dev": 5806.841634, "bw_samples": 6, "iops_min": 26, "iops_max": 79, "iops_mean": 54.666667, "iops_stddev": 22.69508, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.010297, "sys_cpu": 0.082372, "ctx": 329, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 46.200608, "500": 28.267477, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.303951, "4": 0.303951, "10": 0.0, "20": 0.0, "50": 6.990881, "100": 13.069909, "250": 4.559271, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.303951}}} 2026-07-20 19:42:06.076606 2026-07-20 19:08:00.987045 +988 45 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 281MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260720-194149Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260720-194149Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260720-194149Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260720-194149Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260720-194149Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "281MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 19.42}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1716224, "io_kbytes": 1676, "bw_bytes": 88351, "bw": 86, "iops": 21.570142, "runtime": 19425, "total_ios": 419, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 15911, "max": 129125, "mean": 37581.72315, "stddev": 14120.26745, "N": 419}, "clat_ns": {"min": 45631, "max": 13912441192, "mean": 46318481.400955, "stddev": 679769872.835069, "N": 419, "percentile": {"1.000000": 59648, "5.000000": 76288, "10.000000": 93696, "20.000000": 115200, "30.000000": 146432, "40.000000": 179200, "50.000000": 209920, "60.000000": 240640, "70.000000": 288768, "80.000000": 436224, "90.000000": 54263808, "95.000000": 81264640, "99.000000": 164626432, "99.500000": 204472320, "99.900000": 13891534848, "99.950000": 13891534848, "99.990000": 13891534848}}, "lat_ns": {"min": 65429, "max": 13912499918, "mean": 46356063.124105, "stddev": 679770848.546952, "N": 419}, "bw_min": 140, "bw_max": 392, "bw_agg": 100.0, "bw_mean": 278.666667, "bw_dev": 112.957809, "bw_samples": 6, "iops_min": 35, "iops_max": 98, "iops_mean": 69.666667, "iops_stddev": 28.239452, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 0.092669, "ctx": 420, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.238663, "100": 13.126492, "250": 49.880668, "500": 17.183771, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.238663, "4": 0.238663, "10": 0.0, "20": 0.0, "50": 5.250597, "100": 10.26253, "250": 3.341289, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.238663}}} 2026-07-20 19:42:05.994882 2026-07-20 19:08:00.987045 +989 45 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260720-194149Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260720-194149Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260720-194149Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260720-194149Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260720-194149Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_1M", "detailed": {"size": "281MB", "rw": "read", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 47438626816, "io_kbytes": 46326784, "bw_bytes": 3388231327, "bw": 3308819, "iops": 3231.269195, "runtime": 14001, "total_ios": 45241, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 11593, "max": 461989, "mean": 19131.051612, "stddev": 5637.920872, "N": 45241}, "clat_ns": {"min": 78284, "max": 291672094, "mean": 289522.636392, "stddev": 3302010.421022, "N": 45241, "percentile": {"1.000000": 94720, "5.000000": 100864, "10.000000": 104960, "20.000000": 110080, "30.000000": 113152, "40.000000": 117248, "50.000000": 120320, "60.000000": 123392, "70.000000": 127488, "80.000000": 134144, "90.000000": 142336, "95.000000": 150528, "99.000000": 244736, "99.500000": 276480, "99.900000": 54263808, "99.950000": 64749568, "99.990000": 82313216}}, "lat_ns": {"min": 95218, "max": 291710329, "mean": 308653.688004, "stddev": 3302959.62616, "N": 45241}, "bw_min": 14350, "bw_max": 7207936, "bw_agg": 100.0, "bw_mean": 3310302.857143, "bw_dev": 3556728.97316, "bw_samples": 14, "iops_min": 14, "iops_max": 7039, "iops_mean": 3232.642857, "iops_stddev": 3473.373346, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.142857, "sys_cpu": 8.328571, "ctx": 45246, "majf": 0, "minf": 302, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 3.949957, "250": 95.194624, "500": 0.468601, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.01, "20": 0.01, "50": 0.260825, "100": 0.106098, "250": 0.01, "500": 0.01, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:42:26.097015 2026-07-20 19:08:00.987045 +990 45 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 281MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260720-194149Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260720-194149Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260720-194149Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260720-194149Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260720-194149Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_512b", "detailed": {"size": "281MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 14.01}, "metrics": {"read": {"io_bytes": 85386240, "io_kbytes": 83385, "bw_bytes": 6092924, "bw": 5950, "iops": 11900.242615, "runtime": 14014, "total_ios": 166770, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1613, "max": 364315, "mean": 6195.986298, "stddev": 2815.513512, "N": 166770}, "clat_ns": {"min": 691, "max": 190834342, "mean": 77006.408185, "stddev": 1144113.361271, "N": 166770, "percentile": {"1.000000": 19328, "5.000000": 24704, "10.000000": 27008, "20.000000": 30080, "30.000000": 32384, "40.000000": 34560, "50.000000": 36608, "60.000000": 38656, "70.000000": 41728, "80.000000": 45824, "90.000000": 52480, "95.000000": 61184, "99.000000": 122368, "99.500000": 329728, "99.900000": 9502720, "99.950000": 12255232, "99.990000": 48496640}}, "lat_ns": {"min": 17986, "max": 190844963, "mean": 83202.394483, "stddev": 1144149.945557, "N": 166770}, "bw_min": 430, "bw_max": 10823, "bw_agg": 100.0, "bw_mean": 5957.714286, "bw_dev": 4361.699306, "bw_samples": 14, "iops_min": 861, "iops_max": 21647, "iops_mean": 11915.928571, "iops_stddev": 8723.228438, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.846428, "sys_cpu": 11.410833, "ctx": 166763, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.01, "1000": 0.01}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 1.200456, "50": 86.206152, "100": 11.024165, "250": 0.883252, "500": 0.331594, "750": 0.026983, "1000": 0.01}, "latency_ms": {"2": 0.019788, "4": 0.022786, "10": 0.187084, "20": 0.045572, "50": 0.026983, "100": 0.01, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:42:26.245991 2026-07-20 19:08:00.987045 +1320 53 loader /usr/bin/iperf3 --time 50 --port 5201 --client 10.5.0.13 --udp --version4 --json {"tool": "iperf3", "test_type": {"protocol": "UDP"}, "time": {"duration_sec": 50.0}, "metrics": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 48376, "remote_host": "10.5.0.13", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux 7d4f7032471a 6.17.0-40-generic #40~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Jun 23 16:48:12 UTC 2 x86_64", "timestamp": {"time": "Wed, 22 Jul 2026 14:24:53 GMT", "timesecs": 1784730293}, "connecting_to": {"host": "10.5.0.13", "port": 5201}, "cookie": "rugls27j2xkq523vznfw34avojcpt53eikih", "target_bitrate": 1048576, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 212992, "rcvbuf_actual": 212992, "test_start": {"protocol": "UDP", "num_streams": 1, "blksize": 1448, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 1048576, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.000367, "seconds": 1.0003670454025269, "bytes": 131768, "bits_per_second": 1053757.2232558245, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.000367, "seconds": 1.0003670454025269, "bytes": 131768, "bits_per_second": 1053757.2232558245, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.000367, "end": 2.000534, "seconds": 1.0001670122146606, "bytes": 131768, "bits_per_second": 1053967.9744744017, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 1.000367, "end": 2.000534, "seconds": 1.0001670122146606, "bytes": 131768, "bits_per_second": 1053967.9744744017, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.000534, "end": 3.001219, "seconds": 1.0006849765777588, "bytes": 130320, "bits_per_second": 1041846.3596460192, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 2.000534, "end": 3.001219, "seconds": 1.0006849765777588, "bytes": 130320, "bits_per_second": 1041846.3596460192, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.001219, "end": 4.001045, "seconds": 0.9998260140419006, "bytes": 131768, "bits_per_second": 1054327.43816948, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 3.001219, "end": 4.001045, "seconds": 0.9998260140419006, "bytes": 131768, "bits_per_second": 1054327.43816948, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.001045, "end": 5.001237, "seconds": 1.0001920461654663, "bytes": 130320, "bits_per_second": 1042359.8187937645, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 4.001045, "end": 5.001237, "seconds": 1.0001920461654663, "bytes": 130320, "bits_per_second": 1042359.8187937645, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.001237, "end": 6.001205, "seconds": 0.9999679923057556, "bytes": 131768, "bits_per_second": 1054177.7417988388, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 5.001237, "end": 6.001205, "seconds": 0.9999679923057556, "bytes": 131768, "bits_per_second": 1054177.7417988388, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.001205, "end": 7.000457, "seconds": 0.9992520213127136, "bytes": 130320, "bits_per_second": 1043340.3963800772, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 6.001205, "end": 7.000457, "seconds": 0.9992520213127136, "bytes": 130320, "bits_per_second": 1043340.3963800772, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.000457, "end": 8.000456, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 7.000457, "end": 8.000456, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.000456, "end": 9.000513, "seconds": 1.0000569820404053, "bytes": 130320, "bits_per_second": 1042500.5961889054, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 8.000456, "end": 9.000513, "seconds": 1.0000569820404053, "bytes": 130320, "bits_per_second": 1042500.5961889054, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.000513, "end": 10.001285, "seconds": 1.0007719993591309, "bytes": 131768, "bits_per_second": 1053330.829274847, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 9.000513, "end": 10.001285, "seconds": 1.0007719993591309, "bytes": 131768, "bits_per_second": 1053330.829274847, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.001285, "end": 11.000171, "seconds": 0.998885989189148, "bytes": 130320, "bits_per_second": 1043722.7183918203, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 10.001285, "end": 11.000171, "seconds": 0.998885989189148, "bytes": 130320, "bits_per_second": 1043722.7183918203, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.000171, "end": 12.001087, "seconds": 1.0009160041809082, "bytes": 131768, "bits_per_second": 1053179.2833731843, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 11.000171, "end": 12.001087, "seconds": 1.0009160041809082, "bytes": 131768, "bits_per_second": 1053179.2833731843, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.001087, "end": 13.001383, "seconds": 1.0002959966659546, "bytes": 130320, "bits_per_second": 1042251.4970317924, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 12.001087, "end": 13.001383, "seconds": 1.0002959966659546, "bytes": 130320, "bits_per_second": 1042251.4970317924, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.001383, "end": 14.001359, "seconds": 0.9999759793281555, "bytes": 131768, "bits_per_second": 1054169.3218553488, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 13.001383, "end": 14.001359, "seconds": 0.9999759793281555, "bytes": 131768, "bits_per_second": 1054169.3218553488, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.001359, "end": 15.000962, "seconds": 0.999602973461151, "bytes": 130320, "bits_per_second": 1042974.0883924235, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 14.001359, "end": 15.000962, "seconds": 0.999602973461151, "bytes": 130320, "bits_per_second": 1042974.0883924235, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.000962, "end": 16.000488, "seconds": 0.999526023864746, "bytes": 131768, "bits_per_second": 1054643.8760284293, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 15.000962, "end": 16.000488, "seconds": 0.999526023864746, "bytes": 131768, "bits_per_second": 1054643.8760284293, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.000488, "end": 17.001279, "seconds": 1.0007909536361694, "bytes": 130320, "bits_per_second": 1041736.0350951127, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 16.000488, "end": 17.001279, "seconds": 1.0007909536361694, "bytes": 130320, "bits_per_second": 1041736.0350951127, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.001279, "end": 18.00128, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 17.001279, "end": 18.00128, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.00128, "end": 19.001302, "seconds": 1.000022053718567, "bytes": 130320, "bits_per_second": 1042537.008182226, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 18.00128, "end": 19.001302, "seconds": 1.000022053718567, "bytes": 130320, "bits_per_second": 1042537.008182226, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.001302, "end": 20.001262, "seconds": 0.9999600052833557, "bytes": 131768, "bits_per_second": 1054186.1618768347, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 19.001302, "end": 20.001262, "seconds": 0.9999600052833557, "bytes": 131768, "bits_per_second": 1054186.1618768347, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.001262, "end": 21.001286, "seconds": 1.0000239610672, "bytes": 130320, "bits_per_second": 1042535.0197483337, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 20.001262, "end": 21.001286, "seconds": 1.0000239610672, "bytes": 130320, "bits_per_second": 1042535.0197483337, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.001286, "end": 22.001284, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 21.001286, "end": 22.001284, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.001284, "end": 23.001073, "seconds": 0.999788999557495, "bytes": 131768, "bits_per_second": 1054366.4717921105, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 22.001284, "end": 23.001073, "seconds": 0.999788999557495, "bytes": 131768, "bits_per_second": 1054366.4717921105, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.001073, "end": 24.001282, "seconds": 1.0002089738845825, "bytes": 130320, "bits_per_second": 1042342.1777060606, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 23.001073, "end": 24.001282, "seconds": 1.0002089738845825, "bytes": 130320, "bits_per_second": 1042342.1777060606, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.001282, "end": 25.001096, "seconds": 0.999813973903656, "bytes": 131768, "bits_per_second": 1054340.134779492, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 24.001282, "end": 25.001096, "seconds": 0.999813973903656, "bytes": 131768, "bits_per_second": 1054340.134779492, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.001096, "end": 26.001276, "seconds": 1.0001800060272217, "bytes": 130320, "bits_per_second": 1042372.3666913862, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 25.001096, "end": 26.001276, "seconds": 1.0001800060272217, "bytes": 130320, "bits_per_second": 1042372.3666913862, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.001276, "end": 27.001048, "seconds": 0.999772012233734, "bytes": 131768, "bits_per_second": 1054384.3867411187, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 26.001276, "end": 27.001048, "seconds": 0.999772012233734, "bytes": 131768, "bits_per_second": 1054384.3867411187, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.001048, "end": 28.001277, "seconds": 1.000229001045227, "bytes": 130320, "bits_per_second": 1042321.3073311588, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 27.001048, "end": 28.001277, "seconds": 1.000229001045227, "bytes": 130320, "bits_per_second": 1042321.3073311588, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.001277, "end": 29.001239, "seconds": 0.9999619722366333, "bytes": 131768, "bits_per_second": 1054184.0882630534, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 28.001277, "end": 29.001239, "seconds": 0.9999619722366333, "bytes": 131768, "bits_per_second": 1054184.0882630534, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.001239, "end": 30.001282, "seconds": 1.0000430345535278, "bytes": 130320, "bits_per_second": 1042515.1358265837, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 29.001239, "end": 30.001282, "seconds": 1.0000430345535278, "bytes": 130320, "bits_per_second": 1042515.1358265837, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.001282, "end": 31.001273, "seconds": 0.999990999698639, "bytes": 131768, "bits_per_second": 1054153.48769907, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 30.001282, "end": 31.001273, "seconds": 0.999990999698639, "bytes": 131768, "bits_per_second": 1054153.48769907, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.001273, "end": 32.001267, "seconds": 0.9999939799308777, "bytes": 130320, "bits_per_second": 1042566.276321048, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 31.001273, "end": 32.001267, "seconds": 0.9999939799308777, "bytes": 130320, "bits_per_second": 1042566.276321048, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.001267, "end": 33.001251, "seconds": 0.9999840259552002, "bytes": 131768, "bits_per_second": 1054160.8392124719, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 32.001267, "end": 33.001251, "seconds": 0.9999840259552002, "bytes": 131768, "bits_per_second": 1054160.8392124719, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.001251, "end": 34.0012, "seconds": 0.9999489784240723, "bytes": 130320, "bits_per_second": 1042613.1957683312, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 33.001251, "end": 34.0012, "seconds": 0.9999489784240723, "bytes": 130320, "bits_per_second": 1042613.1957683312, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.0012, "end": 35.001288, "seconds": 1.0000879764556885, "bytes": 131768, "bits_per_second": 1054051.2683053005, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 34.0012, "end": 35.001288, "seconds": 1.0000879764556885, "bytes": 131768, "bits_per_second": 1054051.2683053005, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.001288, "end": 36.001285, "seconds": 0.9999970197677612, "bytes": 130320, "bits_per_second": 1042563.1070801826, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 35.001288, "end": 36.001285, "seconds": 0.9999970197677612, "bytes": 130320, "bits_per_second": 1042563.1070801826, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.001285, "end": 37.001049, "seconds": 0.9997640252113342, "bytes": 131768, "bits_per_second": 1054392.8101205388, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 36.001285, "end": 37.001049, "seconds": 0.9997640252113342, "bytes": 131768, "bits_per_second": 1054392.8101205388, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.001049, "end": 38.001282, "seconds": 1.0002330541610718, "bytes": 130320, "bits_per_second": 1042317.0836664953, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 37.001049, "end": 38.001282, "seconds": 1.0002330541610718, "bytes": 130320, "bits_per_second": 1042317.0836664953, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.001282, "end": 39.00108, "seconds": 0.9997979998588562, "bytes": 131768, "bits_per_second": 1054356.9802588283, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 38.001282, "end": 39.00108, "seconds": 0.9997979998588562, "bytes": 131768, "bits_per_second": 1054356.9802588283, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.00108, "end": 40.001287, "seconds": 1.00020694732666, "bytes": 130320, "bits_per_second": 1042344.2896358004, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 39.00108, "end": 40.001287, "seconds": 1.00020694732666, "bytes": 130320, "bits_per_second": 1042344.2896358004, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.001287, "end": 41.001289, "seconds": 1.0000020265579224, "bytes": 131768, "bits_per_second": 1054141.8637204547, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 40.001287, "end": 41.001289, "seconds": 1.0000020265579224, "bytes": 131768, "bits_per_second": 1054141.8637204547, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.001289, "end": 42.001087, "seconds": 0.9997979998588562, "bytes": 130320, "bits_per_second": 1042770.6398164235, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 41.001289, "end": 42.001087, "seconds": 0.9997979998588562, "bytes": 130320, "bits_per_second": 1042770.6398164235, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.001087, "end": 43.00109, "seconds": 1.0000029802322388, "bytes": 131768, "bits_per_second": 1054140.8584154295, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 42.001087, "end": 43.00109, "seconds": 1.0000029802322388, "bytes": 131768, "bits_per_second": 1054140.8584154295, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.00109, "end": 44.001364, "seconds": 1.0002739429473877, "bytes": 130320, "bits_per_second": 1042274.476257987, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 43.00109, "end": 44.001364, "seconds": 1.0002739429473877, "bytes": 130320, "bits_per_second": 1042274.476257987, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.001364, "end": 45.001377, "seconds": 1.000012993812561, "bytes": 131768, "bits_per_second": 1054130.30282843, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 44.001364, "end": 45.001377, "seconds": 1.000012993812561, "bytes": 131768, "bits_per_second": 1054130.30282843, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 45.001377, "end": 46.001043, "seconds": 0.9996659755706787, "bytes": 130320, "bits_per_second": 1042908.3568687375, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 45.001377, "end": 46.001043, "seconds": 0.9996659755706787, "bytes": 130320, "bits_per_second": 1042908.3568687375, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 46.001043, "end": 47.001346, "seconds": 1.000303030014038, "bytes": 131768, "bits_per_second": 1053824.6594986385, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 46.001043, "end": 47.001346, "seconds": 1.000303030014038, "bytes": 131768, "bits_per_second": 1053824.6594986385, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 47.001346, "end": 48.001247, "seconds": 0.999900996685028, "bytes": 130320, "bits_per_second": 1042663.2271158838, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 47.001346, "end": 48.001247, "seconds": 0.999900996685028, "bytes": 130320, "bits_per_second": 1042663.2271158838, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 48.001247, "end": 49.00129, "seconds": 1.0000430345535278, "bytes": 131768, "bits_per_second": 1054098.637335768, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 48.001247, "end": 49.00129, "seconds": 1.0000430345535278, "bytes": 131768, "bits_per_second": 1054098.637335768, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 49.00129, "end": 50.002006, "seconds": 1.000715970993042, "bytes": 131768, "bits_per_second": 1053389.803456359, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 49.00129, "end": 50.002006, "seconds": 1.000715970993042, "bytes": 131768, "bits_per_second": 1053389.803456359, "packets": 91, "omitted": false, "sender": true}}], "end": {"streams": [{"udp": {"socket": 5, "start": 0, "end": 50.002006, "seconds": 50.002006, "bytes": 6555096, "bits_per_second": 1048773.2832158774, "jitter_ms": 0.09348973701732106, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "out_of_order": 0, "sender": true}}], "sum": {"start": 0, "end": 49.99969, "seconds": 49.99969, "bytes": 6555096, "bits_per_second": 1048773.2832158774, "jitter_ms": 0.09348973701732106, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": true}, "sum_sent": {"start": 0, "end": 50.002006, "seconds": 50.002006, "bytes": 6555096, "bits_per_second": 1048773.2832158774, "jitter_ms": 0, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": true}, "sum_received": {"start": 0, "end": 49.99969, "seconds": 49.99969, "bytes": 6555096, "bits_per_second": 1048821.8626955487, "jitter_ms": 0.09348973701732106, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "cpu_utilization_percent": {"host_total": 1.2689909271997342, "host_user": 0.13269205871096137, "host_system": 1.1363048680392864, "remote_total": 1.0564714513926892, "remote_user": 0.35942985465805, "remote_system": 0.6970475967655992}}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 48376}], "version": "iperf 3.19.1", "system_info": "Linux localhost 6.4.0-150600.23.125-default #1 SMP PREEMPT_DYNAMIC Tue Jul 14 08:35:02 UTC 2026 (1f4f2bb) x86_64", "target_bitrate": 1048576, "timestamp": {"time": "Wed, 22 Jul 2026 14:24:52 GMT", "timesecs": 1784730292}, "accepted_connection": {"host": "10.5.0.11", "port": 39196}, "cookie": "rugls27j2xkq523vznfw34avojcpt53eikih", "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 212992, "rcvbuf_actual": 212992, "test_start": {"protocol": "UDP", "num_streams": 1, "blksize": 1448, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 1048576, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001447, "seconds": 1.0014469623565674, "bytes": 131768, "bits_per_second": 1052620.8971860355, "jitter_ms": 0.12862645758785485, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.001447, "seconds": 1.0014469623565674, "bytes": 131768, "bits_per_second": 1052620.8971860355, "jitter_ms": 0.12862645758785485, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.001447, "end": 2.001075, "seconds": 0.9996280074119568, "bytes": 131768, "bits_per_second": 1054536.2796798635, "jitter_ms": 0.09764936285157377, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 1.001447, "end": 2.001075, "seconds": 0.9996280074119568, "bytes": 131768, "bits_per_second": 1054536.2796798635, "jitter_ms": 0.09764936285157377, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.001075, "end": 3.001168, "seconds": 1.0000929832458496, "bytes": 130320, "bits_per_second": 1042463.0684002218, "jitter_ms": 0.12682777693627284, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 2.001075, "end": 3.001168, "seconds": 1.0000929832458496, "bytes": 130320, "bits_per_second": 1042463.0684002218, "jitter_ms": 0.12682777693627284, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.001168, "end": 4.00109, "seconds": 0.999921977519989, "bytes": 131768, "bits_per_second": 1054226.253346779, "jitter_ms": 0.1064450847452124, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 3.001168, "end": 4.00109, "seconds": 0.999921977519989, "bytes": 131768, "bits_per_second": 1054226.253346779, "jitter_ms": 0.1064450847452124, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.00109, "end": 5.001283, "seconds": 1.0001929998397827, "bytes": 130320, "bits_per_second": 1042358.8249137956, "jitter_ms": 0.14908489800694444, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 4.00109, "end": 5.001283, "seconds": 1.0001929998397827, "bytes": 130320, "bits_per_second": 1042358.8249137956, "jitter_ms": 0.14908489800694444, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.001283, "end": 6.001121, "seconds": 0.9998379945755005, "bytes": 131768, "bits_per_second": 1054314.8047174944, "jitter_ms": 0.11216591832078385, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 5.001283, "end": 6.001121, "seconds": 0.9998379945755005, "bytes": 131768, "bits_per_second": 1054314.8047174944, "jitter_ms": 0.11216591832078385, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.001121, "end": 7.001108, "seconds": 0.999987006187439, "bytes": 130320, "bits_per_second": 1042573.5470052509, "jitter_ms": 0.0601300965023592, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 6.001121, "end": 7.001108, "seconds": 0.999987006187439, "bytes": 130320, "bits_per_second": 1042573.5470052509, "jitter_ms": 0.0601300965023592, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.001108, "end": 8.001086, "seconds": 0.999978005886078, "bytes": 131768, "bits_per_second": 1054167.1854731704, "jitter_ms": 0.06988536017469407, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 7.001108, "end": 8.001086, "seconds": 0.999978005886078, "bytes": 131768, "bits_per_second": 1054167.1854731704, "jitter_ms": 0.06988536017469407, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.001086, "end": 9.001316, "seconds": 1.0002299547195435, "bytes": 130320, "bits_per_second": 1042320.313524629, "jitter_ms": 0.02654206060821357, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 8.001086, "end": 9.001316, "seconds": 1.0002299547195435, "bytes": 130320, "bits_per_second": 1042320.313524629, "jitter_ms": 0.02654206060821357, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.001316, "end": 10.001588, "seconds": 1.0002720355987549, "bytes": 131768, "bits_per_second": 1053857.3132947756, "jitter_ms": 0.07311345722701365, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 9.001316, "end": 10.001588, "seconds": 1.0002720355987549, "bytes": 131768, "bits_per_second": 1053857.3132947756, "jitter_ms": 0.07311345722701365, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.001588, "end": 11.001372, "seconds": 0.999783992767334, "bytes": 130320, "bits_per_second": 1042785.2491559351, "jitter_ms": 0.09989703924102283, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 10.001588, "end": 11.001372, "seconds": 0.999783992767334, "bytes": 130320, "bits_per_second": 1042785.2491559351, "jitter_ms": 0.09989703924102283, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.001372, "end": 12.001421, "seconds": 1.0000489950180054, "bytes": 131768, "bits_per_second": 1054092.3547261008, "jitter_ms": 0.04042919561040035, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 11.001372, "end": 12.001421, "seconds": 1.0000489950180054, "bytes": 131768, "bits_per_second": 1054092.3547261008, "jitter_ms": 0.04042919561040035, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.001421, "end": 13.001211, "seconds": 0.9997900128364563, "bytes": 130320, "bits_per_second": 1042778.9701981549, "jitter_ms": 0.06927537616788303, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 12.001421, "end": 13.001211, "seconds": 0.9997900128364563, "bytes": 130320, "bits_per_second": 1042778.9701981549, "jitter_ms": 0.06927537616788303, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.001211, "end": 14.00142, "seconds": 1.0002089738845825, "bytes": 131768, "bits_per_second": 1053923.75745835, "jitter_ms": 0.06989819924307518, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 13.001211, "end": 14.00142, "seconds": 1.0002089738845825, "bytes": 131768, "bits_per_second": 1053923.75745835, "jitter_ms": 0.06989819924307518, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.00142, "end": 15.000206, "seconds": 0.998785972595215, "bytes": 130320, "bits_per_second": 1043827.2348689921, "jitter_ms": 0.11100878809556845, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 14.00142, "end": 15.000206, "seconds": 0.998785972595215, "bytes": 130320, "bits_per_second": 1043827.2348689921, "jitter_ms": 0.11100878809556845, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.000206, "end": 16.001361, "seconds": 1.0011550188064575, "bytes": 131768, "bits_per_second": 1052927.8485331014, "jitter_ms": 0.07764084977029985, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 15.000206, "end": 16.001361, "seconds": 1.0011550188064575, "bytes": 131768, "bits_per_second": 1052927.8485331014, "jitter_ms": 0.07764084977029985, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.001361, "end": 17.001399, "seconds": 1.0000380277633667, "bytes": 130320, "bits_per_second": 1042520.3552826244, "jitter_ms": 0.05896557873957403, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 16.001361, "end": 17.001399, "seconds": 1.0000380277633667, "bytes": 130320, "bits_per_second": 1042520.3552826244, "jitter_ms": 0.05896557873957403, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.001399, "end": 18.001403, "seconds": 1.0000040531158447, "bytes": 131768, "bits_per_second": 1054139.7274495682, "jitter_ms": 0.10049640579570675, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 17.001399, "end": 18.001403, "seconds": 1.0000040531158447, "bytes": 131768, "bits_per_second": 1054139.7274495682, "jitter_ms": 0.10049640579570675, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.001403, "end": 19.001146, "seconds": 0.9997429847717285, "bytes": 130320, "bits_per_second": 1042828.0226822976, "jitter_ms": 0.0798253450385264, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 18.001403, "end": 19.001146, "seconds": 0.9997429847717285, "bytes": 130320, "bits_per_second": 1042828.0226822976, "jitter_ms": 0.0798253450385264, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.001146, "end": 20.001387, "seconds": 1.0002410411834717, "bytes": 131768, "bits_per_second": 1053889.9691145958, "jitter_ms": 0.07041233981107037, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 19.001146, "end": 20.001387, "seconds": 1.0002410411834717, "bytes": 131768, "bits_per_second": 1053889.9691145958, "jitter_ms": 0.07041233981107037, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.001387, "end": 21.001119, "seconds": 0.99973201751709, "bytes": 131768, "bits_per_second": 1054426.5678496987, "jitter_ms": 0.09130654237070676, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 20.001387, "end": 21.001119, "seconds": 0.99973201751709, "bytes": 131768, "bits_per_second": 1054426.5678496987, "jitter_ms": 0.09130654237070676, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.001119, "end": 22.001366, "seconds": 1.0002470016479492, "bytes": 130320, "bits_per_second": 1042302.5495525989, "jitter_ms": 0.06279772605731802, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 21.001119, "end": 22.001366, "seconds": 1.0002470016479492, "bytes": 130320, "bits_per_second": 1042302.5495525989, "jitter_ms": 0.06279772605731802, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.001366, "end": 23.001326, "seconds": 0.9999600052833557, "bytes": 131768, "bits_per_second": 1054186.1618768347, "jitter_ms": 0.10700421779558181, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 22.001366, "end": 23.001326, "seconds": 0.9999600052833557, "bytes": 131768, "bits_per_second": 1054186.1618768347, "jitter_ms": 0.10700421779558181, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.001326, "end": 24.001313, "seconds": 0.999987006187439, "bytes": 130320, "bits_per_second": 1042573.5470052509, "jitter_ms": 0.086934679026182, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 23.001326, "end": 24.001313, "seconds": 0.999987006187439, "bytes": 130320, "bits_per_second": 1042573.5470052509, "jitter_ms": 0.086934679026182, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.001313, "end": 25.00136, "seconds": 1.000046968460083, "bytes": 131768, "bits_per_second": 1054094.490804985, "jitter_ms": 0.06468688525673447, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 24.001313, "end": 25.00136, "seconds": 1.000046968460083, "bytes": 131768, "bits_per_second": 1054094.490804985, "jitter_ms": 0.06468688525673447, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.00136, "end": 26.001416, "seconds": 1.0000560283660889, "bytes": 130320, "bits_per_second": 1042501.5903392483, "jitter_ms": 0.08899354759309765, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 25.00136, "end": 26.001416, "seconds": 1.0000560283660889, "bytes": 130320, "bits_per_second": 1042501.5903392483, "jitter_ms": 0.08899354759309765, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.001416, "end": 27.001541, "seconds": 1.0001250505447388, "bytes": 131768, "bits_per_second": 1054012.1952008288, "jitter_ms": 0.0912458034422222, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 26.001416, "end": 27.001541, "seconds": 1.0001250505447388, "bytes": 131768, "bits_per_second": 1054012.1952008288, "jitter_ms": 0.0912458034422222, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.001541, "end": 28.001414, "seconds": 0.9998729825019836, "bytes": 130320, "bits_per_second": 1042692.4401849528, "jitter_ms": 0.10668751243082092, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 27.001541, "end": 28.001414, "seconds": 0.9998729825019836, "bytes": 130320, "bits_per_second": 1042692.4401849528, "jitter_ms": 0.10668751243082092, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.001414, "end": 29.001367, "seconds": 0.9999529719352722, "bytes": 131768, "bits_per_second": 1054193.57668376, "jitter_ms": 0.09196441683931766, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 28.001414, "end": 29.001367, "seconds": 0.9999529719352722, "bytes": 131768, "bits_per_second": 1054193.57668376, "jitter_ms": 0.09196441683931766, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.001367, "end": 30.001368, "seconds": 1.0000009536743164, "bytes": 130320, "bits_per_second": 1042559.0057382529, "jitter_ms": 0.09594031476914686, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 29.001367, "end": 30.001368, "seconds": 1.0000009536743164, "bytes": 130320, "bits_per_second": 1042559.0057382529, "jitter_ms": 0.09594031476914686, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.001368, "end": 31.001378, "seconds": 1.0000100135803223, "bytes": 131768, "bits_per_second": 1054133.4443500845, "jitter_ms": 0.1221602885409756, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 30.001368, "end": 31.001378, "seconds": 1.0000100135803223, "bytes": 131768, "bits_per_second": 1054133.4443500845, "jitter_ms": 0.1221602885409756, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.001378, "end": 32.00137, "seconds": 0.9999920129776, "bytes": 130320, "bits_per_second": 1042568.3270165813, "jitter_ms": 0.08221650111454067, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 31.001378, "end": 32.00137, "seconds": 0.9999920129776, "bytes": 130320, "bits_per_second": 1042568.3270165813, "jitter_ms": 0.08221650111454067, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.00137, "end": 33.001448, "seconds": 1.0000779628753662, "bytes": 131768, "bits_per_second": 1054061.822309519, "jitter_ms": 0.07760912878466003, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 32.00137, "end": 33.001448, "seconds": 1.0000779628753662, "bytes": 131768, "bits_per_second": 1054061.822309519, "jitter_ms": 0.07760912878466003, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.001448, "end": 34.001417, "seconds": 0.9999690055847168, "bytes": 130320, "bits_per_second": 1042592.3145391679, "jitter_ms": 0.0545178524550379, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 33.001448, "end": 34.001417, "seconds": 0.9999690055847168, "bytes": 130320, "bits_per_second": 1042592.3145391679, "jitter_ms": 0.0545178524550379, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.001417, "end": 35.001416, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "jitter_ms": 0.07811215888293976, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 34.001417, "end": 35.001416, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "jitter_ms": 0.07811215888293976, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.001416, "end": 36.001478, "seconds": 1.0000619888305664, "bytes": 130320, "bits_per_second": 1042495.3769307132, "jitter_ms": 0.07941768195128364, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 35.001416, "end": 36.001478, "seconds": 1.0000619888305664, "bytes": 130320, "bits_per_second": 1042495.3769307132, "jitter_ms": 0.07941768195128364, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.001478, "end": 37.001101, "seconds": 0.9996230006217957, "bytes": 131768, "bits_per_second": 1054541.561512981, "jitter_ms": 0.10748845490433057, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 36.001478, "end": 37.001101, "seconds": 0.9996230006217957, "bytes": 131768, "bits_per_second": 1054541.561512981, "jitter_ms": 0.10748845490433057, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.001101, "end": 38.001248, "seconds": 1.0001469850540161, "bytes": 130320, "bits_per_second": 1042406.7817828729, "jitter_ms": 0.09673786469542447, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 37.001101, "end": 38.001248, "seconds": 1.0001469850540161, "bytes": 130320, "bits_per_second": 1042406.7817828729, "jitter_ms": 0.09673786469542447, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.001248, "end": 39.001539, "seconds": 1.0002909898757935, "bytes": 131768, "bits_per_second": 1053837.3440021623, "jitter_ms": 0.10663218684272512, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 38.001248, "end": 39.001539, "seconds": 1.0002909898757935, "bytes": 131768, "bits_per_second": 1053837.3440021623, "jitter_ms": 0.10663218684272512, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.001539, "end": 40.001259, "seconds": 0.9997199773788452, "bytes": 130320, "bits_per_second": 1042852.0221567209, "jitter_ms": 0.07914395825856904, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 39.001539, "end": 40.001259, "seconds": 0.9997199773788452, "bytes": 130320, "bits_per_second": 1042852.0221567209, "jitter_ms": 0.07914395825856904, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.001259, "end": 41.001415, "seconds": 1.000156044960022, "bytes": 131768, "bits_per_second": 1053979.5318060953, "jitter_ms": 0.11709385867191023, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 40.001259, "end": 41.001415, "seconds": 1.000156044960022, "bytes": 131768, "bits_per_second": 1053979.5318060953, "jitter_ms": 0.11709385867191023, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.001415, "end": 42.001151, "seconds": 0.9997360110282898, "bytes": 131768, "bits_per_second": 1054422.3558734753, "jitter_ms": 0.10923158677911214, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 41.001415, "end": 42.001151, "seconds": 0.9997360110282898, "bytes": 131768, "bits_per_second": 1054422.3558734753, "jitter_ms": 0.10923158677911214, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.001151, "end": 43.001405, "seconds": 1.0002540349960327, "bytes": 130320, "bits_per_second": 1042295.2205377858, "jitter_ms": 0.12629877116773386, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 42.001151, "end": 43.001405, "seconds": 1.0002540349960327, "bytes": 130320, "bits_per_second": 1042295.2205377858, "jitter_ms": 0.12629877116773386, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.001405, "end": 44.001363, "seconds": 0.9999579787254333, "bytes": 131768, "bits_per_second": 1054188.2983359294, "jitter_ms": 0.08553838339324565, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 43.001405, "end": 44.001363, "seconds": 0.9999579787254333, "bytes": 131768, "bits_per_second": 1054188.2983359294, "jitter_ms": 0.08553838339324565, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.001363, "end": 45.001363, "seconds": 1, "bytes": 130320, "bits_per_second": 1042560, "jitter_ms": 0.12500000389151367, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 44.001363, "end": 45.001363, "seconds": 1, "bytes": 130320, "bits_per_second": 1042560, "jitter_ms": 0.12500000389151367, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.001363, "end": 46.00108, "seconds": 0.9997169971466064, "bytes": 131768, "bits_per_second": 1054442.4102108288, "jitter_ms": 0.11260061636047972, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 45.001363, "end": 46.00108, "seconds": 0.9997169971466064, "bytes": 131768, "bits_per_second": 1054442.4102108288, "jitter_ms": 0.11260061636047972, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 46.00108, "end": 47.001208, "seconds": 1.0001280307769775, "bytes": 130320, "bits_per_second": 1042426.5373204849, "jitter_ms": 0.07427785991641633, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 46.00108, "end": 47.001208, "seconds": 1.0001280307769775, "bytes": 130320, "bits_per_second": 1042426.5373204849, "jitter_ms": 0.07427785991641633, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 47.001208, "end": 48.001359, "seconds": 1.0001510381698608, "bytes": 131768, "bits_per_second": 1053984.808063529, "jitter_ms": 0.0831324106058117, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 47.001208, "end": 48.001359, "seconds": 1.0001510381698608, "bytes": 131768, "bits_per_second": 1053984.808063529, "jitter_ms": 0.0831324106058117, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 48.001359, "end": 49.001373, "seconds": 1.0000139474868774, "bytes": 130320, "bits_per_second": 1042545.45911089, "jitter_ms": 0.12616164544805186, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 48.001359, "end": 49.001373, "seconds": 1.0000139474868774, "bytes": 130320, "bits_per_second": 1042545.45911089, "jitter_ms": 0.12616164544805186, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 49.001373, "end": 49.99969, "seconds": 0.998317003250122, "bytes": 131768, "bits_per_second": 1055921.1117992857, "jitter_ms": 0.09348973701732106, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 49.001373, "end": 49.99969, "seconds": 0.998317003250122, "bytes": 131768, "bits_per_second": 1055921.1117992857, "jitter_ms": 0.09348973701732106, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}], "end": {"streams": [{"udp": {"socket": 5, "start": 0, "end": 49.99969, "seconds": 49.99969, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0.09348973701732106, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "out_of_order": 0, "sender": false}}], "sum": {"start": 0, "end": 49.99969, "seconds": 49.99969, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0.09348973701732106, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "sum_sent": {"start": 0, "end": 49.99969, "seconds": 49.99969, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0, "lost_packets": 0, "packets": 0, "lost_percent": 0, "sender": true}, "sum_received": {"start": 0, "end": 49.99969, "seconds": 49.99969, "bytes": 6555096, "bits_per_second": 1048821.8626955487, "jitter_ms": 0.09348973701732106, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "cpu_utilization_percent": {"host_total": 1.0564714513926892, "host_user": 0.35942985465805, "host_system": 0.6970475967655992, "remote_total": 0, "remote_user": 0, "remote_system": 0}}}}} 2026-07-22 14:24:50.075648 2026-07-22 13:08:41.236732 +991 45 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260720-194149Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260720-194149Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_1M", "detailed": {"size": "281MB", "rw": "read", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 99934535680, "io_kbytes": 97592320, "bw_bytes": 7137671286, "bw": 6970382, "iops": 6807.013785, "runtime": 14001, "total_ios": 95305, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 13066, "max": 436567, "mean": 17964.035423, "stddev": 5166.149366, "N": 95305}, "clat_ns": {"min": 68324, "max": 77142204, "mean": 128278.151933, "stddev": 851201.946105, "N": 95305, "percentile": {"1.000000": 90624, "5.000000": 95744, "10.000000": 97792, "20.000000": 100864, "30.000000": 103936, "40.000000": 107008, "50.000000": 111104, "60.000000": 114176, "70.000000": 119296, "80.000000": 124416, "90.000000": 132096, "95.000000": 140288, "99.000000": 160768, "99.500000": 171008, "99.900000": 230400, "99.950000": 1531904, "99.990000": 54263808}}, "lat_ns": {"min": 93544, "max": 77449157, "mean": 146242.187356, "stddev": 851894.968884, "N": 95305}, "bw_min": 206848, "bw_max": 8542208, "bw_agg": 100.0, "bw_mean": 6973065.357143, "bw_dev": 2086720.559281, "bw_samples": 14, "iops_min": 202, "iops_max": 8342, "iops_mean": 6809.571429, "iops_stddev": 2037.788232, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.692857, "sys_cpu": 16.857143, "ctx": 95310, "majf": 0, "minf": 301, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 16.428309, "250": 83.479356, "500": 0.027281, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.01364, "4": 0.01, "10": 0.01, "20": 0.01, "50": 0.011542, "100": 0.01469, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:42:26.2452 2026-07-20 19:08:00.987045 +992 45 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 281MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260720-194149Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260720-194149Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260720-194149Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260720-194149Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260720-194149Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_4k", "detailed": {"size": "281MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 1460260864, "io_kbytes": 1426036, "bw_bytes": 104296897, "bw": 101852, "iops": 25463.109778, "runtime": 14001, "total_ios": 356509, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1963, "max": 105387, "mean": 5401.981061, "stddev": 1958.301789, "N": 356509}, "clat_ns": {"min": 481, "max": 1735985, "mean": 33212.600167, "stddev": 9141.274366, "N": 356509, "percentile": {"1.000000": 16512, "5.000000": 22144, "10.000000": 24448, "20.000000": 27264, "30.000000": 29056, "40.000000": 30592, "50.000000": 31872, "60.000000": 33536, "70.000000": 35584, "80.000000": 38656, "90.000000": 43776, "95.000000": 48384, "99.000000": 59136, "99.500000": 63744, "99.900000": 73216, "99.950000": 78336, "99.990000": 100864}}, "lat_ns": {"min": 16252, "max": 1743520, "mean": 38614.581228, "stddev": 9624.861567, "N": 356509}, "bw_min": 85745, "bw_max": 117260, "bw_agg": 100.0, "bw_mean": 101887.428571, "bw_dev": 10457.846894, "bw_samples": 14, "iops_min": 21436, "iops_max": 29315, "iops_mean": 25471.857143, "iops_stddev": 2614.598774, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 7.192857, "sys_cpu": 26.821429, "ctx": 356470, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.01, "750": 0.01, "1000": 0.01}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 2.631631, "50": 93.271979, "100": 4.074511, "250": 0.01, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:43:10.479146 2026-07-20 19:08:00.987045 +993 45 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260720-194149Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260720-194149Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260720-194149Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_256k", "detailed": {"size": "281MB", "rw": "read", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 44830031872, "io_kbytes": 43779328, "bw_bytes": 3201916425, "bw": 3126871, "iops": 12214.341833, "runtime": 14001, "total_ios": 171013, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4679, "max": 96549, "mean": 8988.631069, "stddev": 2755.029697, "N": 171013}, "clat_ns": {"min": 1323, "max": 41876719, "mean": 72264.762305, "stddev": 512595.828054, "N": 171013, "percentile": {"1.000000": 37632, "5.000000": 41216, "10.000000": 43264, "20.000000": 45824, "30.000000": 47872, "40.000000": 49920, "50.000000": 52480, "60.000000": 55040, "70.000000": 58112, "80.000000": 62720, "90.000000": 70144, "95.000000": 77312, "99.000000": 94720, "99.500000": 100864, "99.900000": 9502720, "99.950000": 12910592, "99.990000": 22151168}}, "lat_ns": {"min": 36502, "max": 41897239, "mean": 81253.393374, "stddev": 512857.688382, "N": 171013}, "bw_min": 20480, "bw_max": 4421632, "bw_agg": 100.0, "bw_mean": 3127942.714286, "bw_dev": 1683807.927363, "bw_samples": 14, "iops_min": 80, "iops_max": 17272, "iops_mean": 12218.357143, "iops_stddev": 6577.331439, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.478571, "sys_cpu": 17.214286, "ctx": 171014, "majf": 0, "minf": 108, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 39.639092, "100": 59.797208, "250": 0.40991, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.052043, "20": 0.076602, "50": 0.01228, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:43:10.505331 2026-07-20 19:08:00.987045 +994 45 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260720-194149Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260720-194149Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260720-194149Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260720-194149Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260720-194149Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_256k", "detailed": {"size": "281MB", "rw": "read", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 24328798208, "io_kbytes": 23758592, "bw_bytes": 1737647182, "bw": 1696921, "iops": 6628.597957, "runtime": 14001, "total_ios": 92807, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3707, "max": 211696, "mean": 8929.053961, "stddev": 2683.540243, "N": 92807}, "clat_ns": {"min": 19709, "max": 26112418, "mean": 141146.987027, "stddev": 919069.227883, "N": 92807, "percentile": {"1.000000": 36096, "5.000000": 39680, "10.000000": 42240, "20.000000": 45824, "30.000000": 48384, "40.000000": 50432, "50.000000": 52992, "60.000000": 55040, "70.000000": 58112, "80.000000": 61184, "90.000000": 66048, "95.000000": 70144, "99.000000": 4620288, "99.500000": 5668864, "99.900000": 13303808, "99.950000": 16580608, "99.990000": 22151168}}, "lat_ns": {"min": 35339, "max": 26126676, "mean": 150076.040988, "stddev": 919668.753284, "N": 92807}, "bw_min": 19712, "bw_max": 4089081, "bw_agg": 100.0, "bw_mean": 1697629.142857, "bw_dev": 2001249.70867, "bw_samples": 14, "iops_min": 77, "iops_max": 15972, "iops_mean": 6631.214286, "iops_stddev": 7817.244765, "iops_samples": 14}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.992857, "sys_cpu": 8.735714, "ctx": 92809, "majf": 0, "minf": 107, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 37.356018, "100": 61.413471, "250": 0.036635, "500": 0.01, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.049565, "4": 0.115293, "10": 0.746711, "20": 0.241361, "50": 0.024783, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:43:06.142514 2026-07-20 19:08:00.987045 +995 45 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:43:50.248879 2026-07-20 19:43:50.248884 +996 45 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:41:49' --until '2026-07-20 19:43:49' 0 OOM records 2026-07-20 19:41:49.456116 2026-07-20 19:43:49.942453 +1321 53 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:25:43.445251 2026-07-22 14:25:43.445253 +998 45 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260720-194351Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 39411777536, "io_kbytes": 38488064, "bw_bytes": 7880779351, "bw": 7696073, "iops": 7515.696861, "runtime": 5001, "total_ios": 37586, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 89997, "max": 1377441, "mean": 132271.214255, "stddev": 17221.943601, "N": 37586}, "clat_ns": {"min": 260, "max": 43655, "mean": 368.961475, "stddev": 348.75505, "N": 37586, "percentile": {"1.000000": 302, "5.000000": 310, "10.000000": 310, "20.000000": 310, "30.000000": 322, "40.000000": 322, "50.000000": 350, "60.000000": 362, "70.000000": 370, "80.000000": 382, "90.000000": 402, "95.000000": 442, "99.000000": 740, "99.500000": 1320, "99.900000": 2896, "99.950000": 5984, "99.990000": 11328}}, "lat_ns": {"min": 90318, "max": 1379865, "mean": 132640.17573, "stddev": 17257.787799, "N": 37586}, "bw_min": 7579648, "bw_max": 7779328, "bw_agg": 100.0, "bw_mean": 7700494.4, "bw_dev": 73224.442759, "bw_samples": 5, "iops_min": 7403, "iops_max": 7597, "iops_mean": 7520.0, "iops_stddev": 71.038722, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.82, "sys_cpu": 95.12, "ctx": 24, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 97.560262, "750": 1.46065, "1000": 0.345873}, "latency_us": {"2": 0.311286, "4": 0.242111, "10": 0.066514, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:43:51.530389 2026-07-20 19:08:00.987045 +999 45 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260720-194351Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 39507197952, "io_kbytes": 38581248, "bw_bytes": 7899859618, "bw": 7714706, "iops": 30135.572885, "runtime": 5001, "total_ios": 150708, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 18738, "max": 160474, "mean": 32524.448895, "stddev": 4710.287248, "N": 150708}, "clat_ns": {"min": 210, "max": 37865, "mean": 313.184635, "stddev": 228.713936, "N": 150708, "percentile": {"1.000000": 251, "5.000000": 270, "10.000000": 282, "20.000000": 282, "30.000000": 290, "40.000000": 290, "50.000000": 302, "60.000000": 302, "70.000000": 310, "80.000000": 310, "90.000000": 342, "95.000000": 370, "99.000000": 548, "99.500000": 652, "99.900000": 2384, "99.950000": 4896, "99.990000": 11584}}, "lat_ns": {"min": 19038, "max": 164873, "mean": 32837.63353, "stddev": 4732.576803, "N": 150708}, "bw_min": 7516835, "bw_max": 7850922, "bw_agg": 100.0, "bw_mean": 7717807.2, "bw_dev": 128717.202435, "bw_samples": 5, "iops_min": 29363, "iops_max": 30667, "iops_mean": 30147.6, "iops_stddev": 502.489602, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.5, "sys_cpu": 95.44, "ctx": 33, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.97606, "500": 97.657722, "750": 1.015872, "1000": 0.071662}, "latency_us": {"2": 0.140669, "4": 0.085596, "10": 0.039812, "20": 0.011944, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:43:57.144952 2026-07-20 19:08:00.987045 +1000 45 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260720-194351Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260720-194351Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_64k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 37665177600, "io_kbytes": 36782400, "bw_bytes": 7531529214, "bw": 7355008, "iops": 114922.015597, "runtime": 5001, "total_ios": 574725, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4188, "max": 94115, "mean": 8197.246373, "stddev": 1517.531257, "N": 574725}, "clat_ns": {"min": 190, "max": 44908, "mean": 237.157409, "stddev": 179.652828, "N": 574725, "percentile": {"1.000000": 211, "5.000000": 211, "10.000000": 221, "20.000000": 221, "30.000000": 221, "40.000000": 231, "50.000000": 231, "60.000000": 231, "70.000000": 231, "80.000000": 241, "90.000000": 241, "95.000000": 251, "99.000000": 342, "99.500000": 422, "99.900000": 1096, "99.950000": 1784, "99.990000": 9024}}, "lat_ns": {"min": 4439, "max": 94636, "mean": 8434.403783, "stddev": 1542.198813, "N": 574725}, "bw_min": 7306688, "bw_max": 7437965, "bw_agg": 100.0, "bw_mean": 7359388.8, "bw_dev": 48488.579436, "bw_samples": 5, "iops_min": 114170, "iops_max": 116216, "iops_mean": 114990.8, "iops_stddev": 755.848331, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 7.68, "sys_cpu": 92.28, "ctx": 7, "majf": 0, "minf": 41, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 90.646831, "500": 9.005002, "750": 0.164252, "1000": 0.064901}, "latency_us": {"2": 0.0736, "4": 0.01, "10": 0.035843, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:44:02.760271 2026-07-20 19:08:00.987045 +1001 45 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260720-194351Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260720-194351Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260720-194351Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260720-194351Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260720-194351Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_1M", "detailed": {"size": "100MB", "rw": "read", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 100580458496, "io_kbytes": 98223104, "bw_bytes": 16760616313, "bw": 16367789, "iops": 15984.169305, "runtime": 6001, "total_ios": 95921, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 52172, "max": 508906, "mean": 61831.852941, "stddev": 6742.308522, "N": 95921}, "clat_ns": {"min": 290, "max": 36159, "mean": 360.163947, "stddev": 282.516055, "N": 95921, "percentile": {"1.000000": 310, "5.000000": 310, "10.000000": 310, "20.000000": 322, "30.000000": 322, "40.000000": 322, "50.000000": 330, "60.000000": 330, "70.000000": 370, "80.000000": 382, "90.000000": 390, "95.000000": 402, "99.000000": 652, "99.500000": 852, "99.900000": 2928, "99.950000": 6368, "99.990000": 11968}}, "lat_ns": {"min": 52493, "max": 512273, "mean": 62192.016889, "stddev": 6781.930568, "N": 95921}, "bw_min": 15866362, "bw_max": 16657681, "bw_agg": 100.0, "bw_mean": 16375767.166667, "bw_dev": 290262.286614, "bw_samples": 6, "iops_min": 15494, "iops_max": 16267, "iops_mean": 15992.0, "iops_stddev": 283.536241, "iops_samples": 6}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.233333, "sys_cpu": 98.716667, "ctx": 32, "majf": 0, "minf": 300, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 98.149519, "750": 1.187435, "1000": 0.240823}, "latency_us": {"2": 0.158464, "4": 0.185569, "10": 0.062551, "20": 0.014595, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:44:08.379301 2026-07-20 19:08:00.987045 +1074 47 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 4M --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 206.48}, "metrics": {"0": {"bogo_ops": 3560, "real_time_secs": 36.76, "usr_time_secs": 169.31, "sys_time_secs": 0.41, "bogo_ops_s_real_time": 96.85, "bogo_ops_s_usr_sys_time": 20.98, "cpu_used_per_instance": 0.45, "rss_max_kb": 8296, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:01:20.00941 2026-07-20 19:08:00.987045 +1002 45 loader /usr/bin/fio --name seq_read_64k --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260720-194351Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260720-194351Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260720-194351Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260720-194351Z/read/bs_64k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260720-194351Z/read/bs_64k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_64k", "detailed": {"size": "100MB", "rw": "read", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 85896200192, "io_kbytes": 83883008, "bw_bytes": 14313647757, "bw": 13978171, "iops": 218408.931845, "runtime": 6001, "total_ios": 1310672, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2354, "max": 419983, "mean": 4077.368761, "stddev": 1064.677787, "N": 1310672}, "clat_ns": {"min": 189, "max": 44688, "mean": 240.028038, "stddev": 191.098966, "N": 1310672, "percentile": {"1.000000": 211, "5.000000": 211, "10.000000": 221, "20.000000": 221, "30.000000": 231, "40.000000": 231, "50.000000": 231, "60.000000": 231, "70.000000": 241, "80.000000": 241, "90.000000": 251, "95.000000": 251, "99.000000": 382, "99.500000": 482, "99.900000": 1320, "99.950000": 2480, "99.990000": 8768}}, "lat_ns": {"min": 2605, "max": 422688, "mean": 4317.396799, "stddev": 1100.457842, "N": 1310672}, "bw_min": 13774350, "bw_max": 14086662, "bw_agg": 100.0, "bw_mean": 13987438.833333, "bw_dev": 123918.625087, "bw_samples": 6, "iops_min": 215224, "iops_max": 220104, "iops_mean": 218553.833333, "iops_stddev": 1935.303223, "iops_samples": 6}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 11.133333, "sys_cpu": 88.816667, "ctx": 38, "majf": 0, "minf": 55, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 86.825613, "500": 12.728127, "750": 0.260172, "1000": 0.04677}, "latency_us": {"2": 0.081714, "4": 0.01, "10": 0.043031, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:44:14.997632 2026-07-20 19:08:00.987045 +1003 45 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260720-194351Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_64k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 43463999488, "io_kbytes": 42445312, "bw_bytes": 7242792782, "bw": 7073039, "iops": 110516.247292, "runtime": 6001, "total_ios": 663208, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2675, "max": 111429, "mean": 8506.726938, "stddev": 1546.483477, "N": 663208}, "clat_ns": {"min": 189, "max": 44919, "mean": 237.031771, "stddev": 216.311701, "N": 663208, "percentile": {"1.000000": 211, "5.000000": 211, "10.000000": 221, "20.000000": 221, "30.000000": 221, "40.000000": 231, "50.000000": 231, "60.000000": 231, "70.000000": 231, "80.000000": 241, "90.000000": 241, "95.000000": 251, "99.000000": 342, "99.500000": 410, "99.900000": 1064, "99.950000": 3632, "99.990000": 10688}}, "lat_ns": {"min": 2925, "max": 113082, "mean": 8743.758709, "stddev": 1576.741501, "N": 663208}, "bw_min": 7032448, "bw_max": 7100928, "bw_agg": 100.0, "bw_mean": 7075369.333333, "bw_dev": 32923.829635, "bw_samples": 6, "iops_min": 109885, "iops_max": 110952, "iops_mean": 110552.666667, "iops_stddev": 513.324329, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 8.116667, "sys_cpu": 91.833333, "ctx": 21, "majf": 0, "minf": 41, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 90.760817, "500": 8.939579, "750": 0.148973, "1000": 0.041917}, "latency_us": {"2": 0.055639, "4": 0.01, "10": 0.037545, "20": 0.011459, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:44:21.616537 2026-07-20 19:08:00.987045 +1004 45 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260720-194351Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_16k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 28004810752, "io_kbytes": 27348448, "bw_bytes": 4666690676, "bw": 4557315, "iops": 284832.194634, "runtime": 6001, "total_ios": 1709278, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 882, "max": 113412, "mean": 2995.383235, "stddev": 726.34979, "N": 1709278}, "clat_ns": {"min": 180, "max": 44757, "mean": 220.276265, "stddev": 173.107619, "N": 1709278, "percentile": {"1.000000": 201, "5.000000": 201, "10.000000": 209, "20.000000": 211, "30.000000": 211, "40.000000": 211, "50.000000": 211, "60.000000": 221, "70.000000": 221, "80.000000": 221, "90.000000": 231, "95.000000": 231, "99.000000": 302, "99.500000": 350, "99.900000": 490, "99.950000": 732, "99.990000": 8160}}, "lat_ns": {"min": 1102, "max": 114314, "mean": 3215.6595, "stddev": 753.935178, "N": 1709278}, "bw_min": 4536096, "bw_max": 4583015, "bw_agg": 100.0, "bw_mean": 4559573.0, "bw_dev": 15775.340022, "bw_samples": 6, "iops_min": 283514, "iops_max": 286438, "iops_mean": 284974.0, "iops_stddev": 983.262325, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 15.883333, "sys_cpu": 84.066667, "ctx": 40, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 98.266169, "500": 1.637592, "750": 0.046452, "1000": 0.01}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.038964, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:44:28.235382 2026-07-20 19:08:00.987045 +1005 45 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260720-194351Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260720-194351Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 19547697152, "io_kbytes": 19089548, "bw_bytes": 3257406624, "bw": 3181061, "iops": 795265.289118, "runtime": 6001, "total_ios": 4772387, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 421, "max": 182558, "mean": 772.66113, "stddev": 384.331227, "N": 4772387}, "clat_ns": {"min": 169, "max": 42945, "mean": 208.325404, "stddev": 162.28949, "N": 4772387, "percentile": {"1.000000": 191, "5.000000": 191, "10.000000": 191, "20.000000": 201, "30.000000": 201, "40.000000": 201, "50.000000": 201, "60.000000": 201, "70.000000": 211, "80.000000": 211, "90.000000": 211, "95.000000": 221, "99.000000": 322, "99.500000": 382, "99.900000": 490, "99.950000": 660, "99.990000": 8640}}, "lat_ns": {"min": 621, "max": 183539, "mean": 980.986534, "stddev": 424.3798, "N": 4772387}, "bw_min": 3112120, "bw_max": 3230642, "bw_agg": 100.0, "bw_mean": 3182644.333333, "bw_dev": 44323.121594, "bw_samples": 6, "iops_min": 778050, "iops_max": 807661, "iops_mean": 795663.333333, "iops_stddev": 11073.633959, "iops_samples": 6}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 39.183333, "sys_cpu": 60.766667, "ctx": 39, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 98.574277, "500": 1.332268, "750": 0.046685, "1000": 0.01}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.036397, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:44:34.851795 2026-07-20 19:08:00.987045 +1075 47 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 1G --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 206.4}, "metrics": {"0": {"bogo_ops": 872448, "real_time_secs": 38.24, "usr_time_secs": 166.91, "sys_time_secs": 1.25, "bogo_ops_s_real_time": 22817.79, "bogo_ops_s_usr_sys_time": 5188.05, "cpu_used_per_instance": 0.43, "rss_max_kb": 9040, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:02:03.249361 2026-07-20 19:08:00.987045 +1006 45 loader /usr/bin/fio --name rand_read_16k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260720-194351Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260720-194351Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260720-194351Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260720-194351Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260720-194351Z/randread/bs_16k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_16k", "detailed": {"size": "100MB", "rw": "randread", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 51640532992, "io_kbytes": 50430208, "bw_bytes": 8605321278, "bw": 8403634, "iops": 525227.128812, "runtime": 6001, "total_ios": 3151888, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 691, "max": 63284, "mean": 1398.980838, "stddev": 483.570438, "N": 3151888}, "clat_ns": {"min": 189, "max": 34989, "mean": 229.897457, "stddev": 162.953452, "N": 3151888, "percentile": {"1.000000": 211, "5.000000": 211, "10.000000": 211, "20.000000": 221, "30.000000": 221, "40.000000": 221, "50.000000": 221, "60.000000": 231, "70.000000": 231, "80.000000": 231, "90.000000": 241, "95.000000": 241, "99.000000": 282, "99.500000": 342, "99.900000": 580, "99.950000": 1128, "99.990000": 8512}}, "lat_ns": {"min": 911, "max": 63865, "mean": 1628.878295, "stddev": 518.536771, "N": 3151888}, "bw_min": 8299408, "bw_max": 8464352, "bw_agg": 100.0, "bw_mean": 8406410.666667, "bw_dev": 56586.262116, "bw_samples": 6, "iops_min": 518721, "iops_max": 529022, "iops_mean": 525401.5, "iops_stddev": 3533.596737, "iops_samples": 6}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 27.2, "sys_cpu": 72.766667, "ctx": 16, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 97.128578, "500": 2.701714, "750": 0.104065, "1000": 0.01212}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.040262, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:44:41.471396 2026-07-20 19:08:00.987045 +1007 45 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260720-194351Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260720-194351Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260720-194351Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260720-194351Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260720-194351Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_4k", "detailed": {"size": "100MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 22405718016, "io_kbytes": 21880584, "bw_bytes": 3733664058, "bw": 3646156, "iops": 911539.076821, "runtime": 6001, "total_ios": 5470146, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 321, "max": 41811, "mean": 643.185236, "stddev": 289.611192, "N": 5470146}, "clat_ns": {"min": 169, "max": 25881, "mean": 198.543587, "stddev": 144.116566, "N": 5470146, "percentile": {"1.000000": 181, "5.000000": 181, "10.000000": 191, "20.000000": 191, "30.000000": 191, "40.000000": 191, "50.000000": 191, "60.000000": 201, "70.000000": 201, "80.000000": 201, "90.000000": 201, "95.000000": 211, "99.000000": 221, "99.500000": 282, "99.900000": 430, "99.950000": 756, "99.990000": 8032}}, "lat_ns": {"min": 521, "max": 42222, "mean": 841.728823, "stddev": 328.185852, "N": 5470146}, "bw_min": 3620636, "bw_max": 3699832, "bw_agg": 100.0, "bw_mean": 3647964.833333, "bw_dev": 27503.459378, "bw_samples": 6, "iops_min": 905160, "iops_max": 924970, "iops_mean": 911992.166667, "iops_stddev": 6880.360962, "iops_samples": 6}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 41.166667, "sys_cpu": 58.8, "ctx": 12, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 99.436048, "500": 0.490919, "750": 0.022577, "1000": 0.01}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.03733, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:44:48.088988 2026-07-20 19:08:00.987045 +1008 45 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:44:55.26662 2026-07-20 19:44:55.266625 +1009 45 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:43:51' --until '2026-07-20 19:44:54' 0 OOM records 2026-07-20 19:43:51.116098 2026-07-20 19:44:54.961235 +1010 45 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:43:51' --until '2026-07-20 19:44:54' 0 systemd errors records 2026-07-20 19:43:51.116098 2026-07-20 19:44:54.961235 +1011 45 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260720-194456Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 9.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 70216843264, "io_kbytes": 68571136, "bw_bytes": 7801004695, "bw": 7618168, "iops": 7439.61782, "runtime": 9001, "total_ios": 66964, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 96078, "max": 644832, "mean": 133629.607431, "stddev": 17095.739248, "N": 66964}, "clat_ns": {"min": 251, "max": 51100, "mean": 367.200152, "stddev": 327.885115, "N": 66964, "percentile": {"1.000000": 290, "5.000000": 302, "10.000000": 302, "20.000000": 310, "30.000000": 310, "40.000000": 322, "50.000000": 342, "60.000000": 362, "70.000000": 370, "80.000000": 382, "90.000000": 402, "95.000000": 422, "99.000000": 764, "99.500000": 1272, "99.900000": 3600, "99.950000": 5664, "99.990000": 11072}}, "lat_ns": {"min": 96399, "max": 649701, "mean": 133996.807583, "stddev": 17130.695496, "N": 66964}, "bw_min": 7500800, "bw_max": 7677437, "bw_agg": 100.0, "bw_mean": 7621566.555556, "bw_dev": 59732.927009, "bw_samples": 9, "iops_min": 7325, "iops_max": 7497, "iops_mean": 7442.777778, "iops_stddev": 58.231816, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.555556, "sys_cpu": 95.411111, "ctx": 15, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 96.638492, "750": 2.286303, "1000": 0.449495}, "latency_us": {"2": 0.286721, "4": 0.249388, "10": 0.073174, "20": 0.014933, "50": 0.0, "100": 0.01, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:44:56.646885 2026-07-20 19:08:00.987045 +1012 45 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260720-194456Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 9.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 65337032704, "io_kbytes": 63805696, "bw_bytes": 7258863760, "bw": 7088734, "iops": 27690.367737, "runtime": 9001, "total_ios": 249241, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 27313, "max": 292191, "mean": 35414.874708, "stddev": 5044.264638, "N": 249241}, "clat_ns": {"min": 210, "max": 41822, "mean": 319.009513, "stddev": 282.484338, "N": 249241, "percentile": {"1.000000": 241, "5.000000": 270, "10.000000": 282, "20.000000": 282, "30.000000": 290, "40.000000": 290, "50.000000": 302, "60.000000": 302, "70.000000": 310, "80.000000": 322, "90.000000": 342, "95.000000": 382, "99.000000": 596, "99.500000": 1064, "99.900000": 2704, "99.950000": 5792, "99.990000": 12224}}, "lat_ns": {"min": 27605, "max": 292661, "mean": 35733.88422, "stddev": 5072.195065, "N": 249241}, "bw_min": 7063959, "bw_max": 7118080, "bw_agg": 100.0, "bw_mean": 7091856.666667, "bw_dev": 20511.271627, "bw_samples": 9, "iops_min": 27593, "iops_max": 27805, "iops_mean": 27702.444444, "iops_stddev": 79.973607, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.333333, "sys_cpu": 95.622222, "ctx": 59, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 1.461236, "500": 97.152555, "750": 0.738241, "1000": 0.131198}, "latency_us": {"2": 0.24033, "4": 0.203016, "10": 0.055368, "20": 0.017252, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:45:06.268089 2026-07-20 19:08:00.987045 +1013 45 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260720-194456Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260720-194456Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_64k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 9.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 67591798784, "io_kbytes": 66007616, "bw_bytes": 7509365490, "bw": 7333364, "iops": 114583.82402, "runtime": 9001, "total_ios": 1031369, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3067, "max": 116498, "mean": 8218.443291, "stddev": 1570.574644, "N": 1031369}, "clat_ns": {"min": 190, "max": 43514, "mean": 240.645694, "stddev": 186.066816, "N": 1031369, "percentile": {"1.000000": 211, "5.000000": 221, "10.000000": 221, "20.000000": 221, "30.000000": 231, "40.000000": 231, "50.000000": 231, "60.000000": 231, "70.000000": 241, "80.000000": 241, "90.000000": 251, "95.000000": 262, "99.000000": 342, "99.500000": 410, "99.900000": 1144, "99.950000": 2128, "99.990000": 9536}}, "lat_ns": {"min": 3307, "max": 117981, "mean": 8459.088986, "stddev": 1596.957506, "N": 1031369}, "bw_min": 7276524, "bw_max": 7382656, "bw_agg": 100.0, "bw_mean": 7336591.555556, "bw_dev": 39113.034605, "bw_samples": 9, "iops_min": 113695, "iops_max": 115354, "iops_mean": 114633.888889, "iops_stddev": 611.426497, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 7.655556, "sys_cpu": 92.322222, "ctx": 25, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 86.356968, "500": 13.317057, "750": 0.148734, "1000": 0.053812}, "latency_us": {"2": 0.072525, "4": 0.01, "10": 0.03888, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:45:15.888504 2026-07-20 19:08:00.987045 +1014 45 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260720-194456Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_64k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 10.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 73513500672, "io_kbytes": 71790528, "bw_bytes": 7350615005, "bw": 7178334, "iops": 112161.483852, "runtime": 10001, "total_ios": 1121727, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2645, "max": 89266, "mean": 8366.479376, "stddev": 1467.28134, "N": 1121727}, "clat_ns": {"min": 190, "max": 47142, "mean": 239.786382, "stddev": 196.453096, "N": 1121727, "percentile": {"1.000000": 211, "5.000000": 221, "10.000000": 221, "20.000000": 221, "30.000000": 231, "40.000000": 231, "50.000000": 231, "60.000000": 231, "70.000000": 241, "80.000000": 241, "90.000000": 251, "95.000000": 251, "99.000000": 330, "99.500000": 410, "99.900000": 1032, "99.950000": 2768, "99.990000": 10176}}, "lat_ns": {"min": 2906, "max": 90007, "mean": 8606.265758, "stddev": 1495.124609, "N": 1121727}, "bw_min": 7131099, "bw_max": 7214400, "bw_agg": 100.0, "bw_mean": 7181170.8, "bw_dev": 25411.073849, "bw_samples": 10, "iops_min": 111423, "iops_max": 112725, "iops_mean": 112206.0, "iops_stddev": 396.516218, "iops_samples": 10}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 7.95, "sys_cpu": 92.02, "ctx": 10, "majf": 0, "minf": 41, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 89.785483, "500": 9.877537, "750": 0.178118, "1000": 0.053132}, "latency_us": {"2": 0.053935, "4": 0.01, "10": 0.038779, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:45:25.50823 2026-07-20 19:08:00.987045 +1015 45 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260720-194456Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_16k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 10.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 47222964224, "io_kbytes": 46116176, "bw_bytes": 4721824239, "bw": 4611156, "iops": 288197.280272, "runtime": 10001, "total_ios": 2882261, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 891, "max": 179600, "mean": 2949.521295, "stddev": 708.93579, "N": 2882261}, "clat_ns": {"min": 180, "max": 51099, "mean": 222.079333, "stddev": 156.493947, "N": 2882261, "percentile": {"1.000000": 201, "5.000000": 211, "10.000000": 211, "20.000000": 211, "30.000000": 211, "40.000000": 221, "50.000000": 221, "60.000000": 221, "70.000000": 221, "80.000000": 221, "90.000000": 231, "95.000000": 231, "99.000000": 262, "99.500000": 302, "99.900000": 454, "99.950000": 676, "99.990000": 8096}}, "lat_ns": {"min": 1132, "max": 181164, "mean": 3171.600628, "stddev": 731.302972, "N": 2882261}, "bw_min": 4582480, "bw_max": 4629141, "bw_agg": 100.0, "bw_mean": 4612522.9, "bw_dev": 20482.383946, "bw_samples": 10, "iops_min": 286413, "iops_max": 289321, "iops_mean": 288283.2, "iops_stddev": 1278.487022, "iops_samples": 10}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 16.07, "sys_cpu": 83.9, "ctx": 44, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 98.593188, "500": 1.331316, "750": 0.026715, "1000": 0.01}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.040454, "20": 0.01, "50": 0.01, "100": 0.01, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:45:36.129325 2026-07-20 19:08:00.987045 +1016 45 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260720-194456Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260720-194456Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 10.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 32996212736, "io_kbytes": 32222864, "bw_bytes": 3299291344, "bw": 3221964, "iops": 805491.050895, "runtime": 10001, "total_ios": 8055716, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 421, "max": 469908, "mean": 757.513103, "stddev": 398.564224, "N": 8055716}, "clat_ns": {"min": 169, "max": 44216, "mean": 202.565236, "stddev": 155.961534, "N": 8055716, "percentile": {"1.000000": 181, "5.000000": 191, "10.000000": 191, "20.000000": 191, "30.000000": 191, "40.000000": 201, "50.000000": 201, "60.000000": 201, "70.000000": 201, "80.000000": 201, "90.000000": 211, "95.000000": 211, "99.000000": 221, "99.500000": 241, "99.900000": 350, "99.950000": 532, "99.990000": 8384}}, "lat_ns": {"min": 621, "max": 471121, "mean": 960.078339, "stddev": 432.107113, "N": 8055716}, "bw_min": 3160884, "bw_max": 3238788, "bw_agg": 100.0, "bw_mean": 3223244.6, "bw_dev": 22887.764423, "bw_samples": 10, "iops_min": 790241, "iops_max": 809698, "iops_mean": 805812.3, "iops_stddev": 5715.924151, "iops_samples": 10}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 40.55, "sys_cpu": 59.41, "ctx": 57, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 99.562174, "500": 0.384857, "750": 0.01, "1000": 0.01}, "latency_us": {"2": 0.01, "4": 0.01, "10": 0.034882, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:45:46.749286 2026-07-20 19:08:00.987045 +1017 45 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:45:57.930042 2026-07-20 19:45:57.930048 +1018 45 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:44:56' --until '2026-07-20 19:45:57' 0 OOM records 2026-07-20 19:44:56.23187 2026-07-20 19:45:57.624714 +1019 45 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:44:56' --until '2026-07-20 19:45:57' 0 systemd errors records 2026-07-20 19:44:56.23187 2026-07-20 19:45:57.624714 +1020 45 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename /dev/mapper/dust1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-dust-20260720-194605Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 57 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-dust-20260720-194605Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-dust-20260720-194605Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-dust-20260720-194605Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-dust-20260720-194605Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 57.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 37462474752, "io_kbytes": 36584448, "bw_bytes": 657213339, "bw": 641809, "iops": 626.767482, "runtime": 57002, "total_ios": 35727, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1135436, "max": 1323344324, "mean": 1530178.761301, "stddev": 9251279.24495, "N": 35727}, "clat_ns": {"min": 2295, "max": 363830, "mean": 64358.304895, "stddev": 35416.895438, "N": 35727, "percentile": {"1.000000": 17536, "5.000000": 22144, "10.000000": 25984, "20.000000": 32640, "30.000000": 39680, "40.000000": 47360, "50.000000": 56064, "60.000000": 66048, "70.000000": 78336, "80.000000": 93696, "90.000000": 116224, "95.000000": 134144, "99.000000": 160768, "99.500000": 168960, "99.900000": 199680, "99.950000": 216064, "99.990000": 288768}}, "lat_ns": {"min": 1193750, "max": 1323435762, "mean": 1594537.066196, "stddev": 9251735.946453, "N": 35727}, "bw_min": 1024, "bw_max": 724992, "bw_agg": 100.0, "bw_mean": 641912.77193, "bw_dev": 184442.261956, "bw_samples": 57, "iops_min": 1, "iops_max": 708, "iops_mean": 626.77193, "iops_stddev": 180.088175, "iops_samples": 57}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.768408, "sys_cpu": 78.84774, "ctx": 613717, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.011196, "10": 0.02799, "20": 2.812999, "50": 40.521174, "100": 39.737453, "250": 16.877991, "500": 0.011196, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-20 19:46:05.35759 2026-07-20 19:08:00.987045 +1021 45 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:47:04.563093 2026-07-20 19:47:04.563096 +1022 45 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:45:58' --until '2026-07-20 19:47:04' 0 OOM records 2026-07-20 19:45:58.674271 2026-07-20 19:47:04.258501 +1023 45 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:45:58' --until '2026-07-20 19:47:04' 0 systemd errors records 2026-07-20 19:45:58.674271 2026-07-20 19:47:04.258501 +1024 45 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260720-194819Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 10.14}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5242880, "io_kbytes": 5120, "bw_bytes": 517151, "bw": 505, "iops": 0.493194, "runtime": 10138, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 38284, "max": 45107, "mean": 42745.0, "stddev": 2816.407552, "N": 5}, "clat_ns": {"min": 2000883579, "max": 2047982681, "mean": 2027436622.0, "stddev": 24290996.042415, "N": 5, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2004877312, "40.000000": 2004877312, "50.000000": 2038431744, "60.000000": 2038431744, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2000925250, "max": 2048020965, "mean": 2027479367.0, "stddev": 24290252.462984, "N": 5}, "bw_min": 1024, "bw_max": 1025, "bw_agg": 100.0, "bw_mean": 1024.25, "bw_dev": 0.5, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 0.009865, "ctx": 6, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-20 19:48:19.545493 2026-07-20 19:08:00.987045 +1025 45 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260720-194819Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 10.22}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1310720, "io_kbytes": 1280, "bw_bytes": 128275, "bw": 125, "iops": 0.489333, "runtime": 10218, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 23256, "max": 48143, "mean": 29778.0, "stddev": 10351.10924, "N": 5}, "clat_ns": {"min": 2025557716, "max": 2048141550, "mean": 2043505935.0, "stddev": 10033728.245482, "N": 5, "percentile": {"1.000000": 2021654528, "5.000000": 2021654528, "10.000000": 2021654528, "20.000000": 2021654528, "30.000000": 2055208960, "40.000000": 2055208960, "50.000000": 2055208960, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2025580972, "max": 2048167230, "mean": 2043535713.0, "stddev": 10037354.014505, "N": 5}, "bw_min": 256, "bw_max": 256, "bw_agg": 100.0, "bw_mean": 256.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 0.0, "ctx": 8, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-20 19:48:30.475166 2026-07-20 19:08:00.987045 +1026 45 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260720-194819Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260720-194819Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_64k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 10.21}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 327680, "io_kbytes": 320, "bw_bytes": 32103, "bw": 31, "iops": 0.48986, "runtime": 10207, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 18356, "max": 39307, "mean": 25325.4, "stddev": 8442.576698, "N": 5}, "clat_ns": {"min": 2014129818, "max": 2048293222, "mean": 2041205548.0, "stddev": 15137139.267064, "N": 5, "percentile": {"1.000000": 2021654528, "5.000000": 2021654528, "10.000000": 2021654528, "20.000000": 2021654528, "30.000000": 2055208960, "40.000000": 2055208960, "50.000000": 2055208960, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2014155929, "max": 2048312409, "mean": 2041230873.4, "stddev": 15136637.615713, "N": 5}, "bw_min": 64, "bw_max": 64, "bw_agg": 100.0, "bw_mean": 64.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 0.0, "ctx": 8, "majf": 0, "minf": 39, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-20 19:48:41.301888 2026-07-20 19:08:00.987045 +1076 47 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 0.0}, "metrics": {"summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:02:46.095709 2026-07-20 19:08:00.987045 +1027 45 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260720-194819Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_64k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 10.19}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 327680, "io_kbytes": 320, "bw_bytes": 32144, "bw": 31, "iops": 0.490485, "runtime": 10194, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 16002, "max": 42543, "mean": 23774.6, "stddev": 11312.522146, "N": 5}, "clat_ns": {"min": 2000936849, "max": 2048183635, "mean": 2038545071.0, "stddev": 21024449.065294, "N": 5, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2055208960, "40.000000": 2055208960, "50.000000": 2055208960, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2000963221, "max": 2048200828, "mean": 2038568845.6, "stddev": 21022914.471554, "N": 5}, "bw_min": 64, "bw_max": 64, "bw_agg": 100.0, "bw_mean": 64.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 0.0, "ctx": 7, "majf": 0, "minf": 39, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-20 19:48:52.130415 2026-07-20 19:08:00.987045 +1028 45 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260720-194819Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_16k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 10.24}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 81920, "io_kbytes": 80, "bw_bytes": 7996, "bw": 7, "iops": 0.488043, "runtime": 10245, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 14279, "max": 58565, "mean": 25750.8, "stddev": 18497.483605, "N": 5}, "clat_ns": {"min": 2047795522, "max": 2052113905, "mean": 2048777964.0, "stddev": 1869430.244114, "N": 5, "percentile": {"1.000000": 2055208960, "5.000000": 2055208960, "10.000000": 2055208960, "20.000000": 2055208960, "30.000000": 2055208960, "40.000000": 2055208960, "50.000000": 2055208960, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2047812856, "max": 2052172470, "mean": 2048803714.8, "stddev": 1887826.282247, "N": 5}, "bw_min": 16, "bw_max": 16, "bw_agg": 100.0, "bw_mean": 16.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 0.0, "ctx": 7, "majf": 0, "minf": 41, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-20 19:49:02.959654 2026-07-20 19:08:00.987045 +1029 45 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260720-194819Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260720-194819Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 10.24}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 20480, "io_kbytes": 20, "bw_bytes": 2000, "bw": 1, "iops": 0.488281, "runtime": 10240, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 17494, "max": 79726, "mean": 39210.6, "stddev": 24779.086793, "N": 5}, "clat_ns": {"min": 2047185547, "max": 2048074966, "mean": 2047804421.8, "stddev": 357086.871774, "N": 5, "percentile": {"1.000000": 2055208960, "5.000000": 2055208960, "10.000000": 2055208960, "20.000000": 2055208960, "30.000000": 2055208960, "40.000000": 2055208960, "50.000000": 2055208960, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2047265273, "max": 2048092460, "mean": 2047843632.4, "stddev": 334992.806143, "N": 5}, "bw_min": 4, "bw_max": 4, "bw_agg": 100.0, "bw_mean": 4.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 0.0, "ctx": 7, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}}} 2026-07-20 19:49:13.780618 2026-07-20 19:08:00.987045 +1030 45 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:49:25.288751 2026-07-20 19:49:25.288755 +1031 45 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:47:08' --until '2026-07-20 19:49:24' 0 OOM records 2026-07-20 19:47:08.431448 2026-07-20 19:49:24.9404 +1032 45 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:47:08' --until '2026-07-20 19:49:24' 0 systemd errors records 2026-07-20 19:47:08.431448 2026-07-20 19:49:24.9404 +1033 46 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 2.889, "userspace_time": 8.3, "total_time": 11.19} 2026-07-20 19:08:00.987038 2026-07-20 19:08:00.987045 +1034 46 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:51:51.715191 2026-07-20 19:51:51.715194 +1035 46 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:51:51' --until '2026-07-20 19:51:51' 0 OOM records 2026-07-20 19:51:51.183761 2026-07-20 19:51:51.411516 +1036 46 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:51:51' --until '2026-07-20 19:51:51' 0 systemd errors records 2026-07-20 19:51:51.183761 2026-07-20 19:51:51.411516 +1037 46 loader systemd-analyze critical-chain [{"service_name": "docker.service", "slow_time_s": 2.61}, {"service_name": "containerd.service", "slow_time_s": 2.964}] 2026-07-20 19:08:00.987038 2026-07-20 19:08:00.987045 +1038 46 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:51:52.811146 2026-07-20 19:51:52.811149 +1039 46 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:51:52' --until '2026-07-20 19:51:52' 0 OOM records 2026-07-20 19:51:52.166039 2026-07-20 19:51:52.506079 +1040 46 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:51:52' --until '2026-07-20 19:51:52' 0 systemd errors records 2026-07-20 19:51:52.166039 2026-07-20 19:51:52.506079 +1041 46 loader /usr/bin/kirk --suite-timeout 50 --run-suite syscalls-ipc --json-report /var/tmp/ltp-results/syscalls-ipc_2026-07-20_19:51:53.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 26.44}, "metrics": {"0": {"test": "msgctl01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgGdx18S as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl01.c:37: TPASS: msgctl(IPC_STAT)\\nmsgctl01.c:40: TPASS: msg_stime = 0\\nmsgctl01.c:45: TPASS: msg_rtime = 0\\nmsgctl01.c:50: TPASS: msg_ctime = 1784577113, expected 1784577113\\nmsgctl01.c:58: TPASS: msg_qnum = 0\\nmsgctl01.c:63: TPASS: msg_qbytes = 16384\\nmsgctl01.c:68: TPASS: msg_lspid = 0\\nmsgctl01.c:73: TPASS: msg_lrpid = 0\\nmsgctl01.c:78: TPASS: msg_perm.__key == 1629029032\\nmsgctl01.c:85: TPASS: msg_perm.uid = 0\\nmsgctl01.c:92: TPASS: msg_perm.gid = 0\\nmsgctl01.c:99: TPASS: msg_perm.cuid = 0\\nmsgctl01.c:106: TPASS: msg_perm.cgid = 0\\nmsgctl01.c:113: TPASS: msg_perm.mode = 0660\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.017438888549804688}, "1": {"test": "msgctl02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgQfOQDb as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl02.c:34: TPASS: msgctl(IPC_SET) msg_qbytes - 1\\nmsgctl02.c:40: TPASS: msg_qbytes = 16383\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01079416275024414}, "2": {"test": "msgctl03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgnqsL56 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl03.c:30: TPASS: msgctl(IPC_RMID)\\nmsgctl03.c:34: TPASS: msgctl(IPC_STAT): EINVAL (22)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011112689971923828}, "3": {"test": "msgctl04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgRCX8cm as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl04.c:103: TINFO: Testing variant: libc msgctl()\\nmsgctl04.c:79: TPASS: msgctl(4, 2, 0x559b1b788b00) : EACCES (13)\\nmsgctl04.c:75: TCONF: EFAULT is skipped for libc variant\\nmsgctl04.c:75: TCONF: EFAULT is skipped for libc variant\\nmsgctl04.c:79: TPASS: msgctl(5, -1, 0x559b1b788b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(-1, 2, 0x559b1b788b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(-1, 1, 0x559b1b788b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(3, 0, (nil)) : EPERM (1)\\nmsgctl04.c:103: TINFO: Testing variant: __NR_msgctl syscall\\nmsgctl04.c:79: TPASS: msgctl(7, 2, 0x559b1b788b00) : EACCES (13)\\nmsgctl04.c:79: TPASS: msgctl(8, 2, 0xffffffffffffffff) : EFAULT (14)\\nmsgctl04.c:79: TPASS: msgctl(8, 1, 0xffffffffffffffff) : EFAULT (14)\\nmsgctl04.c:79: TPASS: msgctl(8, -1, 0x559b1b788b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(-1, 2, 0x559b1b788b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(-1, 1, 0x559b1b788b00) : EINVAL (22)\\nmsgctl04.c:79: TPASS: msgctl(6, 0, (nil)) : EPERM (1)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0038788318634033203}, "4": {"test": "msgctl06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl06.c:104: TINFO: Test MSG_STAT_ANY with nobody user\\nmsgctl06.c:120: TPASS: MSG_INFO returned valid index 9 to msgid 9\\nmsgctl06.c:130: TPASS: Counted used = 1\\nmsgctl06.c:77: TPASS: queue_cnt = 1\\nmsgctl06.c:84: TPASS: msg_cnt = 1\\nmsgctl06.c:91: TPASS: msg_bytes = 5\\nmsgctl06.c:104: TINFO: Test MSG_STAT_ANY with root user\\nmsgctl06.c:120: TPASS: MSG_INFO returned valid index 9 to msgid 9\\nmsgctl06.c:130: TPASS: Counted used = 1\\nmsgctl06.c:77: TPASS: queue_cnt = 1\\nmsgctl06.c:84: TPASS: msg_cnt = 1\\nmsgctl06.c:91: TPASS: msg_bytes = 5\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.00409245491027832}, "5": {"test": "msgctl12", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl12.c:44: TPASS: msgctl() test IPC_INFO succeeded\\nmsgctl12.c:44: TPASS: msgctl() test MSG_INFO succeeded\\nmsgctl12.c:44: TPASS: msgctl() test MSG_STAT succeeded\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0034265518188476562}, "6": {"test": "msgstress01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 36s\\ntst_pid.c:94: TINFO: Found limit of processes 7861 (from /sys/fs/cgroup/user.slice/user-0.slice/pids.max)\\nmsgstress01.c:271: TINFO: Available messages slots: 3642\\nmsgstress01.c:224: TINFO: All processes running\\nmsgstress01.c:246: TPASS: Some messages received\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 15.0530424118042}, "7": {"test": "msgget01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgfdn6MD as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgget01.c:46: TPASS: message received = message sent\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0043239593505859375}, "8": {"test": "msgget02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgvr3DHq as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgget02.c:52: TPASS: msgget(1629029038, 1536) : EEXIST (17)\\nmsgget02.c:52: TPASS: msgget(1645806254, 0) : ENOENT (2)\\nmsgget02.c:52: TPASS: msgget(1645806254, 1024) : ENOENT (2)\\nmsgget02.c:52: TPASS: msgget(1629029038, 256) : EACCES (13)\\nmsgget02.c:52: TPASS: msgget(1629029038, 128) : EACCES (13)\\nmsgget02.c:52: TPASS: msgget(1629029038, 384) : EACCES (13)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0051763057708740234}, "9": {"test": "msgget03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgd1qbOz as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgget03.c:41: TINFO: Current environment 0 message queues are already in use\\nmsgget03.c:56: TINFO: The maximum number of message queues (32) reached\\nmsgget03.c:30: TPASS: msgget(1629029071, 1536) : ENOSPC (28)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0035219192504882812}, "10": {"test": "msgget04", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgget04.c:37: TPASS: msg_next_id succeeded, queue id 4445\\nmsgget04.c:41: TPASS: /proc/sys/kernel/msg_next_id = -1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.005455732345581055}, "11": {"test": "msgget05", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgget05.c:39: TPASS: msg id 4455 has existed, msgget() returns the new msgid 4456\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.005931377410888672}, "12": {"test": "msgrcv01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgNEAwHf as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgrcv01.c:38: TPASS: message received(hello) = message sent(hello)\\nmsgrcv01.c:46: TPASS: queue bytes and number of queues matched\\nmsgrcv01.c:50: TPASS: PID of last msgrcv(2) matched\\nmsgrcv01.c:55: TPASS: msg_rtime = 1784577128 in [1784577128, 1784577128]\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0034723281860351562}, "13": {"test": "msgrcv02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgYFYbVN as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgrcv02.c:66: TPASS: msgrcv(32803, 0x55b97f4bafe0, 1023, 2, 0) : E2BIG (7)\\nmsgrcv02.c:66: TPASS: msgrcv(32804, 0x55b97f4bafe0, 1024, 2, 0) : EACCES (13)\\nmsgrcv02.c:66: TPASS: msgrcv(32805, (nil), 1024, 2, 0) : EFAULT (14)\\nmsgrcv02.c:66: TPASS: msgrcv(-1, 0x55b97f4bafe0, 1024, 2, 0) : EINVAL (22)\\nmsgrcv02.c:66: TPASS: msgrcv(32807, 0x55b97f4bafe0, -1, 2, 0) : EINVAL (22)\\nmsgrcv02.c:66: TPASS: msgrcv(32808, 0x55b97f4bafe0, 1024, 3, 2048) : ENOMSG (42)\\nmsgrcv02.c:66: TPASS: msgrcv(32809, 0x55b97f4bafe0, 1024, -1, 2048) : ENOMSG (42)\\nmsgrcv02.c:66: TPASS: msgrcv(32810, 0x55b97f4bafe0, 1024, -1, 10240) : ENOMSG (42)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0057506561279296875}, "14": {"test": "msgrcv03", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgYljc2p as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgrcv03.c:60: TINFO: EINVAL for MSG_COPY without IPC_NOWAIT\\nmsgrcv03.c:62: TPASS: msgrcv(32811, 0x55deeb8f9e60, 1024, 1, 16384) : EINVAL (22)\\nmsgrcv03.c:60: TINFO: EINVAL for MSG_COPY with MSG_EXCEPT\\nmsgrcv03.c:62: TPASS: msgrcv(32811, 0x55deeb8f9e60, 1024, 1, 24576) : EINVAL (22)\\nmsgrcv03.c:60: TINFO: ENOMSG with IPC_NOWAIT and MSG_COPY but with less than msgtyp messages\\nmsgrcv03.c:62: TPASS: msgrcv(32811, 0x55deeb8f9e60, 1024, 2, 18432) : ENOMSG (42)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.005284786224365234}, "15": {"test": "msgrcv05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgKMKiQA as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgrcv05.c:33: TPASS: msgrcv(32812, 0x55c0deb60a20, 1024, 1, 0) : EINTR (4)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0089263916015625}, "16": {"test": "msgrcv06", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgTVTcZM as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgrcv06.c:27: TPASS: msgrcv(32813, 0x55a78d416020, 1024, 1, 0) : EIDRM (43)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.005005598068237305}, "17": {"test": "msgrcv07", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgHs4wTP as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgrcv07.c:68: TPASS: msgrcv(MSG_EXCEPT) succeeded\\nmsgrcv07.c:71: TPASS: MSG_EXCEPT excepted MSGTYPE2 and got MSGTYPE1\\nmsgrcv07.c:95: TPASS: msgrcv(MSG_NOERROR) succeeded\\nmsgrcv07.c:98: TPASS: MSG_NOERROR truncated message correctly\\nmsgrcv07.c:134: TPASS: msgrcv(0, MSG_COPY) succeeded\\nmsgrcv07.c:137: TPASS: MSG_COPY got MSGTYPE1 data correctly\\nmsgrcv07.c:148: TPASS: msgrcv(1, MSG_COPY) succeeded\\nmsgrcv07.c:151: TPASS: MSG_COPY got MSGTYPE2 data correctly\\nmsgrcv07.c:157: TPASS: Two messages still in queue\\nmsgrcv07.c:178: TPASS: msgrcv(zero_msgtyp) succeeded\\nmsgrcv07.c:181: TPASS: zero_msgtyp got the first message\\nmsgrcv07.c:200: TPASS: msgrcv(positive_msgtyp) succeeded\\nmsgrcv07.c:203: TPASS: msgtyp got the first message in the queue of type msgtyp\\nmsgrcv07.c:225: TPASS: msgrcv(negative_msgtyp) succeeded\\nmsgrcv07.c:228: TPASS: -msgtyp got the first message in the queue with the lowest type\\n\\nSummary:\\npassed 15\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0037136077880859375}, "18": {"test": "msgrcv08", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgFdrIZ1 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgrcv08.c:60: TPASS: No regression found.\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0037696361541748047}, "19": {"test": "msgsnd01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgk2SMML as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgsnd01.c:46: TPASS: queue bytes and number of queues matched\\nmsgsnd01.c:51: TPASS: PID of last msgsnd(2) matched\\nmsgsnd01.c:56: TPASS: msg_stime = 1784577129 in [1784577129, 1784577129]\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.003557920455932617}, "20": {"test": "msgsnd02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgKK0d3q as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgsnd02.c:64: TPASS: msgsnd(32822, 0x55e309cf4020, 1024, 0) : EACCES (13)\\nmsgsnd02.c:64: TPASS: msgsnd(32822, (nil), 1024, 0) : EFAULT (14)\\nmsgsnd02.c:64: TPASS: msgsnd(-1, 0x55e309cf4020, 1024, 0) : EINVAL (22)\\nmsgsnd02.c:64: TPASS: msgsnd(32822, 0x55e309cf4428, 1024, 0) : EINVAL (22)\\nmsgsnd02.c:64: TPASS: msgsnd(32822, 0x55e309cf4830, 1024, 0) : EINVAL (22)\\nmsgsnd02.c:64: TPASS: msgsnd(32822, 0x55e309cf4020, -1, 0) : EINVAL (22)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004656314849853516}, "21": {"test": "msgsnd05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgp3rI9t as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgsnd05.c:47: TPASS: msgsnd(32823, 0x562fd668b040, 1024, 2048) : EAGAIN/EWOULDBLOCK (11)\\nmsgsnd05.c:47: TPASS: msgsnd(32823, 0x562fd668b040, 1024, 0) : EINTR (4)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0047833919525146484}, "22": {"test": "msgsnd06", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgQhH0Ej as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgsnd06.c:31: TPASS: msgsnd(32824, 0x55a65cca5020, 1024, 0) : EIDRM (43)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004844188690185547}, "23": {"test": "semctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemctl01.c:45: TPASS: buf.sem_nsems and buf.sem_perm.mode are correct\\nsemctl01.c:60: TPASS: buf.sem_perm.mode is correct\\nsemctl01.c:75: TPASS: semaphores have expected values\\nsemctl01.c:122: TPASS: number of sleeping processes is correct\\nsemctl01.c:155: TPASS: last pid value is correct\\nsemctl01.c:167: TPASS: semaphore value is correct\\nsemctl01.c:122: TPASS: number of sleeping processes is correct\\nsemctl01.c:194: TPASS: semaphore values are correct\\nsemctl01.c:204: TPASS: semaphore value is correct\\nsemctl01.c:217: TPASS: the highest index is correct\\nsemctl01.c:229: TPASS: number of semaphore sets is correct\\nsemctl01.c:235: TPASS: id of the semaphore set is correct\\nsemctl01.c:209: TPASS: semaphore appears to be removed : EINVAL (22)\\n\\nSummary:\\npassed 13\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.03062748908996582}, "24": {"test": "semctl02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemctl02.c:28: TPASS: semctl(IPC_STAT) with nobody user : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011060237884521484}, "25": {"test": "semctl03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemctl03.c:92: TINFO: Testing variant: libc semctl()\\nsemctl03.c:83: TPASS: semctl() with invalid IPC command : EINVAL (22)\\nsemctl03.c:83: TPASS: semctl() with invalid sem id : EINVAL (22)\\nsemctl03.c:79: TCONF: EFAULT is skipped for libc variant\\nsemctl03.c:79: TCONF: EFAULT is skipped for libc variant\\nsemctl03.c:92: TINFO: Testing variant: __NR_semctl syscall\\nsemctl03.c:83: TPASS: semctl() with invalid IPC command : EINVAL (22)\\nsemctl03.c:83: TPASS: semctl() with invalid sem id : EINVAL (22)\\nsemctl03.c:83: TPASS: semctl() with invalid union arg : EFAULT (14)\\nsemctl03.c:83: TPASS: semctl() with invalid union arg : EFAULT (14)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.010552644729614258}, "26": {"test": "semctl04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemctl04.c:44: TPASS: semctl() with nobody user in child : EPERM (1)\\nsemctl04.c:44: TPASS: semctl() with nobody user in child : EPERM (1)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.003895282745361328}, "27": {"test": "semctl05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemctl05.c:44: TPASS: semctl() with the value to set is less than zero : ERANGE (34)\\nsemctl05.c:44: TPASS: semctl() with the value to set are too large : ERANGE (34)\\nsemctl05.c:44: TPASS: semctl() with the value to set is too large : ERANGE (34)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0035414695739746094}, "28": {"test": "semctl06", "status": "pass", "arguments": [], "log": "semctl06 0 TINFO : Using /tmp/LTP_sembvZZZt as tmpdir (tmpfs filesystem)\\nsemctl06 1 TPASS : semctl06 ran successfully!\\n", "retval": ["0"], "duration": 0.006682872772216797}, "29": {"test": "semctl07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemctl07.c:38: TPASS: semctl(semid, 0, IPC_STAT, arg) passed\\nsemctl07.c:44: TPASS: sem_nsems = 1\\nsemctl07.c:51: TPASS: sem_perm.uid = 0\\nsemctl07.c:58: TPASS: sem_perm.gid = 0\\nsemctl07.c:65: TPASS: sem_perm.cuid = 0\\nsemctl07.c:72: TPASS: sem_perm.cgid = 0\\nsemctl07.c:78: TPASS: semctl(GETVAL) succeeded\\nsemctl07.c:85: TPASS: semctl(SETVAL) succeeded\\nsemctl07.c:90: TPASS: semctl(GETVAL) succeeded\\nsemctl07.c:96: TPASS: semctl(GETVAL) returned 1\\nsemctl07.c:102: TPASS: semctl(GETPID) succeeded\\nsemctl07.c:108: TPASS: semctl(GETPID) returned 4660\\nsemctl07.c:114: TPASS: semctl(GETNCNT) succeeded\\nsemctl07.c:120: TPASS: semctl(GETNCNT) returned 0\\nsemctl07.c:125: TPASS: semctl(GETZCNT) succeeded\\nsemctl07.c:130: TPASS: semctl(GETZCNT) succeeded 0\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0041844844818115234}, "30": {"test": "semctl09", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemctl09.c:76: TINFO: Test SYS_semctl syscall\\nsemctl09.c:141: TINFO: Test SEM_STAT_ANY with nobody user\\nsemctl09.c:163: TPASS: SEM_INFO returned valid index 16 to semid 16\\nsemctl09.c:173: TPASS: Counted used = 1\\nsemctl09.c:121: TPASS: semset_cnt = 1\\nsemctl09.c:128: TPASS: sen_cnt = 2\\nsemctl09.c:141: TINFO: Test SEM_STAT_ANY with root user\\nsemctl09.c:163: TPASS: SEM_INFO returned valid index 16 to semid 16\\nsemctl09.c:173: TPASS: Counted used = 1\\nsemctl09.c:121: TPASS: semset_cnt = 1\\nsemctl09.c:128: TPASS: sen_cnt = 2\\nsemctl09.c:79: TINFO: Test libc semctl()\\nsemctl09.c:141: TINFO: Test SEM_STAT_ANY with nobody user\\nsemctl09.c:163: TPASS: SEM_INFO returned valid index 17 to semid 17\\nsemctl09.c:173: TPASS: Counted used = 1\\nsemctl09.c:121: TPASS: semset_cnt = 1\\nsemctl09.c:128: TPASS: sen_cnt = 2\\nsemctl09.c:141: TINFO: Test SEM_STAT_ANY with root user\\nsemctl09.c:163: TPASS: SEM_INFO returned valid index 17 to semid 17\\nsemctl09.c:173: TPASS: Counted used = 1\\nsemctl09.c:121: TPASS: semset_cnt = 1\\nsemctl09.c:128: TPASS: sen_cnt = 2\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004090785980224609}, "31": {"test": "semget01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_semYCi6LP as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemget01.c:29: TPASS: un_arg.buf->sem_nsems == PSEMS (10)\\nsemget01.c:30: TPASS: un_arg.buf->sem_perm.cuid == geteuid() (0)\\nsemget01.c:32: TPASS: basic semaphore values are okay\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.003564119338989258}, "32": {"test": "semget02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_semxR9D8d as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemget02.c:55: TPASS: semget(1629029053, 10, 384) : EACCES (13)\\nsemget02.c:55: TPASS: semget(1629029053, 10, 1536) : EEXIST (17)\\nsemget02.c:55: TPASS: semget(1645806269, 10, 384) : ENOENT (2)\\nsemget02.c:55: TPASS: semget(1645806269, -1, 1536) : EINVAL (22)\\nsemget02.c:55: TPASS: semget(1645806269, 32001, 1536) : EINVAL (22)\\nsemget02.c:55: TPASS: semget(1629029053, 11, 384) : EINVAL (22)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004093170166015625}, "33": {"test": "semget05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_semtULReq as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemget05.c:41: TINFO: Current environment 0 semaphore arrays are already in use\\ntst_test.c:1743: TINFO: Updating runtime to 0h 02m 40s\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 16s\\nsemget05.c:56: TINFO: The maximum number of semaphore arrays (32000) has been reached\\nsemget05.c:30: TPASS: semget(1629061054, 10, 1920) : ENOSPC (28)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.029319047927856445}, "34": {"test": "semop01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_semBLE6ag as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemop01.c:71: TINFO: Testing variant: semop: syscall\\nsemop01.c:58: TPASS: semaphore values are correct\\nsemop01.c:58: TPASS: semaphore values are correct\\nsemop01.c:71: TINFO: Testing variant: semtimedop: syscall with old kernel spec\\nsemop01.c:58: TPASS: semaphore values are correct\\nsemop01.c:58: TPASS: semaphore values are correct\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0040378570556640625}, "35": {"test": "semop02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_semGSnsO0 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemop02.c:78: TINFO: Testing variant: semop: syscall\\nsemop02.c:148: TPASS: semop failed as expected: E2BIG (7)\\nsemop02.c:148: TPASS: semop failed as expected: EACCES (13)\\nsemop02.c:148: TPASS: semop failed as expected: EFAULT (14)\\nsemop02.c:148: TPASS: semop failed as expected: EINVAL (22)\\nsemop02.c:148: TPASS: semop failed as expected: EINVAL (22)\\nsemop02.c:148: TPASS: semop failed as expected: ERANGE (34)\\nsemop02.c:148: TPASS: semop failed as expected: EFBIG (27)\\nsemop02.c:148: TPASS: semop failed as expected: EFBIG (27)\\nsemop02.c:148: TPASS: semop failed as expected: EAGAIN/EWOULDBLOCK (11)\\nsemop02.c:148: TPASS: semop failed as expected: EAGAIN/EWOULDBLOCK (11)\\nsemop02.c:123: TCONF: Test not supported for variant\\nsemop02.c:123: TCONF: Test not supported for variant\\nsemop02.c:123: TCONF: Test not supported for variant\\nsemop02.c:78: TINFO: Testing variant: semtimedop: syscall with old kernel spec\\nsemop02.c:148: TPASS: semop failed as expected: E2BIG (7)\\nsemop02.c:148: TPASS: semop failed as expected: EACCES (13)\\nsemop02.c:148: TPASS: semop failed as expected: EFAULT (14)\\nsemop02.c:148: TPASS: semop failed as expected: EINVAL (22)\\nsemop02.c:148: TPASS: semop failed as expected: EINVAL (22)\\nsemop02.c:148: TPASS: semop failed as expected: ERANGE (34)\\nsemop02.c:148: TPASS: semop failed as expected: EFBIG (27)\\nsemop02.c:148: TPASS: semop failed as expected: EFBIG (27)\\nsemop02.c:148: TPASS: semop failed as expected: EAGAIN/EWOULDBLOCK (11)\\nsemop02.c:148: TPASS: semop failed as expected: EAGAIN/EWOULDBLOCK (11)\\nsemop02.c:148: TPASS: semop failed as expected: EAGAIN/EWOULDBLOCK (11)\\nsemop02.c:148: TPASS: semop failed as expected: EAGAIN/EWOULDBLOCK (11)\\nsemop02.c:148: TPASS: semop failed as expected: EFAULT (14)\\n\\nSummary:\\npassed 23\\nfailed 0\\nbroken 0\\nskipped 3\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004211902618408203}, "36": {"test": "semop03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_semf7cePi as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nsemop03.c:69: TINFO: Testing variant: semop: syscall\\nsemop03.c:52: TPASS: expected failure: EIDRM (43)\\nsemop03.c:52: TPASS: expected failure: EIDRM (43)\\nsemop03.c:52: TPASS: expected failure: EINTR (4)\\nsemop03.c:52: TPASS: expected failure: EINTR (4)\\nsemop03.c:69: TINFO: Testing variant: semtimedop: syscall with old kernel spec\\nsemop03.c:52: TPASS: expected failure: EIDRM (43)\\nsemop03.c:52: TPASS: expected failure: EIDRM (43)\\nsemop03.c:52: TPASS: expected failure: EINTR (4)\\nsemop03.c:52: TPASS: expected failure: EINTR (4)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.014156579971313477}, "37": {"test": "shmat01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmat01.c:124: TPASS: shmat() succeeded to attach NULL address\\nshmat01.c:124: TPASS: shmat() succeeded to attach aligned address\\nshmat01.c:124: TPASS: shmat() succeeded to attach unaligned address with SHM_RND\\ntst_coredump.c:30: TINFO: Avoid dumping corefile for process(pid=4756)\\nshmat01.c:124: TPASS: shmat() succeeded to attach aligned address with SHM_READONLY, and got SIGSEGV on write\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01770329475402832}, "38": {"test": "shmat02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmat02.c:47: TPASS: shmat(*tc->shmid, *tc->shmaddr, 0) : EINVAL (22)\\nshmat02.c:47: TPASS: shmat(*tc->shmid, *tc->shmaddr, 0) : EINVAL (22)\\nshmat02.c:47: TPASS: shmat(*tc->shmid, *tc->shmaddr, 0) : EACCES (13)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011013269424438477}, "39": {"test": "shmat04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmat04.c:76: TINFO: Key id: 1627390718\\nshmat04.c:77: TINFO: Page size: 4096\\nshmat04.c:45: TINFO: Attached at 0x7fb108e67000. key: 32791 - size: 12288\\nshmat04.c:50: TINFO: Number of attaches: 1\\nshmat04.c:57: TINFO: Number of attaches: 3\\nshmat04.c:58: TINFO: Delete attached memory\\nshmat04.c:63: TINFO: Number of attaches: 0\\nshmat04.c:68: TPASS: shmid_ds.shm_nattch == 0 (0)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.007923364639282227}, "40": {"test": "shmctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmctl01.c:256: TINFO: shm_id=32792 maps to kernel index=24\\nshmctl01.c:220: TINFO: Basic checks\\nshmctl01.c:175: TPASS: IPC_STAT: shm_segsz=2048\\nshmctl01.c:182: TPASS: IPC_STAT: shm_cpid=4784\\nshmctl01.c:189: TPASS: IPC_STAT: shm_ctime=1784577129 in range <1784577129,1784577129>\\nshmctl01.c:175: TPASS: SHM_STAT: shm_segsz=2048\\nshmctl01.c:182: TPASS: SHM_STAT: shm_cpid=4784\\nshmctl01.c:189: TPASS: SHM_STAT: shm_ctime=1784577129 in range <1784577129,1784577129>\\nshmctl01.c:220: TINFO: Children attach SHM\\nshmctl01.c:116: TPASS: before child shmat() shm_nattch=0\\nshmctl01.c:116: TPASS: after child shmat() shm_nattch=20\\nshmctl01.c:116: TPASS: after child shmdt() shm_nattch=0\\nshmctl01.c:220: TINFO: Chidlren inherit SHM\\nshmctl01.c:116: TPASS: inherited after fork() shm_nattch=21\\nshmctl01.c:116: TPASS: after child shmdt() shm_nattch=1\\nshmctl01.c:116: TPASS: after parent shmdt() shm_nattch=0\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.016371726989746094}, "41": {"test": "shmctl02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmctl02.c:109: TINFO: Testing variant: libc shmctl()\\nshmctl02.c:97: TPASS: shmctl(32794, 2, 0x55a252c92a20) : EACCES (13)\\nshmctl02.c:93: TCONF: EFAULT is skipped for libc variant\\nshmctl02.c:93: TCONF: EFAULT is skipped for libc variant\\nshmctl02.c:97: TPASS: shmctl(32795, -1, 0x55a252c92a20) : EINVAL (22)\\nshmctl02.c:97: TPASS: shmctl(-1, 2, 0x55a252c92a20) : EINVAL (22)\\nshmctl02.c:97: TPASS: shmctl(32796, 2, 0x55a252c92a20) : EINVAL (22)\\nshmctl02.c:97: TPASS: shmctl(32793, 2, 0x55a252c92a20) : EACCES (13)\\nshmctl02.c:97: TPASS: shmctl(32793, 0, (nil)) : EPERM (1)\\nshmctl02.c:97: TPASS: shmctl(32793, 1, 0x55a252c92a20) : EPERM (1)\\nshmctl02.c:97: TPASS: shmctl(32793, 11, 0x55a252c92a20) : EPERM (1)\\nshmctl02.c:97: TPASS: shmctl(32793, 12, 0x55a252c92a20) : EPERM (1)\\nshmctl02.c:109: TINFO: Testing variant: __NR_shmctl syscall\\nshmctl02.c:97: TPASS: shmctl(32798, 2, 0x55a252c92a20) : EACCES (13)\\nshmctl02.c:97: TPASS: shmctl(32799, 1, 0xffffffffffffffff) : EFAULT (14)\\nshmctl02.c:97: TPASS: shmctl(32799, 2, 0xffffffffffffffff) : EFAULT (14)\\nshmctl02.c:97: TPASS: shmctl(32799, -1, 0x55a252c92a20) : EINVAL (22)\\nshmctl02.c:97: TPASS: shmctl(-1, 2, 0x55a252c92a20) : EINVAL (22)\\nshmctl02.c:97: TPASS: shmctl(32800, 2, 0x55a252c92a20) : EINVAL (22)\\nshmctl02.c:97: TPASS: shmctl(32797, 2, 0x55a252c92a20) : EACCES (13)\\nshmctl02.c:97: TPASS: shmctl(32797, 0, (nil)) : EPERM (1)\\nshmctl02.c:97: TPASS: shmctl(32797, 1, 0x55a252c92a20) : EPERM (1)\\nshmctl02.c:97: TPASS: shmctl(32797, 11, 0x55a252c92a20) : EPERM (1)\\nshmctl02.c:97: TPASS: shmctl(32797, 12, 0x55a252c92a20) : EPERM (1)\\n\\nSummary:\\npassed 20\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004053592681884766}, "42": {"test": "shmctl03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmctl03.c:33: TPASS: shmmin = 1\\nshmctl03.c:35: TPASS: /proc/sys/kernel/shmmax = 18446744073692774399\\nshmctl03.c:36: TPASS: /proc/sys/kernel/shmmni = 4096\\nshmctl03.c:37: TPASS: /proc/sys/kernel/shmall = 18446744073692774399\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0034263134002685547}, "43": {"test": "shmctl04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmctl04.c:119: TINFO: Test SHM_STAT_ANY with nobody user\\nshmctl04.c:135: TPASS: SHM_INFO returned valid index 33 maps to shmid 32801\\nshmctl04.c:146: TPASS: Counted used = 1\\nshmctl04.c:85: TPASS: used_ids = 1\\nshmctl04.c:92: TPASS: shm_rss = 0\\nshmctl04.c:99: TPASS: shm_swp = 0\\nshmctl04.c:106: TPASS: shm_tot = 1\\nshmctl04.c:119: TINFO: Test SHM_STAT_ANY with root user\\nshmctl04.c:135: TPASS: SHM_INFO returned valid index 33 maps to shmid 32801\\nshmctl04.c:146: TPASS: Counted used = 1\\nshmctl04.c:85: TPASS: used_ids = 1\\nshmctl04.c:92: TPASS: shm_rss = 0\\nshmctl04.c:99: TPASS: shm_swp = 0\\nshmctl04.c:106: TPASS: shm_tot = 1\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.003573179244995117}, "44": {"test": "shmctl05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 46s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 4ns, avg_dev = 22ns, dev_ratio = 4.96 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 2904ns, avg_dev = 500ns, dev_ratio = 0.17 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 1378ns, avg_dev = 432ns, dev_ratio = 0.31 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = 1530ns, avg_dev = 84ns, dev_ratio = 0.05 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 3134 , avg_dev = 177 , dev_ratio = 0.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:494: TINFO: Reached deviation ratios < 0.10, introducing randomness\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:497: TINFO: Delay range is [-2231, 5541]\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 5437, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 19ns, avg_dev = 2ns, dev_ratio = 0.10 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 2716ns, avg_dev = 179ns, dev_ratio = 0.07 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 1094ns, avg_dev = 55ns, dev_ratio = 0.05 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = 1641ns, avg_dev = 143ns, dev_ratio = 0.09 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 3349 , avg_dev = 288 , dev_ratio = 0.09 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:648: TINFO: Exceeded execution time, requesting exit\\nshmctl05.c:89: TPASS: didn't crash\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 10.005297660827637}, "45": {"test": "shmctl07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmctl07.c:31: TPASS: shmctl(669122597, SHM_LOCK, NULL)\\nshmctl07.c:37: TPASS: SMH_LOCKED bit is on in shm_perm.mode\\nshmctl07.c:46: TPASS: shmctl(669122597, SHM_UNLOCK, NULL)\\nshmctl07.c:53: TPASS: SHM_LOCKED bit is off in shm_perm.mode\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0038547515869140625}, "46": {"test": "shmctl08", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmctl08.c:42: TPASS: shm_perm.mode=0666\\nshmctl08.c:34: TPASS: shmctl(669122598, IPC_SET, {shm_perm.mode=0600})\\nshmctl08.c:42: TPASS: shm_perm.mode=0600\\nshmctl08.c:78: TPASS: shm_ctime updated correctly diff=1\\nshmctl08.c:34: TPASS: shmctl(669122598, IPC_SET, {shm_perm.mode=0666})\\nshmctl08.c:42: TPASS: shm_perm.mode=0666\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.0045254230499268}, "47": {"test": "shmdt01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_shmSXCVp7 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmdt01.c:36: TPASS: buf.shm_nattch == 0 (0)\\nshmdt01.c:44: TPASS: shared memory detached correctly\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004483699798583984}, "48": {"test": "shmdt02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmdt02.c:35: TPASS: shmdt(non_attched_addr) : EINVAL (22)\\nshmdt02.c:35: TPASS: shmdt(unaligned_addr) : EINVAL (22)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0036749839782714844}, "49": {"test": "shmget02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_shmCl1yuz as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nshmget02.c:72: TINFO: SHM_HUGETLB not supported by kernel\\nshmget02.c:90: TPASS: shmget(1645806275, 2048, 1024) : ENOENT (2)\\nshmget02.c:90: TPASS: shmget(1629029059, 2048, 1536) : EEXIST (17)\\nshmget02.c:90: TPASS: shmget(1645806275, 0, 1536) : EINVAL (22)\\nshmget02.c:90: TPASS: shmget(1645806275, 8193, 1536) : EINVAL (22)\\nshmget02.c:90: TPASS: shmget(1629029059, 4096, 1024) : EINVAL (22)\\nshmget02.c:102: TPASS: shmget(1629029059, 2048, 256) : EACCES (13)\\nshmget02.c:102: TPASS: shmget(1645806275, 2048, 2560) : EINVAL (22)\\nshmget02.c:90: TPASS: shmget(1645806275, 2048, 2560) : EINVAL (22)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.006766796112060547}, "50": {"test": "shmget03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_shmalrfJt as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmget03.c:40: TINFO: Current environment 0 shared memory segments are already in use\\nshmget03.c:52: TINFO: The maximum number of memory segments (4096) has been reached\\nshmget03.c:30: TPASS: shmget(1629033156, 2048, 1920) : ENOSPC (28)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.010845661163330078}, "51": {"test": "shmget04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_shmNfmRoF as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmget04.c:42: TINFO: Testing SHM_RD flag\\nshmget04.c:43: TPASS: shmget(1629029061, 2048, 256) : EACCES (13)\\nshmget04.c:42: TINFO: Testing SHM_WR flag\\nshmget04.c:43: TPASS: shmget(1629029061, 2048, 128) : EACCES (13)\\nshmget04.c:42: TINFO: Testing SHM_RW flag\\nshmget04.c:43: TPASS: shmget(1629029061, 2048, 384) : EACCES (13)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0037801265716552734}, "52": {"test": "shmget05", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_shmgTRkOD as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmget05.c:38: TPASS: shm_next_id succeeded, shm id 4947\\nshmget05.c:42: TPASS: /proc/sys/kernel/shm_next_id = -1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.005469083786010742}, "53": {"test": "shmget06", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_shmcaj65P as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nshmget06.c:40: TPASS: shm id 4957 has existed, shmget() returns the new shm id 4958\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.005234956741333008}, "summary": {"passed": 289, "failed": 0, "broken": 0, "skipped": 12, "warnings": 0}}} 2026-07-20 19:51:53.354555 2026-07-20 19:08:00.987045 +1042 46 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:52:20.953339 2026-07-20 19:52:20.953344 +1043 46 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:51:53' --until '2026-07-20 19:52:20' 0 OOM records 2026-07-20 19:51:53.142895 2026-07-20 19:52:20.648235 +1044 46 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:51:53' --until '2026-07-20 19:52:20' 0 systemd errors records 2026-07-20 19:51:53.142895 2026-07-20 19:52:20.648235 +1053 46 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 3 --syscall-method all --mq 3 --pipe 3 --sem 3 --sem-sysv 3 --shm 3 --shm-sysv 3 --verify --dekker 3 --fifo 3 --futex 3 --peterson 3 --pipeherd 3 --sigq 3 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 204.42}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 3318, "real_time_secs": 12.02, "usr_time_secs": 0.09, "sys_time_secs": 1.63, "bogo_ops_s_real_time": 276.13, "bogo_ops_s_usr_sys_time": 1925.17, "cpu_used_per_instance": 4.78, "rss_max_kb": 2360, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 1178412, "real_time_secs": 12.0, "usr_time_secs": 0.29, "sys_time_secs": 0.83, "bogo_ops_s_real_time": 98186.31, "bogo_ops_s_usr_sys_time": 1055920.95, "cpu_used_per_instance": 3.1, "rss_max_kb": 2248, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 1475785, "real_time_secs": 12.0, "usr_time_secs": 0.2, "sys_time_secs": 1.06, "bogo_ops_s_real_time": 122961.96, "bogo_ops_s_usr_sys_time": 1166556.53, "cpu_used_per_instance": 3.51, "rss_max_kb": 2248, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 6321503, "real_time_secs": 12.0, "usr_time_secs": 0.53, "sys_time_secs": 1.56, "bogo_ops_s_real_time": 526626.16, "bogo_ops_s_usr_sys_time": 3013995.54, "cpu_used_per_instance": 5.82, "rss_max_kb": 3084, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 1050910, "real_time_secs": 12.0, "usr_time_secs": 0.12, "sys_time_secs": 0.51, "bogo_ops_s_real_time": 87550.05, "bogo_ops_s_usr_sys_time": 1663040.16, "cpu_used_per_instance": 1.75, "rss_max_kb": 2172, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 583, "real_time_secs": 12.03, "usr_time_secs": 0.13, "sys_time_secs": 1.1, "bogo_ops_s_real_time": 48.47, "bogo_ops_s_usr_sys_time": 476.73, "cpu_used_per_instance": 3.39, "rss_max_kb": 88912, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 247, "real_time_secs": 12.02, "usr_time_secs": 0.07, "sys_time_secs": 0.42, "bogo_ops_s_real_time": 20.55, "bogo_ops_s_usr_sys_time": 502.56, "cpu_used_per_instance": 1.36, "rss_max_kb": 18516, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 8246623, "real_time_secs": 12.04, "usr_time_secs": 2.99, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 684884.36, "bogo_ops_s_usr_sys_time": 2750372.37, "cpu_used_per_instance": 8.3, "rss_max_kb": 1992, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 5454427, "real_time_secs": 12.02, "usr_time_secs": 0.47, "sys_time_secs": 2.98, "bogo_ops_s_real_time": 453813.04, "bogo_ops_s_usr_sys_time": 1581510.42, "cpu_used_per_instance": 9.56, "rss_max_kb": 2052, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 67742, "real_time_secs": 12.0, "usr_time_secs": 0.52, "sys_time_secs": 1.9, "bogo_ops_s_real_time": 5643.09, "bogo_ops_s_usr_sys_time": 27943.58, "cpu_used_per_instance": 6.73, "rss_max_kb": 1992, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1896692, "real_time_secs": 12.01, "usr_time_secs": 2.78, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 157924.01, "bogo_ops_s_usr_sys_time": 681086.11, "cpu_used_per_instance": 7.73, "rss_max_kb": 2172, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 40477214, "real_time_secs": 12.06, "usr_time_secs": 3.53, "sys_time_secs": 22.92, "bogo_ops_s_real_time": 3356574.71, "bogo_ops_s_usr_sys_time": 1530344.67, "cpu_used_per_instance": 73.11, "rss_max_kb": 2172, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 3070569, "real_time_secs": 12.01, "usr_time_secs": 0.46, "sys_time_secs": 1.1, "bogo_ops_s_real_time": 255610.08, "bogo_ops_s_usr_sys_time": 1967816.46, "cpu_used_per_instance": 4.33, "rss_max_kb": 2172, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 39, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:55:31.11423 2026-07-20 19:08:00.987045 +1054 46 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 4 --syscall-method all --mq 4 --pipe 4 --sem 4 --sem-sysv 4 --shm 4 --shm-sysv 4 --verify --dekker 4 --fifo 4 --futex 4 --peterson 4 --pipeherd 4 --sigq 4 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 205.27}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 3223, "real_time_secs": 12.02, "usr_time_secs": 0.09, "sys_time_secs": 1.68, "bogo_ops_s_real_time": 268.08, "bogo_ops_s_usr_sys_time": 1824.19, "cpu_used_per_instance": 3.67, "rss_max_kb": 2320, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 895659, "real_time_secs": 12.02, "usr_time_secs": 0.24, "sys_time_secs": 0.66, "bogo_ops_s_real_time": 74540.19, "bogo_ops_s_usr_sys_time": 996563.0, "cpu_used_per_instance": 1.87, "rss_max_kb": 2260, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 1063040, "real_time_secs": 12.0, "usr_time_secs": 0.14, "sys_time_secs": 0.76, "bogo_ops_s_real_time": 88553.39, "bogo_ops_s_usr_sys_time": 1178402.02, "cpu_used_per_instance": 1.88, "rss_max_kb": 2320, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 6119403, "real_time_secs": 12.01, "usr_time_secs": 0.63, "sys_time_secs": 1.68, "bogo_ops_s_real_time": 509575.8, "bogo_ops_s_usr_sys_time": 2653679.28, "cpu_used_per_instance": 4.8, "rss_max_kb": 2864, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 1173657, "real_time_secs": 12.06, "usr_time_secs": 0.12, "sys_time_secs": 0.5, "bogo_ops_s_real_time": 97317.17, "bogo_ops_s_usr_sys_time": 1912150.59, "cpu_used_per_instance": 1.27, "rss_max_kb": 2064, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 800, "real_time_secs": 12.01, "usr_time_secs": 0.13, "sys_time_secs": 1.17, "bogo_ops_s_real_time": 66.61, "bogo_ops_s_usr_sys_time": 613.48, "cpu_used_per_instance": 2.71, "rss_max_kb": 67420, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 238, "real_time_secs": 12.1, "usr_time_secs": 0.06, "sys_time_secs": 0.39, "bogo_ops_s_real_time": 19.67, "bogo_ops_s_usr_sys_time": 520.87, "cpu_used_per_instance": 0.94, "rss_max_kb": 18480, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 7263692, "real_time_secs": 12.09, "usr_time_secs": 2.76, "sys_time_secs": 0.02, "bogo_ops_s_real_time": 600623.56, "bogo_ops_s_usr_sys_time": 2613314.51, "cpu_used_per_instance": 5.75, "rss_max_kb": 2064, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 6066334, "real_time_secs": 12.07, "usr_time_secs": 0.52, "sys_time_secs": 3.26, "bogo_ops_s_real_time": 502418.12, "bogo_ops_s_usr_sys_time": 1607064.44, "cpu_used_per_instance": 7.82, "rss_max_kb": 2064, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 46935, "real_time_secs": 12.1, "usr_time_secs": 0.61, "sys_time_secs": 1.81, "bogo_ops_s_real_time": 3878.19, "bogo_ops_s_usr_sys_time": 19467.94, "cpu_used_per_instance": 4.98, "rss_max_kb": 2064, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1222080, "real_time_secs": 12.12, "usr_time_secs": 2.93, "sys_time_secs": 0.02, "bogo_ops_s_real_time": 100794.96, "bogo_ops_s_usr_sys_time": 414466.02, "cpu_used_per_instance": 6.08, "rss_max_kb": 2064, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 51111573, "real_time_secs": 12.1, "usr_time_secs": 3.94, "sys_time_secs": 22.93, "bogo_ops_s_real_time": 4225458.19, "bogo_ops_s_usr_sys_time": 1902109.86, "cpu_used_per_instance": 55.54, "rss_max_kb": 2064, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 2968982, "real_time_secs": 12.05, "usr_time_secs": 0.44, "sys_time_secs": 1.03, "bogo_ops_s_real_time": 246394.83, "bogo_ops_s_usr_sys_time": 2022216.59, "cpu_used_per_instance": 3.05, "rss_max_kb": 2064, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 52, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:55:43.433263 2026-07-20 19:08:00.987045 +1055 46 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:55:56.159359 2026-07-20 19:55:56.159363 +1056 46 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:55:06' --until '2026-07-20 19:55:55' 0 OOM records 2026-07-20 19:55:06.353715 2026-07-20 19:55:55.85383 +1057 46 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:55:06' --until '2026-07-20 19:55:55' 0 systemd errors records 2026-07-20 19:55:06.353715 2026-07-20 19:55:55.85383 +1058 47 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 2.889, "userspace_time": 8.3, "total_time": 11.19} 2026-07-20 19:08:00.987038 2026-07-20 19:08:00.987045 +1059 47 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:58:30.79421 2026-07-20 19:58:30.794214 +1060 47 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:58:30' --until '2026-07-20 19:58:30' 0 OOM records 2026-07-20 19:58:30.276014 2026-07-20 19:58:30.488949 +1061 47 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:58:30' --until '2026-07-20 19:58:30' 0 systemd errors records 2026-07-20 19:58:30.276014 2026-07-20 19:58:30.488949 +1062 47 loader systemd-analyze critical-chain [{"service_name": "docker.service", "slow_time_s": 2.61}, {"service_name": "containerd.service", "slow_time_s": 2.964}] 2026-07-20 19:08:00.987038 2026-07-20 19:08:00.987045 +1063 47 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 19:58:31.748164 2026-07-20 19:58:31.748169 +1064 47 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:58:31' --until '2026-07-20 19:58:31' 0 OOM records 2026-07-20 19:58:31.124968 2026-07-20 19:58:31.441762 +1065 47 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:58:31' --until '2026-07-20 19:58:31' 0 systemd errors records 2026-07-20 19:58:31.124968 2026-07-20 19:58:31.441762 +1066 47 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics --vm-populate {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 196.46}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 4271903, "real_time_secs": 33.04, "usr_time_secs": 48.81, "sys_time_secs": 15.83, "bogo_ops_s_real_time": 129296.95, "bogo_ops_s_usr_sys_time": 66092.42, "cpu_used_per_instance": 48.91, "rss_max_kb": 268352, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 139, "real_time_secs": 33.05, "usr_time_secs": 3.1, "sys_time_secs": 62.63, "bogo_ops_s_real_time": 4.21, "bogo_ops_s_usr_sys_time": 2.11, "cpu_used_per_instance": 49.71, "rss_max_kb": 241256, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:58:32.186416 2026-07-20 19:08:00.987045 +1067 47 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --memrate 0 --memrate-rd-mbs 500 --memrate-wr-mbs 1000 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "memrate"}, "time": {"duration_sec": 55.81}, "metrics": {"0": {"bogo_ops": 12, "real_time_secs": 33.02, "usr_time_secs": 22.16, "sys_time_secs": 0.63, "bogo_ops_s_real_time": 0.36, "bogo_ops_s_usr_sys_time": 0.53, "cpu_used_per_instance": 17.25, "rss_max_kb": 264356, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:59:05.433769 2026-07-20 19:08:00.987045 +1068 47 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaptorture 0 --mmaptorture-bytes 70% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mmaptorture"}, "time": {"duration_sec": 52.54}, "metrics": {"0": {"bogo_ops": 1611, "real_time_secs": 33.08, "usr_time_secs": 1.35, "sys_time_secs": 18.11, "bogo_ops_s_real_time": 48.7, "bogo_ops_s_usr_sys_time": 82.8, "cpu_used_per_instance": 14.7, "rss_max_kb": 14128, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 19:59:38.580339 2026-07-20 19:08:00.987045 +1069 47 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:00:12.115612 2026-07-20 20:00:12.115616 +1070 47 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 19:58:32' --until '2026-07-20 20:00:11' 0 OOM records 2026-07-20 19:58:32.07923 2026-07-20 20:00:11.81059 +1071 47 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 19:58:32' --until '2026-07-20 20:00:11' 0 systemd errors records 2026-07-20 19:58:32.07923 2026-07-20 20:00:11.81059 +1114 49 loader systemd-analyze critical-chain [{"service_name": "docker.service", "slow_time_s": 2.61}, {"service_name": "containerd.service", "slow_time_s": 2.964}] 2026-07-20 19:08:00.987038 2026-07-20 19:08:00.987045 +1081 47 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 95% --syscall-method all --verify --metrics {"pgscan_time_sec": 11.0, "tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 162.48}, "metrics": {"0": {"bogo_ops": 7605376, "real_time_secs": 33.08, "usr_time_secs": 99.73, "sys_time_secs": 29.67, "bogo_ops_s_real_time": 229929.68, "bogo_ops_s_usr_sys_time": 58772.68, "cpu_used_per_instance": 97.8, "rss_max_kb": 747192, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:08:14.325424 2026-07-20 19:08:00.987045 +1082 47 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:08:48.083732 2026-07-20 20:08:48.083737 +1083 47 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:08:14' --until '2026-07-20 20:08:47' 30 OOM records 2026-07-20 20:08:14.111313 2026-07-20 20:08:47.778127 +1084 47 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:08:14' --until '2026-07-20 20:08:47' 0 systemd errors records 2026-07-20 20:08:14.111313 2026-07-20 20:08:47.778127 +1085 48 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 2.889, "userspace_time": 8.3, "total_time": 11.19} 2026-07-20 19:08:00.987038 2026-07-20 19:08:00.987045 +1086 48 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:11:05.231529 2026-07-20 20:11:05.231532 +1087 48 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:11:04' --until '2026-07-20 20:11:04' 0 OOM records 2026-07-20 20:11:04.711038 2026-07-20 20:11:04.925566 +1088 48 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:11:04' --until '2026-07-20 20:11:04' 0 systemd errors records 2026-07-20 20:11:04.711038 2026-07-20 20:11:04.925566 +1089 48 loader systemd-analyze critical-chain [{"service_name": "docker.service", "slow_time_s": 2.61}, {"service_name": "containerd.service", "slow_time_s": 2.964}] 2026-07-20 19:08:00.987038 2026-07-20 19:08:00.987045 +1090 48 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:11:06.144162 2026-07-20 20:11:06.144167 +1091 48 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:11:05' --until '2026-07-20 20:11:05' 0 OOM records 2026-07-20 20:11:05.520363 2026-07-20 20:11:05.834666 +1092 48 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:11:05' --until '2026-07-20 20:11:05' 0 systemd errors records 2026-07-20 20:11:05.520363 2026-07-20 20:11:05.834666 +1093 48 loader /usr/bin/iperf3 --time 50 --port 5201 --client 10.5.0.10 --version4 --json {"tool": "iperf3", "test_type": {"protocol": "TCP"}, "time": {"duration_sec": 50.0}, "metrics": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 32918, "remote_host": "10.5.0.10", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux 24e46e7d361b 6.17.0-40-generic #40~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Jun 23 16:48:12 UTC 2 x86_64", "timestamp": {"time": "Mon, 20 Jul 2026 20:11:09 GMT", "timesecs": 1784578269}, "connecting_to": {"host": "10.5.0.10", "port": 5201}, "cookie": "gzmabm4kqayeijrshrsi3bppa24xizfpiyci", "tcp_mss_default": 1448, "target_bitrate": 0, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.000415, "seconds": 1.0004149675369263, "bytes": 1037697024, "bits_per_second": 8298132736.297332, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 59, "rttvar": 41, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.000415, "seconds": 1.0004149675369263, "bytes": 1037697024, "bits_per_second": 8298132736.297332, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.000415, "end": 2.001032, "seconds": 1.0006170272827148, "bytes": 1063780352, "bits_per_second": 8504995002.044385, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 66560, "rtt": 62, "rttvar": 39, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 1.000415, "end": 2.001032, "seconds": 1.0006170272827148, "bytes": 1063780352, "bits_per_second": 8504995002.044385, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.001032, "end": 3.001028, "seconds": 0.9999960064888, "bytes": 1071513600, "bits_per_second": 8572143032.94921, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 77, "rttvar": 29, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 2.001032, "end": 3.001028, "seconds": 0.9999960064888, "bytes": 1071513600, "bits_per_second": 8572143032.94921, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.001028, "end": 4.000424, "seconds": 0.999396026134491, "bytes": 993132544, "bits_per_second": 7949861860.79833, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 87040, "rtt": 58, "rttvar": 30, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 3.001028, "end": 4.000424, "seconds": 0.999396026134491, "bytes": 993132544, "bits_per_second": 7949861860.79833, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.000424, "end": 5.001031, "seconds": 1.0006070137023926, "bytes": 1029701632, "bits_per_second": 8232615745.435987, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 76, "rttvar": 53, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 4.000424, "end": 5.001031, "seconds": 1.0006070137023926, "bytes": 1029701632, "bits_per_second": 8232615745.435987, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.001031, "end": 6.001018, "seconds": 0.999987006187439, "bytes": 1064304640, "bits_per_second": 8514547756.43759, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 67584, "rtt": 55, "rttvar": 39, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 5.001031, "end": 6.001018, "seconds": 0.999987006187439, "bytes": 1064304640, "bits_per_second": 8514547756.43759, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.001018, "end": 7.000417, "seconds": 0.9993990063667297, "bytes": 1040056320, "bits_per_second": 8325454104.911136, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 267264, "rtt": 67, "rttvar": 37, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 6.001018, "end": 7.000417, "seconds": 0.9993990063667297, "bytes": 1040056320, "bits_per_second": 8325454104.911136, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.000417, "end": 8.001015, "seconds": 1.0005979537963867, "bytes": 997064704, "bits_per_second": 7971750893.289508, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 125952, "rtt": 77, "rttvar": 44, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 7.000417, "end": 8.001015, "seconds": 1.0005979537963867, "bytes": 997064704, "bits_per_second": 7971750893.289508, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.001015, "end": 9.000427, "seconds": 0.9994120001792908, "bytes": 1047920640, "bits_per_second": 8388297437.38924, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 62, "rttvar": 34, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 8.001015, "end": 9.000427, "seconds": 0.9994120001792908, "bytes": 1047920640, "bits_per_second": 8388297437.38924, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.000427, "end": 10.00103, "seconds": 1.0006029605865479, "bytes": 1005715456, "bits_per_second": 8040875317.102442, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 67584, "rtt": 63, "rttvar": 38, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 9.000427, "end": 10.00103, "seconds": 1.0006029605865479, "bytes": 1005715456, "bits_per_second": 8040875317.102442, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.00103, "end": 11.000433, "seconds": 0.9994029998779297, "bytes": 1023279104, "bits_per_second": 8191122933.391128, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 66560, "rtt": 62, "rttvar": 29, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 10.00103, "end": 11.000433, "seconds": 0.9994029998779297, "bytes": 1023279104, "bits_per_second": 8191122933.391128, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.000433, "end": 12.001018, "seconds": 1.0005849599838257, "bytes": 990117888, "bits_per_second": 7916312378.039383, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 267264, "rtt": 55, "rttvar": 34, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 11.000433, "end": 12.001018, "seconds": 1.0005849599838257, "bytes": 990117888, "bits_per_second": 7916312378.039383, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.001018, "end": 13.00103, "seconds": 1.0000120401382446, "bytes": 1052901376, "bits_per_second": 8423109592.596055, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 65, "rttvar": 33, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 12.001018, "end": 13.00103, "seconds": 1.0000120401382446, "bytes": 1052901376, "bits_per_second": 8423109592.596055, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.00103, "end": 14.000418, "seconds": 0.9993879795074463, "bytes": 1040318464, "bits_per_second": 8327644401.02813, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 267264, "rtt": 77, "rttvar": 39, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 13.00103, "end": 14.000418, "seconds": 0.9993879795074463, "bytes": 1040318464, "bits_per_second": 8327644401.02813, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.000418, "end": 15.001017, "seconds": 1.0005990266799927, "bytes": 1060241408, "bits_per_second": 8476853402.649426, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 68608, "rtt": 61, "rttvar": 44, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 14.000418, "end": 15.001017, "seconds": 1.0005990266799927, "bytes": 1060241408, "bits_per_second": 8476853402.649426, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.001017, "end": 16.000419, "seconds": 0.9994019865989685, "bytes": 1031798784, "bits_per_second": 8259329461.701632, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 60, "rttvar": 33, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 15.001017, "end": 16.000419, "seconds": 0.9994019865989685, "bytes": 1031798784, "bits_per_second": 8259329461.701632, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.000419, "end": 17.001018, "seconds": 1.0005990266799927, "bytes": 908460032, "bits_per_second": 7263329327.946986, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 65, "rttvar": 36, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 16.000419, "end": 17.001018, "seconds": 1.0005990266799927, "bytes": 908460032, "bits_per_second": 7263329327.946986, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.001018, "end": 18.001015, "seconds": 0.9999970197677612, "bytes": 923271168, "bits_per_second": 7386191356.565602, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 67584, "rtt": 69, "rttvar": 45, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 17.001018, "end": 18.001015, "seconds": 0.9999970197677612, "bytes": 923271168, "bits_per_second": 7386191356.565602, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.001015, "end": 19.001029, "seconds": 1.0000139474868774, "bytes": 901513216, "bits_per_second": 7212005138.652968, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 77, "rttvar": 49, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 18.001015, "end": 19.001029, "seconds": 1.0000139474868774, "bytes": 901513216, "bits_per_second": 7212005138.652968, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.001029, "end": 20.001017, "seconds": 0.9999880194664, "bytes": 946864128, "bits_per_second": 7575003776.587264, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 72, "rttvar": 50, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 19.001029, "end": 20.001017, "seconds": 0.9999880194664, "bytes": 946864128, "bits_per_second": 7575003776.587264, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.001017, "end": 21.00103, "seconds": 1.000012993812561, "bytes": 886833152, "bits_per_second": 7094573030.447842, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 67, "rttvar": 48, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 20.001017, "end": 21.00103, "seconds": 1.000012993812561, "bytes": 886833152, "bits_per_second": 7094573030.447842, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.00103, "end": 22.001015, "seconds": 0.9999849796295166, "bytes": 951582720, "bits_per_second": 7612776106.71753, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 66560, "rtt": 75, "rttvar": 33, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 21.00103, "end": 22.001015, "seconds": 0.9999849796295166, "bytes": 951582720, "bits_per_second": 7612776106.71753, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.001015, "end": 23.00103, "seconds": 1.0000150203704834, "bytes": 999555072, "bits_per_second": 7996320468.304062, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 34816, "rtt": 66, "rttvar": 45, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 22.001015, "end": 23.00103, "seconds": 1.0000150203704834, "bytes": 999555072, "bits_per_second": 7996320468.304062, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.00103, "end": 24.001015, "seconds": 0.9999849796295166, "bytes": 1035993088, "bits_per_second": 8288069193.869884, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 67584, "rtt": 61, "rttvar": 39, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 23.00103, "end": 24.001015, "seconds": 0.9999849796295166, "bytes": 1035993088, "bits_per_second": 8288069193.869884, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.001015, "end": 25.001029, "seconds": 1.0000139474868774, "bytes": 895483904, "bits_per_second": 7163771315.393585, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 67584, "rtt": 66, "rttvar": 46, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 24.001015, "end": 25.001029, "seconds": 1.0000139474868774, "bytes": 895483904, "bits_per_second": 7163771315.393585, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.001029, "end": 26.00103, "seconds": 1.0000009536743164, "bytes": 910557184, "bits_per_second": 7284450525.006625, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 2048, "rtt": 65, "rttvar": 38, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 25.001029, "end": 26.00103, "seconds": 1.0000009536743164, "bytes": 910557184, "bits_per_second": 7284450525.006625, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.00103, "end": 27.001016, "seconds": 0.9999859929084778, "bytes": 897318912, "bits_per_second": 7178651848.033442, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 80, "rttvar": 45, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 26.00103, "end": 27.001016, "seconds": 0.9999859929084778, "bytes": 897318912, "bits_per_second": 7178651848.033442, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.001016, "end": 28.000416, "seconds": 0.999400019645691, "bytes": 893386752, "bits_per_second": 7151384706.329905, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 267264, "rtt": 79, "rttvar": 56, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 27.001016, "end": 28.000416, "seconds": 0.999400019645691, "bytes": 893386752, "bits_per_second": 7151384706.329905, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.000416, "end": 29.000418, "seconds": 1.0000020265579224, "bytes": 958398464, "bits_per_second": 7667172174.031488, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 83968, "rtt": 67, "rttvar": 42, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 28.000416, "end": 29.000418, "seconds": 1.0000020265579224, "bytes": 958398464, "bits_per_second": 7667172174.031488, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.000418, "end": 30.000417, "seconds": 0.9999989867210388, "bytes": 973340672, "bits_per_second": 7786733266.132995, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 83968, "rtt": 73, "rttvar": 37, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 29.000418, "end": 30.000417, "seconds": 0.9999989867210388, "bytes": 973340672, "bits_per_second": 7786733266.132995, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.000417, "end": 31.001016, "seconds": 1.0005990266799927, "bytes": 893911040, "bits_per_second": 7147007072.081727, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 69, "rttvar": 40, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 30.000417, "end": 31.001016, "seconds": 1.0005990266799927, "bytes": 893911040, "bits_per_second": 7147007072.081727, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.001016, "end": 32.00103, "seconds": 1.0000139474868774, "bytes": 988676096, "bits_per_second": 7909298453.163614, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 67584, "rtt": 58, "rttvar": 32, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 31.001016, "end": 32.00103, "seconds": 1.0000139474868774, "bytes": 988676096, "bits_per_second": 7909298453.163614, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.00103, "end": 33.000414, "seconds": 0.9993839859962463, "bytes": 890372096, "bits_per_second": 7127367326.082764, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 72, "rttvar": 49, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 32.00103, "end": 33.000414, "seconds": 0.9993839859962463, "bytes": 890372096, "bits_per_second": 7127367326.082764, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.000414, "end": 34.001016, "seconds": 1.0006020069122314, "bytes": 975044608, "bits_per_second": 7795663820.49463, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 62, "rttvar": 43, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 33.000414, "end": 34.001016, "seconds": 1.0006020069122314, "bytes": 975044608, "bits_per_second": 7795663820.49463, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.001016, "end": 35.001015, "seconds": 0.9999989867210388, "bytes": 1032716288, "bits_per_second": 8261738675.445983, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 67584, "rtt": 60, "rttvar": 39, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 34.001016, "end": 35.001015, "seconds": 0.9999989867210388, "bytes": 1032716288, "bits_per_second": 8261738675.445983, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.001015, "end": 36.001039, "seconds": 1.0000239610672, "bytes": 1042022400, "bits_per_second": 8335979461.035958, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 60, "rttvar": 32, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 35.001015, "end": 36.001039, "seconds": 1.0000239610672, "bytes": 1042022400, "bits_per_second": 8335979461.035958, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.001039, "end": 37.001015, "seconds": 0.9999759793281555, "bytes": 937951232, "bits_per_second": 7503790102.079632, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 30720, "rtt": 65, "rttvar": 48, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 36.001039, "end": 37.001015, "seconds": 0.9999759793281555, "bytes": 937951232, "bits_per_second": 7503790102.079632, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.001015, "end": 38.001015, "seconds": 1, "bytes": 872415232, "bits_per_second": 6979321856, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 68608, "rtt": 68, "rttvar": 46, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 37.001015, "end": 38.001015, "seconds": 1, "bytes": 872415232, "bits_per_second": 6979321856, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.001015, "end": 39.001016, "seconds": 1.0000009536743164, "bytes": 838729728, "bits_per_second": 6709831425.006103, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 74, "rttvar": 46, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 38.001015, "end": 39.001016, "seconds": 1.0000009536743164, "bytes": 838729728, "bits_per_second": 6709831425.006103, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.001016, "end": 40.000418, "seconds": 0.9994019865989685, "bytes": 924844032, "bits_per_second": 7403179456.525243, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 73728, "rtt": 75, "rttvar": 48, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 39.001016, "end": 40.000418, "seconds": 0.9994019865989685, "bytes": 924844032, "bits_per_second": 7403179456.525243, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.000418, "end": 41.00042, "seconds": 1.0000020265579224, "bytes": 872677376, "bits_per_second": 6981404859.778672, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 2048, "rtt": 66, "rttvar": 35, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 40.000418, "end": 41.00042, "seconds": 1.0000020265579224, "bytes": 872677376, "bits_per_second": 6981404859.778672, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.00042, "end": 42.000424, "seconds": 1.0000040531158447, "bytes": 877133824, "bits_per_second": 7017042151.115274, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 66560, "rtt": 74, "rttvar": 42, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 41.00042, "end": 42.000424, "seconds": 1.0000040531158447, "bytes": 877133824, "bits_per_second": 7017042151.115274, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.000424, "end": 43.000422, "seconds": 0.9999979734420776, "bytes": 967704576, "bits_per_second": 7741652296.906795, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 57, "rttvar": 35, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 42.000424, "end": 43.000422, "seconds": 0.9999979734420776, "bytes": 967704576, "bits_per_second": 7741652296.906795, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.000422, "end": 44.000416, "seconds": 0.9999939799308777, "bytes": 1038614528, "bits_per_second": 8308966244.551127, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 64, "rttvar": 35, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 43.000422, "end": 44.000416, "seconds": 0.9999939799308777, "bytes": 1038614528, "bits_per_second": 8308966244.551127, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.000416, "end": 45.001033, "seconds": 1.0006170272827148, "bytes": 1047134208, "bits_per_second": 8371907968.375134, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 72704, "rtt": 52, "rttvar": 29, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 44.000416, "end": 45.001033, "seconds": 1.0006170272827148, "bytes": 1047134208, "bits_per_second": 8371907968.375134, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 45.001033, "end": 46.001031, "seconds": 0.9999979734420776, "bytes": 1038745600, "bits_per_second": 8309981640.659128, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 68608, "rtt": 60, "rttvar": 36, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 45.001033, "end": 46.001031, "seconds": 0.9999979734420776, "bytes": 1038745600, "bits_per_second": 8309981640.659128, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 46.001031, "end": 47.00102, "seconds": 0.9999889731407166, "bytes": 883163136, "bits_per_second": 7065382996.984092, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 0, "rtt": 71, "rttvar": 55, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 46.001031, "end": 47.00102, "seconds": 0.9999889731407166, "bytes": 883163136, "bits_per_second": 7065382996.984092, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 47.00102, "end": 48.001022, "seconds": 1.0000020265579224, "bytes": 892207104, "bits_per_second": 7137642367.154314, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 30720, "rtt": 74, "rttvar": 48, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 47.00102, "end": 48.001022, "seconds": 1.0000020265579224, "bytes": 892207104, "bits_per_second": 7137642367.154314, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 48.001022, "end": 49.001033, "seconds": 1.0000109672546387, "bytes": 894697472, "bits_per_second": 7157501277.86091, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 123904, "rtt": 68, "rttvar": 34, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 48.001022, "end": 49.001033, "seconds": 1.0000109672546387, "bytes": 894697472, "bits_per_second": 7157501277.86091, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 49.001033, "end": 50.010551, "seconds": 1.009518027305603, "bytes": 915800064, "bits_per_second": 7257325093.593538, "retransmits": 0, "snd_cwnd": 593680, "snd_wnd": 267264, "rtt": 63, "rttvar": 34, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 49.001033, "end": 50.010551, "seconds": 1.009518027305603, "bytes": 915800064, "bits_per_second": 7257325093.593538, "retransmits": 0, "omitted": false, "sender": true}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 50.010551, "seconds": 50.010551, "bytes": 48461250560, "bits_per_second": 7752164227.904628, "retransmits": 0, "max_snd_cwnd": 593680, "max_snd_wnd": 267264, "max_rtt": 80, "min_rtt": 52, "mean_rtt": 66, "sender": true}, "receiver": {"socket": 5, "start": 0, "end": 50.017462, "seconds": 50.010551, "bytes": 48461250560, "bits_per_second": 7751093097.846508, "sender": true}}], "sum_sent": {"start": 0, "end": 50.010551, "seconds": 50.010551, "bytes": 48461250560, "bits_per_second": 7752164227.904628, "retransmits": 0, "sender": true}, "sum_received": {"start": 0, "end": 50.017462, "seconds": 50.017462, "bytes": 48461250560, "bits_per_second": 7751093097.846508, "sender": true}, "cpu_utilization_percent": {"host_total": 13.850803495939093, "host_user": 0.349590310703649, "host_system": 13.5012151844366, "remote_total": 49.89431194642977, "remote_user": 1.5262824421838614, "remote_system": 48.36802750494482}, "sender_tcp_congestion": "cubic", "receiver_tcp_congestion": "cubic"}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 32918}], "version": "iperf 3.18", "system_info": "Linux qemux86-64 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64", "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "timestamp": {"time": "Mon, 20 Jul 2026 20:11:09 GMT", "timesecs": 1784578269}, "accepted_connection": {"host": "10.5.0.11", "port": 32908}, "cookie": "gzmabm4kqayeijrshrsi3bppa24xizfpiyci", "tcp_mss_default": 0, "target_bitrate": 0, "fq_rate": 0, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001075, "seconds": 1.001075029373169, "bytes": 1027866624, "bits_per_second": 8214102590.441052, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.001075, "seconds": 1.001075029373169, "bytes": 1027866624, "bits_per_second": 8214102590.441052, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.001075, "end": 2.00106, "seconds": 0.9999849796295166, "bytes": 1063518208, "bits_per_second": 8508273461.419564, "omitted": false, "sender": false}], "sum": {"start": 1.001075, "end": 2.00106, "seconds": 0.9999849796295166, "bytes": 1063518208, "bits_per_second": 8508273461.419564, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.00106, "end": 3.001101, "seconds": 1.0000410079956055, "bytes": 1072562176, "bits_per_second": 8580145553.42885, "omitted": false, "sender": false}], "sum": {"start": 2.00106, "end": 3.001101, "seconds": 1.0000410079956055, "bytes": 1072562176, "bits_per_second": 8580145553.42885, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.001101, "end": 4.00105, "seconds": 0.9999489784240723, "bytes": 992739328, "bits_per_second": 7942319853.675457, "omitted": false, "sender": false}], "sum": {"start": 3.001101, "end": 4.00105, "seconds": 0.9999489784240723, "bytes": 992739328, "bits_per_second": 7942319853.675457, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.00105, "end": 5.001047, "seconds": 0.9999970197677612, "bytes": 1030225920, "bits_per_second": 8241831922.573202, "omitted": false, "sender": false}], "sum": {"start": 4.00105, "end": 5.001047, "seconds": 0.9999970197677612, "bytes": 1030225920, "bits_per_second": 8241831922.573202, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.001047, "end": 6.001048, "seconds": 1.0000009536743164, "bytes": 1062862848, "bits_per_second": 8502894675.007733, "omitted": false, "sender": false}], "sum": {"start": 5.001047, "end": 6.001048, "seconds": 1.0000009536743164, "bytes": 1062862848, "bits_per_second": 8502894675.007733, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.001048, "end": 7.001055, "seconds": 1.0000070333480835, "bytes": 1041760256, "bits_per_second": 8334023431.912268, "omitted": false, "sender": false}], "sum": {"start": 6.001048, "end": 7.001055, "seconds": 1.0000070333480835, "bytes": 1041760256, "bits_per_second": 8334023431.912268, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.001055, "end": 8.001059, "seconds": 1.0000040531158447, "bytes": 996802560, "bits_per_second": 7974388158.881001, "omitted": false, "sender": false}], "sum": {"start": 7.001055, "end": 8.001059, "seconds": 1.0000040531158447, "bytes": 996802560, "bits_per_second": 7974388158.881001, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.001059, "end": 9.001056, "seconds": 0.9999970197677612, "bytes": 1048838144, "bits_per_second": 8390730158.324525, "omitted": false, "sender": false}], "sum": {"start": 8.001059, "end": 9.001056, "seconds": 0.9999970197677612, "bytes": 1048838144, "bits_per_second": 8390730158.324525, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.001056, "end": 10.001048, "seconds": 0.9999920129776, "bytes": 1007026176, "bits_per_second": 8056273753.63893, "omitted": false, "sender": false}], "sum": {"start": 9.001056, "end": 10.001048, "seconds": 0.9999920129776, "bytes": 1007026176, "bits_per_second": 8056273753.63893, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.001048, "end": 11.001056, "seconds": 1.0000079870224, "bytes": 1022361600, "bits_per_second": 8178827475.521749, "omitted": false, "sender": false}], "sum": {"start": 10.001048, "end": 11.001056, "seconds": 1.0000079870224, "bytes": 1022361600, "bits_per_second": 8178827475.521749, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.001056, "end": 12.001043, "seconds": 0.999987006187439, "bytes": 990904320, "bits_per_second": 7927337566.338445, "omitted": false, "sender": false}], "sum": {"start": 11.001056, "end": 12.001043, "seconds": 0.999987006187439, "bytes": 990904320, "bits_per_second": 7927337566.338445, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.001043, "end": 13.00105, "seconds": 1.0000070333480835, "bytes": 1052639232, "bits_per_second": 8421054627.791573, "omitted": false, "sender": false}], "sum": {"start": 12.001043, "end": 13.00105, "seconds": 1.0000070333480835, "bytes": 1052639232, "bits_per_second": 8421054627.791573, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.00105, "end": 14.001033, "seconds": 0.999983012676239, "bytes": 1041367040, "bits_per_second": 8331077842.716592, "omitted": false, "sender": false}], "sum": {"start": 13.00105, "end": 14.001033, "seconds": 0.999983012676239, "bytes": 1041367040, "bits_per_second": 8331077842.716592, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.001033, "end": 15.00104, "seconds": 1.0000070333480835, "bytes": 1058275328, "bits_per_second": 8466143078.668803, "omitted": false, "sender": false}], "sum": {"start": 14.001033, "end": 15.00104, "seconds": 1.0000070333480835, "bytes": 1058275328, "bits_per_second": 8466143078.668803, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.00104, "end": 16.001048, "seconds": 1.0000079870224, "bytes": 1032716288, "bits_per_second": 8261664317.902033, "omitted": false, "sender": false}], "sum": {"start": 15.00104, "end": 16.001048, "seconds": 1.0000079870224, "bytes": 1032716288, "bits_per_second": 8261664317.902033, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.001048, "end": 17.000359, "seconds": 0.9993109703063965, "bytes": 908591104, "bits_per_second": 7273740655.29507, "omitted": false, "sender": false}], "sum": {"start": 16.001048, "end": 17.000359, "seconds": 0.9993109703063965, "bytes": 908591104, "bits_per_second": 7273740655.29507, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.000359, "end": 18.001061, "seconds": 1.0007020235061646, "bytes": 923533312, "bits_per_second": 7383083397.906696, "omitted": false, "sender": false}], "sum": {"start": 17.000359, "end": 18.001061, "seconds": 1.0007020235061646, "bytes": 923533312, "bits_per_second": 7383083397.906696, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.001061, "end": 19.00106, "seconds": 0.9999989867210388, "bytes": 901644288, "bits_per_second": 7213161612.944906, "omitted": false, "sender": false}], "sum": {"start": 18.001061, "end": 19.00106, "seconds": 0.9999989867210388, "bytes": 901644288, "bits_per_second": 7213161612.944906, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.00106, "end": 20.00105, "seconds": 0.9999899864196777, "bytes": 946470912, "bits_per_second": 7571843117.259242, "omitted": false, "sender": false}], "sum": {"start": 19.00106, "end": 20.00105, "seconds": 0.9999899864196777, "bytes": 946470912, "bits_per_second": 7571843117.259242, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.00105, "end": 21.001051, "seconds": 1.0000009536743164, "bytes": 886571008, "bits_per_second": 7092561300.00645, "omitted": false, "sender": false}], "sum": {"start": 20.00105, "end": 21.001051, "seconds": 1.0000009536743164, "bytes": 886571008, "bits_per_second": 7092561300.00645, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.001051, "end": 22.00104, "seconds": 0.9999889731407166, "bytes": 952238080, "bits_per_second": 7617988642.488784, "omitted": false, "sender": false}], "sum": {"start": 21.001051, "end": 22.00104, "seconds": 0.9999889731407166, "bytes": 952238080, "bits_per_second": 7617988642.488784, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.00104, "end": 23.001061, "seconds": 1.000020980834961, "bytes": 998375424, "bits_per_second": 7986835821.51577, "omitted": false, "sender": false}], "sum": {"start": 22.00104, "end": 23.001061, "seconds": 1.000020980834961, "bytes": 998375424, "bits_per_second": 7986835821.51577, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.001061, "end": 24.001064, "seconds": 1.0000029802322388, "bytes": 1037434880, "bits_per_second": 8299454305.698714, "omitted": false, "sender": false}], "sum": {"start": 23.001061, "end": 24.001064, "seconds": 1.0000029802322388, "bytes": 1037434880, "bits_per_second": 8299454305.698714, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.001064, "end": 25.001069, "seconds": 1.0000050067901611, "bytes": 895090688, "bits_per_second": 7160689651.929503, "omitted": false, "sender": false}], "sum": {"start": 24.001064, "end": 25.001069, "seconds": 1.0000050067901611, "bytes": 895090688, "bits_per_second": 7160689651.929503, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.001069, "end": 26.001048, "seconds": 0.999979019165039, "bytes": 910032896, "bits_per_second": 7280415917.204806, "omitted": false, "sender": false}], "sum": {"start": 25.001069, "end": 26.001048, "seconds": 0.999979019165039, "bytes": 910032896, "bits_per_second": 7280415917.204806, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.001048, "end": 27.001077, "seconds": 1.0000289678573608, "bytes": 897712128, "bits_per_second": 7181488991.651252, "omitted": false, "sender": false}], "sum": {"start": 26.001048, "end": 27.001077, "seconds": 1.0000289678573608, "bytes": 897712128, "bits_per_second": 7181488991.651252, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.001077, "end": 28.001072, "seconds": 0.999994993209839, "bytes": 894959616, "bits_per_second": 7159712775.17948, "omitted": false, "sender": false}], "sum": {"start": 27.001077, "end": 28.001072, "seconds": 0.999994993209839, "bytes": 894959616, "bits_per_second": 7159712775.17948, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.001072, "end": 29.001069, "seconds": 0.9999970197677612, "bytes": 956694528, "bits_per_second": 7653579033.442978, "omitted": false, "sender": false}], "sum": {"start": 28.001072, "end": 29.001069, "seconds": 0.9999970197677612, "bytes": 956694528, "bits_per_second": 7653579033.442978, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.001069, "end": 30.001064, "seconds": 0.999994993209839, "bytes": 973471744, "bits_per_second": 7787812943.945225, "omitted": false, "sender": false}], "sum": {"start": 29.001069, "end": 30.001064, "seconds": 0.999994993209839, "bytes": 973471744, "bits_per_second": 7787812943.945225, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.001064, "end": 31.001054, "seconds": 0.9999899864196777, "bytes": 894042112, "bits_per_second": 7152408517.217185, "omitted": false, "sender": false}], "sum": {"start": 30.001064, "end": 31.001054, "seconds": 0.9999899864196777, "bytes": 894042112, "bits_per_second": 7152408517.217185, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.001054, "end": 32.001073, "seconds": 1.0000189542770386, "bytes": 988282880, "bits_per_second": 7906113185.340386, "omitted": false, "sender": false}], "sum": {"start": 31.001054, "end": 32.001073, "seconds": 1.0000189542770386, "bytes": 988282880, "bits_per_second": 7906113185.340386, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.001073, "end": 33.00108, "seconds": 1.0000070333480835, "bytes": 892338176, "bits_per_second": 7138655199.353135, "omitted": false, "sender": false}], "sum": {"start": 32.001073, "end": 33.00108, "seconds": 1.0000070333480835, "bytes": 892338176, "bits_per_second": 7138655199.353135, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.00108, "end": 34.001046, "seconds": 0.999966025352478, "bytes": 972423168, "bits_per_second": 7779649654.854868, "omitted": false, "sender": false}], "sum": {"start": 33.00108, "end": 34.001046, "seconds": 0.999966025352478, "bytes": 972423168, "bits_per_second": 7779649654.854868, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.001046, "end": 35.001038, "seconds": 0.9999920129776, "bytes": 1032454144, "bits_per_second": 8259699122.401907, "omitted": false, "sender": false}], "sum": {"start": 34.001046, "end": 35.001038, "seconds": 0.9999920129776, "bytes": 1032454144, "bits_per_second": 8259699122.401907, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.001038, "end": 36.001049, "seconds": 1.0000109672546387, "bytes": 1042284544, "bits_per_second": 8338184905.002922, "omitted": false, "sender": false}], "sum": {"start": 35.001038, "end": 36.001049, "seconds": 1.0000109672546387, "bytes": 1042284544, "bits_per_second": 8338184905.002922, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.001049, "end": 37.001066, "seconds": 1.0000170469284058, "bytes": 939917312, "bits_per_second": 7519210316.560065, "omitted": false, "sender": false}], "sum": {"start": 36.001049, "end": 37.001066, "seconds": 1.0000170469284058, "bytes": 939917312, "bits_per_second": 7519210316.560065, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.001066, "end": 38.001074, "seconds": 1.0000079870224, "bytes": 871759872, "bits_per_second": 6974023274.31989, "omitted": false, "sender": false}], "sum": {"start": 37.001066, "end": 38.001074, "seconds": 1.0000079870224, "bytes": 871759872, "bits_per_second": 6974023274.31989, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.001074, "end": 39.001063, "seconds": 0.9999889731407166, "bytes": 839254016, "bits_per_second": 6714106163.50388, "omitted": false, "sender": false}], "sum": {"start": 38.001074, "end": 39.001063, "seconds": 0.9999889731407166, "bytes": 839254016, "bits_per_second": 6714106163.50388, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.001063, "end": 40.001056, "seconds": 0.9999930262565613, "bytes": 924319744, "bits_per_second": 7394609520.109623, "omitted": false, "sender": false}], "sum": {"start": 39.001063, "end": 40.001056, "seconds": 0.9999930262565613, "bytes": 924319744, "bits_per_second": 7394609520.109623, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.001056, "end": 41.001065, "seconds": 1.0000089406967163, "bytes": 873857024, "bits_per_second": 6990793689.433817, "omitted": false, "sender": false}], "sum": {"start": 40.001056, "end": 41.001065, "seconds": 1.0000089406967163, "bytes": 873857024, "bits_per_second": 6990793689.433817, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.001065, "end": 42.001067, "seconds": 1.0000020265579224, "bytes": 877264896, "bits_per_second": 7018104945.403823, "omitted": false, "sender": false}], "sum": {"start": 41.001065, "end": 42.001067, "seconds": 1.0000020265579224, "bytes": 877264896, "bits_per_second": 7018104945.403823, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.001067, "end": 43.001071, "seconds": 1.0000040531158447, "bytes": 967180288, "bits_per_second": 7737410943.37711, "omitted": false, "sender": false}], "sum": {"start": 42.001067, "end": 43.001071, "seconds": 1.0000040531158447, "bytes": 967180288, "bits_per_second": 7737410943.37711, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.001071, "end": 44.00106, "seconds": 0.9999889731407166, "bytes": 1038483456, "bits_per_second": 8307959258.697679, "omitted": false, "sender": false}], "sum": {"start": 43.001071, "end": 44.00106, "seconds": 0.9999889731407166, "bytes": 1038483456, "bits_per_second": 8307959258.697679, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.00106, "end": 45.001038, "seconds": 0.999978005886078, "bytes": 1046740992, "bits_per_second": 8374112117.1759, "omitted": false, "sender": false}], "sum": {"start": 44.00106, "end": 45.001038, "seconds": 0.999978005886078, "bytes": 1046740992, "bits_per_second": 8374112117.1759, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.001038, "end": 46.001067, "seconds": 1.0000289678573608, "bytes": 1038876672, "bits_per_second": 8310772630.723875, "omitted": false, "sender": false}], "sum": {"start": 45.001038, "end": 46.001067, "seconds": 1.0000289678573608, "bytes": 1038876672, "bits_per_second": 8310772630.723875, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 46.001067, "end": 47.001055, "seconds": 0.9999880194664, "bytes": 884604928, "bits_per_second": 7076924209.328274, "omitted": false, "sender": false}], "sum": {"start": 46.001067, "end": 47.001055, "seconds": 0.9999880194664, "bytes": 884604928, "bits_per_second": 7076924209.328274, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 47.001055, "end": 48.001062, "seconds": 1.0000070333480835, "bytes": 891289600, "bits_per_second": 7130266650.35272, "omitted": false, "sender": false}], "sum": {"start": 47.001055, "end": 48.001062, "seconds": 1.0000070333480835, "bytes": 891289600, "bits_per_second": 7130266650.35272, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 48.001062, "end": 49.001076, "seconds": 1.0000139474868774, "bytes": 894959616, "bits_per_second": 7159577069.89277, "omitted": false, "sender": false}], "sum": {"start": 48.001062, "end": 49.001076, "seconds": 1.0000139474868774, "bytes": 894959616, "bits_per_second": 7159577069.89277, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 49.001076, "end": 50.001046, "seconds": 0.999970018863678, "bytes": 914096128, "bits_per_second": 7312988275.698415, "omitted": false, "sender": false}], "sum": {"start": 49.001076, "end": 50.001046, "seconds": 0.999970018863678, "bytes": 914096128, "bits_per_second": 7312988275.698415, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 50.001046, "end": 50.017462, "seconds": 0.016416000202298164, "bytes": 11010048, "bits_per_second": 5365520401.71571, "omitted": false, "sender": false}], "sum": {"start": 50.001046, "end": 50.017462, "seconds": 0.016416000202298164, "bytes": 11010048, "bits_per_second": 5365520401.71571, "omitted": false, "sender": false}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 50.017462, "seconds": 50.017462, "bytes": 0, "bits_per_second": 0, "sender": false}, "receiver": {"socket": 5, "start": 0, "end": 50.017462, "seconds": 50.017462, "bytes": 48461250560, "bits_per_second": 7751093097.846508, "sender": false}}], "sum_sent": {"start": 0, "end": 50.017462, "seconds": 50.017462, "bytes": 0, "bits_per_second": 0, "sender": false}, "sum_received": {"start": 0, "end": 50.017462, "seconds": 50.017462, "bytes": 48461250560, "bits_per_second": 7751093097.846508, "sender": false}, "cpu_utilization_percent": {"host_total": 49.89431194642977, "host_user": 1.5262824421838614, "host_system": 48.36802750494482, "remote_total": 0, "remote_user": 0, "remote_system": 0}, "receiver_tcp_congestion": "cubic"}}}} 2026-07-20 20:11:06.64762 2026-07-20 19:08:00.987045 +1094 48 loader /usr/bin/iperf3 --time 50 --port 5201 --client 10.5.0.10 --udp --version4 --json {"tool": "iperf3", "test_type": {"protocol": "UDP"}, "time": {"duration_sec": 50.0}, "metrics": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 32886, "remote_host": "10.5.0.10", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux 24e46e7d361b 6.17.0-40-generic #40~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Jun 23 16:48:12 UTC 2 x86_64", "timestamp": {"time": "Mon, 20 Jul 2026 20:12:02 GMT", "timesecs": 1784578322}, "connecting_to": {"host": "10.5.0.10", "port": 5201}, "cookie": "4ekqf3sniudqdyor56p7el73rbri3eirhnbm", "target_bitrate": 1048576, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 212992, "rcvbuf_actual": 212992, "test_start": {"protocol": "UDP", "num_streams": 1, "blksize": 1448, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 1048576, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001112, "seconds": 1.00111198425293, "bytes": 131768, "bits_per_second": 1052973.1104823851, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.001112, "seconds": 1.00111198425293, "bytes": 131768, "bits_per_second": 1052973.1104823851, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.001112, "end": 2.000841, "seconds": 0.9997289776802063, "bytes": 131768, "bits_per_second": 1054429.77400341, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 1.001112, "end": 2.000841, "seconds": 0.9997289776802063, "bytes": 131768, "bits_per_second": 1054429.77400341, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.000841, "end": 3.001046, "seconds": 1.0002050399780273, "bytes": 130320, "bits_per_second": 1042346.2773421969, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 2.000841, "end": 3.001046, "seconds": 1.0002050399780273, "bytes": 130320, "bits_per_second": 1042346.2773421969, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.001046, "end": 4.001126, "seconds": 1.0000799894332886, "bytes": 131768, "bits_per_second": 1054059.6863630356, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 3.001046, "end": 4.001126, "seconds": 1.0000799894332886, "bytes": 131768, "bits_per_second": 1054059.6863630356, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.001126, "end": 5.001141, "seconds": 1.0000150203704834, "bytes": 130320, "bits_per_second": 1042544.3405977589, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 4.001126, "end": 5.001141, "seconds": 1.0000150203704834, "bytes": 130320, "bits_per_second": 1042544.3405977589, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.001141, "end": 6.000842, "seconds": 0.9997010231018066, "bytes": 131768, "bits_per_second": 1054459.2589585148, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 5.001141, "end": 6.000842, "seconds": 0.9997010231018066, "bytes": 131768, "bits_per_second": 1054459.2589585148, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.000842, "end": 7.001047, "seconds": 1.0002050399780273, "bytes": 130320, "bits_per_second": 1042346.2773421969, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 6.000842, "end": 7.001047, "seconds": 1.0002050399780273, "bytes": 130320, "bits_per_second": 1042346.2773421969, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.001047, "end": 8.00109, "seconds": 1.0000430345535278, "bytes": 131768, "bits_per_second": 1054098.637335768, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 7.001047, "end": 8.00109, "seconds": 1.0000430345535278, "bytes": 131768, "bits_per_second": 1054098.637335768, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.00109, "end": 9.001038, "seconds": 0.999948024749756, "bytes": 130320, "bits_per_second": 1042614.1901334403, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 8.00109, "end": 9.001038, "seconds": 0.999948024749756, "bytes": 130320, "bits_per_second": 1042614.1901334403, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.001038, "end": 10.001039, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 9.001038, "end": 10.001039, "seconds": 1.0000009536743164, "bytes": 131768, "bits_per_second": 1054142.9946909, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.001039, "end": 11.001036, "seconds": 0.9999970197677612, "bytes": 130320, "bits_per_second": 1042563.1070801826, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 10.001039, "end": 11.001036, "seconds": 0.9999970197677612, "bytes": 130320, "bits_per_second": 1042563.1070801826, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.001036, "end": 12.001042, "seconds": 1.0000059604644775, "bytes": 131768, "bits_per_second": 1054137.7168495844, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 11.001036, "end": 12.001042, "seconds": 1.0000059604644775, "bytes": 131768, "bits_per_second": 1054137.7168495844, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.001042, "end": 13.001044, "seconds": 1.0000020265579224, "bytes": 130320, "bits_per_second": 1042557.8871960542, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 12.001042, "end": 13.001044, "seconds": 1.0000020265579224, "bytes": 130320, "bits_per_second": 1042557.8871960542, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.001044, "end": 14.001018, "seconds": 0.999974012374878, "bytes": 131768, "bits_per_second": 1054171.3954110383, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 13.001044, "end": 14.001018, "seconds": 0.999974012374878, "bytes": 131768, "bits_per_second": 1054171.3954110383, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.001018, "end": 15.000822, "seconds": 0.9998040199279785, "bytes": 130320, "bits_per_second": 1042764.361034577, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 14.001018, "end": 15.000822, "seconds": 0.9998040199279785, "bytes": 130320, "bits_per_second": 1042764.361034577, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.000822, "end": 16.001032, "seconds": 1.0002100467681885, "bytes": 131768, "bits_per_second": 1053922.6269582866, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 15.000822, "end": 16.001032, "seconds": 1.0002100467681885, "bytes": 131768, "bits_per_second": 1053922.6269582866, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.001032, "end": 17.00102, "seconds": 0.9999880194664, "bytes": 130320, "bits_per_second": 1042572.4905747536, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 16.001032, "end": 17.00102, "seconds": 0.9999880194664, "bytes": 130320, "bits_per_second": 1042572.4905747536, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.00102, "end": 18.001112, "seconds": 1.0000920295715332, "bytes": 131768, "bits_per_second": 1054046.9965065357, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 17.00102, "end": 18.001112, "seconds": 1.0000920295715332, "bytes": 131768, "bits_per_second": 1054046.9965065357, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.001112, "end": 19.000839, "seconds": 0.9997270107269287, "bytes": 130320, "bits_per_second": 1042844.685412597, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 18.001112, "end": 19.000839, "seconds": 0.9997270107269287, "bytes": 130320, "bits_per_second": 1042844.685412597, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.000839, "end": 20.001043, "seconds": 1.0002039670944214, "bytes": 131768, "bits_per_second": 1053929.0331573805, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 19.000839, "end": 20.001043, "seconds": 1.0002039670944214, "bytes": 131768, "bits_per_second": 1053929.0331573805, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.001043, "end": 21.000825, "seconds": 0.9997820258140564, "bytes": 130320, "bits_per_second": 1042787.3007129852, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 20.001043, "end": 21.000825, "seconds": 0.9997820258140564, "bytes": 130320, "bits_per_second": 1042787.3007129852, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.000825, "end": 22.00105, "seconds": 1.0002249479293823, "bytes": 131768, "bits_per_second": 1053906.9258192752, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 21.000825, "end": 22.00105, "seconds": 1.0002249479293823, "bytes": 131768, "bits_per_second": 1053906.9258192752, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.00105, "end": 23.001059, "seconds": 1.0000089406967163, "bytes": 131768, "bits_per_second": 1054134.575302464, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 22.00105, "end": 23.001059, "seconds": 1.0000089406967163, "bytes": 131768, "bits_per_second": 1054134.575302464, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.001059, "end": 24.000815, "seconds": 0.9997559785842896, "bytes": 130320, "bits_per_second": 1042814.4690630641, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 23.001059, "end": 24.000815, "seconds": 0.9997559785842896, "bytes": 130320, "bits_per_second": 1042814.4690630641, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.000815, "end": 25.001049, "seconds": 1.0002340078353882, "bytes": 131768, "bits_per_second": 1053897.3797554423, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 24.000815, "end": 25.001049, "seconds": 1.0002340078353882, "bytes": 131768, "bits_per_second": 1053897.3797554423, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.001049, "end": 26.001041, "seconds": 0.9999920129776, "bytes": 130320, "bits_per_second": 1042568.3270165813, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 25.001049, "end": 26.001041, "seconds": 0.9999920129776, "bytes": 130320, "bits_per_second": 1042568.3270165813, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.001041, "end": 27.001047, "seconds": 1.0000059604644775, "bytes": 131768, "bits_per_second": 1054137.7168495844, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 26.001041, "end": 27.001047, "seconds": 1.0000059604644775, "bytes": 131768, "bits_per_second": 1054137.7168495844, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.001047, "end": 28.00115, "seconds": 1.0001029968261719, "bytes": 130320, "bits_per_second": 1042452.6306876047, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 27.001047, "end": 28.00115, "seconds": 1.0001029968261719, "bytes": 130320, "bits_per_second": 1042452.6306876047, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.00115, "end": 29.001098, "seconds": 0.999948024749756, "bytes": 131768, "bits_per_second": 1054198.7922460341, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 28.00115, "end": 29.001098, "seconds": 0.999948024749756, "bytes": 131768, "bits_per_second": 1054198.7922460341, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.001098, "end": 30.001017, "seconds": 0.9999189972877502, "bytes": 130320, "bits_per_second": 1042644.4570289315, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 29.001098, "end": 30.001017, "seconds": 0.9999189972877502, "bytes": 130320, "bits_per_second": 1042644.4570289315, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.001017, "end": 31.001045, "seconds": 1.0000280141830444, "bytes": 131768, "bits_per_second": 1054114.469844292, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 30.001017, "end": 31.001045, "seconds": 1.0000280141830444, "bytes": 131768, "bits_per_second": 1054114.469844292, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.001045, "end": 32.001034, "seconds": 0.9999889731407166, "bytes": 130320, "bits_per_second": 1042571.4962891826, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 31.001045, "end": 32.001034, "seconds": 0.9999889731407166, "bytes": 130320, "bits_per_second": 1042571.4962891826, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.001034, "end": 33.001044, "seconds": 1.0000100135803223, "bytes": 131768, "bits_per_second": 1054133.4443500845, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 32.001034, "end": 33.001044, "seconds": 1.0000100135803223, "bytes": 131768, "bits_per_second": 1054133.4443500845, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.001044, "end": 34.001097, "seconds": 1.00005304813385, "bytes": 130320, "bits_per_second": 1042504.6970712905, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 33.001044, "end": 34.001097, "seconds": 1.00005304813385, "bytes": 130320, "bits_per_second": 1042504.6970712905, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.001097, "end": 35.00103, "seconds": 0.9999330043792725, "bytes": 131768, "bits_per_second": 1054214.627763367, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 34.001097, "end": 35.00103, "seconds": 0.9999330043792725, "bytes": 131768, "bits_per_second": 1054214.627763367, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.00103, "end": 36.001031, "seconds": 1.0000009536743164, "bytes": 130320, "bits_per_second": 1042559.0057382529, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 35.00103, "end": 36.001031, "seconds": 1.0000009536743164, "bytes": 130320, "bits_per_second": 1042559.0057382529, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.001031, "end": 37.000823, "seconds": 0.999791979789734, "bytes": 131768, "bits_per_second": 1054363.3288813708, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 36.001031, "end": 37.000823, "seconds": 0.999791979789734, "bytes": 131768, "bits_per_second": 1054363.3288813708, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.000823, "end": 38.001033, "seconds": 1.0002100467681885, "bytes": 130320, "bits_per_second": 1042341.0596290748, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 37.000823, "end": 38.001033, "seconds": 1.0002100467681885, "bytes": 130320, "bits_per_second": 1042341.0596290748, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.001033, "end": 39.001032, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 38.001033, "end": 39.001032, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.001032, "end": 40.000966, "seconds": 0.9999340176582336, "bytes": 130320, "bits_per_second": 1042628.795089493, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 39.001032, "end": 40.000966, "seconds": 0.9999340176582336, "bytes": 130320, "bits_per_second": 1042628.795089493, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.000966, "end": 41.001298, "seconds": 1.000331997871399, "bytes": 131768, "bits_per_second": 1053794.1425877681, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 40.000966, "end": 41.001298, "seconds": 1.000331997871399, "bytes": 131768, "bits_per_second": 1053794.1425877681, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.001298, "end": 42.00105, "seconds": 0.9997519850730896, "bytes": 130320, "bits_per_second": 1042818.634587438, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 41.001298, "end": 42.00105, "seconds": 0.9997519850730896, "bytes": 130320, "bits_per_second": 1042818.634587438, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.00105, "end": 43.001048, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 42.00105, "end": 43.001048, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.001048, "end": 44.001062, "seconds": 1.0000139474868774, "bytes": 130320, "bits_per_second": 1042545.45911089, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 43.001048, "end": 44.001062, "seconds": 1.0000139474868774, "bytes": 130320, "bits_per_second": 1042545.45911089, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.001062, "end": 45.001048, "seconds": 0.9999859929084778, "bytes": 131768, "bits_per_second": 1054158.76569831, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 44.001062, "end": 45.001048, "seconds": 0.9999859929084778, "bytes": 131768, "bits_per_second": 1054158.76569831, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 45.001048, "end": 46.001049, "seconds": 1.0000009536743164, "bytes": 130320, "bits_per_second": 1042559.0057382529, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 45.001048, "end": 46.001049, "seconds": 1.0000009536743164, "bytes": 130320, "bits_per_second": 1042559.0057382529, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 46.001049, "end": 47.001046, "seconds": 0.9999970197677612, "bytes": 131768, "bits_per_second": 1054147.141603296, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 46.001049, "end": 47.001046, "seconds": 0.9999970197677612, "bytes": 131768, "bits_per_second": 1054147.141603296, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 47.001046, "end": 48.001204, "seconds": 1.0001579523086548, "bytes": 131768, "bits_per_second": 1053977.5218171587, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 47.001046, "end": 48.001204, "seconds": 1.0001579523086548, "bytes": 131768, "bits_per_second": 1053977.5218171587, "packets": 91, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 48.001204, "end": 49.001047, "seconds": 0.9998430013656616, "bytes": 130320, "bits_per_second": 1042723.7061978653, "packets": 90, "omitted": false, "sender": true}], "sum": {"start": 48.001204, "end": 49.001047, "seconds": 0.9998430013656616, "bytes": 130320, "bits_per_second": 1042723.7061978653, "packets": 90, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 49.001047, "end": 50.002713, "seconds": 1.0016659498214722, "bytes": 131768, "bits_per_second": 1052390.7697849579, "packets": 91, "omitted": false, "sender": true}], "sum": {"start": 49.001047, "end": 50.002713, "seconds": 1.0016659498214722, "bytes": 131768, "bits_per_second": 1052390.7697849579, "packets": 91, "omitted": false, "sender": true}}], "end": {"streams": [{"udp": {"socket": 5, "start": 0, "end": 50.002713, "seconds": 50.002713, "bytes": 6555096, "bits_per_second": 1048758.454366266, "jitter_ms": 0.06507592532975053, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "out_of_order": 0, "sender": true}}], "sum": {"start": 0, "end": 50.003324, "seconds": 50.003324, "bytes": 6555096, "bits_per_second": 1048758.454366266, "jitter_ms": 0.06507592532975053, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": true}, "sum_sent": {"start": 0, "end": 50.002713, "seconds": 50.002713, "bytes": 6555096, "bits_per_second": 1048758.454366266, "jitter_ms": 0, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": true}, "sum_received": {"start": 0, "end": 50.003324, "seconds": 50.003324, "bytes": 6555096, "bits_per_second": 1048745.6393898933, "jitter_ms": 0.06507592532975053, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "cpu_utilization_percent": {"host_total": 0.4460303800138521, "host_user": 0.04815615424952163, "host_system": 0.3978722259240377, "remote_total": 0.294748075030128, "remote_user": 0.11860798210041, "remote_system": 0.176140092929718}}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 32886}], "version": "iperf 3.18", "system_info": "Linux qemux86-64 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64", "target_bitrate": 1048576, "timestamp": {"time": "Mon, 20 Jul 2026 20:12:02 GMT", "timesecs": 1784578322}, "accepted_connection": {"host": "10.5.0.11", "port": 56840}, "cookie": "4ekqf3sniudqdyor56p7el73rbri3eirhnbm", "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 212992, "rcvbuf_actual": 212992, "test_start": {"protocol": "UDP", "num_streams": 1, "blksize": 1448, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 1048576, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001085, "seconds": 1.0010850429534912, "bytes": 131768, "bits_per_second": 1053001.448198616, "jitter_ms": 0.0521027686868739, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.001085, "seconds": 1.0010850429534912, "bytes": 131768, "bits_per_second": 1053001.448198616, "jitter_ms": 0.0521027686868739, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.001085, "end": 2.001076, "seconds": 0.999990999698639, "bytes": 131768, "bits_per_second": 1054153.48769907, "jitter_ms": 0.05396277830591406, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 1.001085, "end": 2.001076, "seconds": 0.999990999698639, "bytes": 131768, "bits_per_second": 1054153.48769907, "jitter_ms": 0.05396277830591406, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.001076, "end": 3.001053, "seconds": 0.9999769926071167, "bytes": 130320, "bits_per_second": 1042583.9871394059, "jitter_ms": 0.05135818353714615, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 2.001076, "end": 3.001053, "seconds": 0.9999769926071167, "bytes": 130320, "bits_per_second": 1042583.9871394059, "jitter_ms": 0.05135818353714615, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.001053, "end": 4.001096, "seconds": 1.0000430345535278, "bytes": 131768, "bits_per_second": 1054098.637335768, "jitter_ms": 0.03223726786247352, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 3.001053, "end": 4.001096, "seconds": 1.0000430345535278, "bytes": 131768, "bits_per_second": 1054098.637335768, "jitter_ms": 0.03223726786247352, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.001096, "end": 5.001099, "seconds": 1.0000029802322388, "bytes": 130320, "bits_per_second": 1042556.8929383369, "jitter_ms": 0.05997037508305975, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 4.001096, "end": 5.001099, "seconds": 1.0000029802322388, "bytes": 130320, "bits_per_second": 1042556.8929383369, "jitter_ms": 0.05997037508305975, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.001099, "end": 6.00122, "seconds": 1.000120997428894, "bytes": 131768, "bits_per_second": 1054016.4667175151, "jitter_ms": 0.05180878124448751, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 5.001099, "end": 6.00122, "seconds": 1.000120997428894, "bytes": 131768, "bits_per_second": 1054016.4667175151, "jitter_ms": 0.05180878124448751, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.00122, "end": 7.001059, "seconds": 0.9998390078544617, "bytes": 130320, "bits_per_second": 1042727.8709971644, "jitter_ms": 0.03886572123637775, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 6.00122, "end": 7.001059, "seconds": 0.9998390078544617, "bytes": 130320, "bits_per_second": 1042727.8709971644, "jitter_ms": 0.03886572123637775, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.001059, "end": 8.001089, "seconds": 1.0000300407409668, "bytes": 131768, "bits_per_second": 1054112.333684434, "jitter_ms": 0.039094080865208866, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 7.001059, "end": 8.001089, "seconds": 1.0000300407409668, "bytes": 131768, "bits_per_second": 1054112.333684434, "jitter_ms": 0.039094080865208866, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.001089, "end": 9.001089, "seconds": 1, "bytes": 130320, "bits_per_second": 1042560, "jitter_ms": 0.08678791663008967, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 8.001089, "end": 9.001089, "seconds": 1, "bytes": 130320, "bits_per_second": 1042560, "jitter_ms": 0.08678791663008967, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.001089, "end": 10.001086, "seconds": 0.9999970197677612, "bytes": 131768, "bits_per_second": 1054147.141603296, "jitter_ms": 0.0646653339889451, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 9.001089, "end": 10.001086, "seconds": 0.9999970197677612, "bytes": 131768, "bits_per_second": 1054147.141603296, "jitter_ms": 0.0646653339889451, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.001086, "end": 11.001093, "seconds": 1.0000070333480835, "bytes": 130320, "bits_per_second": 1042552.6673641951, "jitter_ms": 0.04533822380503948, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 10.001086, "end": 11.001093, "seconds": 1.0000070333480835, "bytes": 130320, "bits_per_second": 1042552.6673641951, "jitter_ms": 0.04533822380503948, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.001093, "end": 12.001092, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "jitter_ms": 0.03878802665879719, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 11.001093, "end": 12.001092, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "jitter_ms": 0.03878802665879719, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.001092, "end": 13.00109, "seconds": 0.9999979734420776, "bytes": 130320, "bits_per_second": 1042562.1128125093, "jitter_ms": 0.05658365235841434, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 12.001092, "end": 13.00109, "seconds": 0.9999979734420776, "bytes": 130320, "bits_per_second": 1042562.1128125093, "jitter_ms": 0.05658365235841434, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.00109, "end": 14.001086, "seconds": 0.9999960064888, "bytes": 131768, "bits_per_second": 1054148.2097526821, "jitter_ms": 0.03140609709382764, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 13.00109, "end": 14.001086, "seconds": 0.9999960064888, "bytes": 131768, "bits_per_second": 1054148.2097526821, "jitter_ms": 0.03140609709382764, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.001086, "end": 15.001329, "seconds": 1.0002429485321045, "bytes": 130320, "bits_per_second": 1042306.7730994729, "jitter_ms": 0.06010779905062474, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 14.001086, "end": 15.001329, "seconds": 1.0002429485321045, "bytes": 130320, "bits_per_second": 1042306.7730994729, "jitter_ms": 0.06010779905062474, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.001329, "end": 16.001091, "seconds": 0.999761998653412, "bytes": 131768, "bits_per_second": 1054394.9474173211, "jitter_ms": 0.04221339325059307, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 15.001329, "end": 16.001091, "seconds": 0.999761998653412, "bytes": 131768, "bits_per_second": 1054394.9474173211, "jitter_ms": 0.04221339325059307, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.001091, "end": 17.001332, "seconds": 1.0002410411834717, "bytes": 130320, "bits_per_second": 1042308.7606627869, "jitter_ms": 0.07098371593556893, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 16.001091, "end": 17.001332, "seconds": 1.0002410411834717, "bytes": 130320, "bits_per_second": 1042308.7606627869, "jitter_ms": 0.07098371593556893, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.001332, "end": 18.001063, "seconds": 0.9997310042381287, "bytes": 131768, "bits_per_second": 1054427.6365654361, "jitter_ms": 0.019317509933438115, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 17.001332, "end": 18.001063, "seconds": 0.9997310042381287, "bytes": 131768, "bits_per_second": 1054427.6365654361, "jitter_ms": 0.019317509933438115, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.001063, "end": 19.001073, "seconds": 1.0000100135803223, "bytes": 130320, "bits_per_second": 1042549.5603462375, "jitter_ms": 0.07239609419611308, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 18.001063, "end": 19.001073, "seconds": 1.0000100135803223, "bytes": 130320, "bits_per_second": 1042549.5603462375, "jitter_ms": 0.07239609419611308, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.001073, "end": 20.001101, "seconds": 1.0000280141830444, "bytes": 131768, "bits_per_second": 1054114.469844292, "jitter_ms": 0.03580779877839355, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 19.001073, "end": 20.001101, "seconds": 1.0000280141830444, "bytes": 131768, "bits_per_second": 1054114.469844292, "jitter_ms": 0.03580779877839355, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.001101, "end": 21.001099, "seconds": 0.9999979734420776, "bytes": 130320, "bits_per_second": 1042562.1128125093, "jitter_ms": 0.0531226522512867, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 20.001101, "end": 21.001099, "seconds": 0.9999979734420776, "bytes": 130320, "bits_per_second": 1042562.1128125093, "jitter_ms": 0.0531226522512867, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.001099, "end": 22.001107, "seconds": 1.0000079870224, "bytes": 131768, "bits_per_second": 1054135.5805955052, "jitter_ms": 0.04411019296335582, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 21.001099, "end": 22.001107, "seconds": 1.0000079870224, "bytes": 131768, "bits_per_second": 1054135.5805955052, "jitter_ms": 0.04411019296335582, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.001107, "end": 23.00118, "seconds": 1.000072956085205, "bytes": 130320, "bits_per_second": 1042483.9444525236, "jitter_ms": 0.0507684660274998, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 22.001107, "end": 23.00118, "seconds": 1.000072956085205, "bytes": 130320, "bits_per_second": 1042483.9444525236, "jitter_ms": 0.0507684660274998, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.00118, "end": 24.001059, "seconds": 0.999879002571106, "bytes": 131768, "bits_per_second": 1054271.5641486181, "jitter_ms": 0.05326493902179506, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 23.00118, "end": 24.001059, "seconds": 0.999879002571106, "bytes": 131768, "bits_per_second": 1054271.5641486181, "jitter_ms": 0.05326493902179506, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.001059, "end": 25.0011, "seconds": 1.0000410079956055, "bytes": 131768, "bits_per_second": 1054100.7734401152, "jitter_ms": 0.03711845921618827, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 24.001059, "end": 25.0011, "seconds": 1.0000410079956055, "bytes": 131768, "bits_per_second": 1054100.7734401152, "jitter_ms": 0.03711845921618827, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.0011, "end": 26.001106, "seconds": 1.0000059604644775, "bytes": 130320, "bits_per_second": 1042553.7858951932, "jitter_ms": 0.045001247710340656, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 25.0011, "end": 26.001106, "seconds": 1.0000059604644775, "bytes": 130320, "bits_per_second": 1042553.7858951932, "jitter_ms": 0.045001247710340656, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.001106, "end": 27.001105, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "jitter_ms": 0.060352462777897666, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 26.001106, "end": 27.001105, "seconds": 0.9999989867210388, "bytes": 131768, "bits_per_second": 1054145.06814302, "jitter_ms": 0.060352462777897666, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.001105, "end": 28.001107, "seconds": 1.0000020265579224, "bytes": 130320, "bits_per_second": 1042557.8871960542, "jitter_ms": 0.0351092781708212, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 27.001105, "end": 28.001107, "seconds": 1.0000020265579224, "bytes": 130320, "bits_per_second": 1042557.8871960542, "jitter_ms": 0.0351092781708212, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.001107, "end": 29.00106, "seconds": 0.9999529719352722, "bytes": 131768, "bits_per_second": 1054193.57668376, "jitter_ms": 0.01294011152800015, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 28.001107, "end": 29.00106, "seconds": 0.9999529719352722, "bytes": 131768, "bits_per_second": 1054193.57668376, "jitter_ms": 0.01294011152800015, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.00106, "end": 30.001093, "seconds": 1.0000330209732056, "bytes": 130320, "bits_per_second": 1042525.5747909287, "jitter_ms": 0.025470921546145817, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 29.00106, "end": 30.001093, "seconds": 1.0000330209732056, "bytes": 130320, "bits_per_second": 1042525.5747909287, "jitter_ms": 0.025470921546145817, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.001093, "end": 31.001088, "seconds": 0.999994993209839, "bytes": 131768, "bits_per_second": 1054149.277904233, "jitter_ms": 0.04821409290936986, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 30.001093, "end": 31.001088, "seconds": 0.999994993209839, "bytes": 131768, "bits_per_second": 1054149.277904233, "jitter_ms": 0.04821409290936986, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.001088, "end": 32.001091, "seconds": 1.0000029802322388, "bytes": 130320, "bits_per_second": 1042556.8929383369, "jitter_ms": 0.04595434166665485, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 31.001088, "end": 32.001091, "seconds": 1.0000029802322388, "bytes": 130320, "bits_per_second": 1042556.8929383369, "jitter_ms": 0.04595434166665485, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.001091, "end": 33.001089, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "jitter_ms": 0.03381032494524056, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 32.001091, "end": 33.001089, "seconds": 0.9999979734420776, "bytes": 131768, "bits_per_second": 1054146.1362882038, "jitter_ms": 0.03381032494524056, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.001089, "end": 34.001089, "seconds": 1, "bytes": 130320, "bits_per_second": 1042560, "jitter_ms": 0.02194541178805657, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 33.001089, "end": 34.001089, "seconds": 1, "bytes": 130320, "bits_per_second": 1042560, "jitter_ms": 0.02194541178805657, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.001089, "end": 35.001054, "seconds": 0.999965012073517, "bytes": 131768, "bits_per_second": 1054180.8836032555, "jitter_ms": 0.05387671059198675, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 34.001089, "end": 35.001054, "seconds": 0.999965012073517, "bytes": 131768, "bits_per_second": 1054180.8836032555, "jitter_ms": 0.05387671059198675, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.001054, "end": 36.001087, "seconds": 1.0000330209732056, "bytes": 130320, "bits_per_second": 1042525.5747909287, "jitter_ms": 0.04749834089184203, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 35.001054, "end": 36.001087, "seconds": 1.0000330209732056, "bytes": 130320, "bits_per_second": 1042525.5747909287, "jitter_ms": 0.04749834089184203, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.001087, "end": 37.001064, "seconds": 0.9999769926071167, "bytes": 131768, "bits_per_second": 1054168.2536631771, "jitter_ms": 0.0496509117598048, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 36.001087, "end": 37.001064, "seconds": 0.9999769926071167, "bytes": 131768, "bits_per_second": 1054168.2536631771, "jitter_ms": 0.0496509117598048, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.001064, "end": 38.001089, "seconds": 1.0000250339508057, "bytes": 130320, "bits_per_second": 1042533.9012576027, "jitter_ms": 0.06316953871791836, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 37.001064, "end": 38.001089, "seconds": 1.0000250339508057, "bytes": 130320, "bits_per_second": 1042533.9012576027, "jitter_ms": 0.06316953871791836, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.001089, "end": 39.001092, "seconds": 1.0000029802322388, "bytes": 131768, "bits_per_second": 1054140.8584154295, "jitter_ms": 0.0525703140725795, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 38.001089, "end": 39.001092, "seconds": 1.0000029802322388, "bytes": 131768, "bits_per_second": 1054140.8584154295, "jitter_ms": 0.0525703140725795, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.001092, "end": 40.001096, "seconds": 1.0000040531158447, "bytes": 130320, "bits_per_second": 1042555.7744006717, "jitter_ms": 0.07652968308434016, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 39.001092, "end": 40.001096, "seconds": 1.0000040531158447, "bytes": 130320, "bits_per_second": 1042555.7744006717, "jitter_ms": 0.07652968308434016, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.001096, "end": 41.001092, "seconds": 0.9999960064888, "bytes": 131768, "bits_per_second": 1054148.2097526821, "jitter_ms": 0.11389701656045954, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 40.001096, "end": 41.001092, "seconds": 0.9999960064888, "bytes": 131768, "bits_per_second": 1054148.2097526821, "jitter_ms": 0.11389701656045954, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.001092, "end": 42.001159, "seconds": 1.0000669956207275, "bytes": 130320, "bits_per_second": 1042490.1577247808, "jitter_ms": 0.054964051593923126, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 41.001092, "end": 42.001159, "seconds": 1.0000669956207275, "bytes": 130320, "bits_per_second": 1042490.1577247808, "jitter_ms": 0.054964051593923126, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.001159, "end": 43.001087, "seconds": 0.9999279975891113, "bytes": 131768, "bits_per_second": 1054219.906374866, "jitter_ms": 0.053689595520307755, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 42.001159, "end": 43.001087, "seconds": 0.9999279975891113, "bytes": 131768, "bits_per_second": 1054219.906374866, "jitter_ms": 0.053689595520307755, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.001087, "end": 44.00115, "seconds": 1.0000629425048828, "bytes": 130320, "bits_per_second": 1042494.3827922208, "jitter_ms": 0.037785418118928875, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 43.001087, "end": 44.00115, "seconds": 1.0000629425048828, "bytes": 130320, "bits_per_second": 1042494.3827922208, "jitter_ms": 0.037785418118928875, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.00115, "end": 45.001094, "seconds": 0.999943971633911, "bytes": 131768, "bits_per_second": 1054203.0652752733, "jitter_ms": 0.025664504631237022, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 44.00115, "end": 45.001094, "seconds": 0.999943971633911, "bytes": 131768, "bits_per_second": 1054203.0652752733, "jitter_ms": 0.025664504631237022, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.001094, "end": 46.001042, "seconds": 0.999948024749756, "bytes": 130320, "bits_per_second": 1042614.1901334403, "jitter_ms": 0.026764584943198326, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 45.001094, "end": 46.001042, "seconds": 0.999948024749756, "bytes": 130320, "bits_per_second": 1042614.1901334403, "jitter_ms": 0.026764584943198326, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 46.001042, "end": 47.001088, "seconds": 1.0000460147857666, "bytes": 131768, "bits_per_second": 1054095.496021573, "jitter_ms": 0.047519140563528815, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 46.001042, "end": 47.001088, "seconds": 1.0000460147857666, "bytes": 131768, "bits_per_second": 1054095.496021573, "jitter_ms": 0.047519140563528815, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 47.001088, "end": 48.001087, "seconds": 0.9999989867210388, "bytes": 130320, "bits_per_second": 1042561.0564051842, "jitter_ms": 0.03968943749128837, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 47.001088, "end": 48.001087, "seconds": 0.9999989867210388, "bytes": 130320, "bits_per_second": 1042561.0564051842, "jitter_ms": 0.03968943749128837, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 48.001087, "end": 49.001092, "seconds": 1.0000050067901611, "bytes": 131768, "bits_per_second": 1054138.7221486175, "jitter_ms": 0.04514690771026816, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 48.001087, "end": 49.001092, "seconds": 1.0000050067901611, "bytes": 131768, "bits_per_second": 1054138.7221486175, "jitter_ms": 0.04514690771026816, "lost_packets": 0, "packets": 91, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 49.001092, "end": 50.001053, "seconds": 0.999961018562317, "bytes": 130320, "bits_per_second": 1042600.6420719574, "jitter_ms": 0.05074765373219603, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 49.001092, "end": 50.001053, "seconds": 0.999961018562317, "bytes": 130320, "bits_per_second": 1042600.6420719574, "jitter_ms": 0.05074765373219603, "lost_packets": 0, "packets": 90, "lost_percent": 0, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 50.001053, "end": 50.003324, "seconds": 0.002271000063046813, "bytes": 1448, "bits_per_second": 5100836.494235366, "jitter_ms": 0.06507592532975053, "lost_packets": 0, "packets": 1, "lost_percent": 0, "omitted": false, "sender": false}], "sum": {"start": 50.001053, "end": 50.003324, "seconds": 0.002271000063046813, "bytes": 1448, "bits_per_second": 5100836.494235366, "jitter_ms": 0.06507592532975053, "lost_packets": 0, "packets": 1, "lost_percent": 0, "omitted": false, "sender": false}}], "end": {"streams": [{"udp": {"socket": 5, "start": 0, "end": 50.003324, "seconds": 50.003324, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0.06507592532975053, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "out_of_order": 0, "sender": false}}], "sum": {"start": 0, "end": 50.003324, "seconds": 50.003324, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0.06507592532975053, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "sum_sent": {"start": 0, "end": 50.003324, "seconds": 50.003324, "bytes": 0, "bits_per_second": 0, "jitter_ms": 0, "lost_packets": 0, "packets": 0, "lost_percent": 0, "sender": true}, "sum_received": {"start": 0, "end": 50.003324, "seconds": 50.003324, "bytes": 6555096, "bits_per_second": 1048745.6393898933, "jitter_ms": 0.06507592532975053, "lost_packets": 0, "packets": 4527, "lost_percent": 0, "sender": false}, "cpu_utilization_percent": {"host_total": 0.294748075030128, "host_user": 0.11860798210041, "host_system": 0.176140092929718, "remote_total": 0, "remote_user": 0, "remote_system": 0}}}}} 2026-07-20 20:11:59.808242 2026-07-20 19:08:00.987045 +1095 48 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:12:53.180611 2026-07-20 20:12:53.180615 +1096 48 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:11:06' --until '2026-07-20 20:12:52' 1 OOM records 2026-07-20 20:11:06.472139 2026-07-20 20:12:52.875255 +1097 48 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:11:06' --until '2026-07-20 20:12:52' 0 systemd errors records 2026-07-20 20:11:06.472139 2026-07-20 20:12:52.875255 +1098 48 loader {"profiles_count": 12, "required_timeout_sec": 60, "provided_timeout_sec": 50} 2026-07-20 19:08:00.987038 2026-07-20 19:08:00.987045 +1099 48 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:12:54.384961 2026-07-20 20:12:54.384965 +1100 48 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:12:54' --until '2026-07-20 20:12:54' 0 OOM records 2026-07-20 20:12:54.071001 2026-07-20 20:12:54.075546 +1101 48 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:12:54' --until '2026-07-20 20:12:54' 0 systemd errors records 2026-07-20 20:12:54.071001 2026-07-20 20:12:54.075546 +1102 48 loader /usr/bin/stress-ng --timeout 45 --cpu-method all --vm-method all --sock 0 --netdev 0 --udp-flood 0 --syscall-method all --verify --metrics --maximize --seed 1592594996 & /usr/bin/iperf3 --time 45 --port 5201 --client 10.5.0.10 --interval 1 --version4 --json {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 303.77}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 138725, "real_time_secs": 45.0, "usr_time_secs": 4.56, "sys_time_secs": 66.45, "bogo_ops_s_real_time": 3082.66, "bogo_ops_s_usr_sys_time": 1953.78, "cpu_used_per_instance": 39.44, "rss_max_kb": 2264, "top10_slowest": null}, "1": {"stressor": "netdev", "bogo_ops": 7123943, "real_time_secs": 45.0, "usr_time_secs": 6.18, "sys_time_secs": 38.06, "bogo_ops_s_real_time": 158308.57, "bogo_ops_s_usr_sys_time": 161016.35, "cpu_used_per_instance": 24.58, "rss_max_kb": 1932, "top10_slowest": null}, "2": {"stressor": "udp-flood", "bogo_ops": 11163359, "real_time_secs": 45.0, "usr_time_secs": 2.38, "sys_time_secs": 51.14, "bogo_ops_s_real_time": 248073.62, "bogo_ops_s_usr_sys_time": 208589.85, "cpu_used_per_instance": 29.73, "rss_max_kb": 2076, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 12, "failed": -1, "metrics_untrustworthy": -1}}, "iperf3": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 49692, "remote_host": "10.5.0.10", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux 24e46e7d361b 6.17.0-40-generic #40~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Jun 23 16:48:12 UTC 2 x86_64", "timestamp": {"time": "Mon, 20 Jul 2026 20:12:58 GMT", "timesecs": 1784578378}, "connecting_to": {"host": "10.5.0.10", "port": 5201}, "cookie": "ycc5rddrrpfyj3pqlnlorpzujr5tn5pecxdb", "tcp_mss_default": 1448, "target_bitrate": 0, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 45, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001028, "seconds": 1.0010279417037964, "bytes": 519176192, "bits_per_second": 4149144457.3771863, "retransmits": 18, "snd_cwnd": 412680, "snd_wnd": 0, "rtt": 118, "rttvar": 52, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.001028, "seconds": 1.0010279417037964, "bytes": 519176192, "bits_per_second": 4149144457.3771863, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.001028, "end": 2.000486, "seconds": 0.9994580149650574, "bytes": 303300608, "bits_per_second": 2427720652.2625475, "retransmits": 26, "snd_cwnd": 412680, "snd_wnd": 67584, "rtt": 90, "rttvar": 42, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 1.001028, "end": 2.000486, "seconds": 0.9994580149650574, "bytes": 303300608, "bits_per_second": 2427720652.2625475, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.000486, "end": 3.001037, "seconds": 1.0005509853363037, "bytes": 300810240, "bits_per_second": 2405156713.919118, "retransmits": 20, "snd_cwnd": 412680, "snd_wnd": 66560, "rtt": 263, "rttvar": 409, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 2.000486, "end": 3.001037, "seconds": 1.0005509853363037, "bytes": 300810240, "bits_per_second": 2405156713.919118, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.001037, "end": 4.00104, "seconds": 1.0000029802322388, "bytes": 310378496, "bits_per_second": 2483020568.0220537, "retransmits": 14, "snd_cwnd": 412680, "snd_wnd": 0, "rtt": 97, "rttvar": 46, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 3.001037, "end": 4.00104, "seconds": 1.0000029802322388, "bytes": 310378496, "bits_per_second": 2483020568.0220537, "retransmits": 14, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.00104, "end": 5.001031, "seconds": 0.999990999698639, "bytes": 317980672, "bits_per_second": 2543868271.581067, "retransmits": 12, "snd_cwnd": 412680, "snd_wnd": 74752, "rtt": 191, "rttvar": 238, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 4.00104, "end": 5.001031, "seconds": 0.999990999698639, "bytes": 317980672, "bits_per_second": 2543868271.581067, "retransmits": 12, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.001031, "end": 6.001033, "seconds": 1.0000020265579224, "bytes": 313393152, "bits_per_second": 2507140135.135297, "retransmits": 15, "snd_cwnd": 412680, "snd_wnd": 89088, "rtt": 829, "rttvar": 1173, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 5.001031, "end": 6.001033, "seconds": 1.0000020265579224, "bytes": 313393152, "bits_per_second": 2507140135.135297, "retransmits": 15, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.001033, "end": 7.001032, "seconds": 0.9999989867210388, "bytes": 308281344, "bits_per_second": 2466253251.002532, "retransmits": 23, "snd_cwnd": 412680, "snd_wnd": 89088, "rtt": 442, "rttvar": 778, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 6.001033, "end": 7.001032, "seconds": 0.9999989867210388, "bytes": 308281344, "bits_per_second": 2466253251.002532, "retransmits": 23, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.001032, "end": 8.001033, "seconds": 1.0000009536743164, "bytes": 340787200, "bits_per_second": 2726295000.00248, "retransmits": 22, "snd_cwnd": 288152, "snd_wnd": 0, "rtt": 119, "rttvar": 43, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 7.001032, "end": 8.001033, "seconds": 1.0000009536743164, "bytes": 340787200, "bits_per_second": 2726295000.00248, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.001033, "end": 9.001029, "seconds": 0.9999960064888, "bytes": 249692160, "bits_per_second": 1997545257.219357, "retransmits": 22, "snd_cwnd": 280912, "snd_wnd": 0, "rtt": 117, "rttvar": 92, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 8.001033, "end": 9.001029, "seconds": 0.9999960064888, "bytes": 249692160, "bits_per_second": 1997545257.219357, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.001029, "end": 10.000499, "seconds": 0.9994699954986572, "bytes": 253493248, "bits_per_second": 2029021374.4617856, "retransmits": 26, "snd_cwnd": 280912, "snd_wnd": 273408, "rtt": 291, "rttvar": 210, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 9.001029, "end": 10.000499, "seconds": 0.9994699954986572, "bytes": 253493248, "bits_per_second": 2029021374.4617856, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.000499, "end": 11.001049, "seconds": 1.0005500316619873, "bytes": 274333696, "bits_per_second": 2193463093.8489823, "retransmits": 18, "snd_cwnd": 282360, "snd_wnd": 2048, "rtt": 138, "rttvar": 145, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 10.000499, "end": 11.001049, "seconds": 1.0005500316619873, "bytes": 274333696, "bits_per_second": 2193463093.8489823, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.001049, "end": 12.001045, "seconds": 0.9999960064888, "bytes": 277610496, "bits_per_second": 2220892837.160419, "retransmits": 17, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 276, "rttvar": 382, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 11.001049, "end": 12.001045, "seconds": 0.9999960064888, "bytes": 277610496, "bits_per_second": 2220892837.160419, "retransmits": 17, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.001045, "end": 13.000498, "seconds": 0.9994530081748962, "bytes": 282591232, "bits_per_second": 2261967133.5306945, "retransmits": 15, "snd_cwnd": 282360, "snd_wnd": 68608, "rtt": 86, "rttvar": 65, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 12.001045, "end": 13.000498, "seconds": 0.9994530081748962, "bytes": 282591232, "bits_per_second": 2261967133.5306945, "retransmits": 15, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.000498, "end": 14.000505, "seconds": 1.0000070333480835, "bytes": 258080768, "bits_per_second": 2064631622.7271333, "retransmits": 27, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 848, "rttvar": 1521, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 13.000498, "end": 14.000505, "seconds": 1.0000070333480835, "bytes": 258080768, "bits_per_second": 2064631622.7271333, "retransmits": 27, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.000505, "end": 15.001046, "seconds": 1.0005409717559814, "bytes": 284950528, "bits_per_second": 2278371689.266479, "retransmits": 26, "snd_cwnd": 282360, "snd_wnd": 61440, "rtt": 141, "rttvar": 86, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 14.000505, "end": 15.001046, "seconds": 1.0005409717559814, "bytes": 284950528, "bits_per_second": 2278371689.266479, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.001046, "end": 16.001051, "seconds": 1.0000050067901611, "bytes": 306315264, "bits_per_second": 2450509842.811429, "retransmits": 18, "snd_cwnd": 282360, "snd_wnd": 140288, "rtt": 331, "rttvar": 480, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 15.001046, "end": 16.001051, "seconds": 1.0000050067901611, "bytes": 306315264, "bits_per_second": 2450509842.811429, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.001051, "end": 17.001042, "seconds": 0.999990999698639, "bytes": 295829504, "bits_per_second": 2366657332.629212, "retransmits": 15, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 668, "rttvar": 1250, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 16.001051, "end": 17.001042, "seconds": 0.999990999698639, "bytes": 295829504, "bits_per_second": 2366657332.629212, "retransmits": 15, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.001042, "end": 18.001035, "seconds": 0.9999930262565613, "bytes": 298975232, "bits_per_second": 2391818535.9288216, "retransmits": 20, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 99, "rttvar": 64, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 17.001042, "end": 18.001035, "seconds": 0.9999930262565613, "bytes": 298975232, "bits_per_second": 2391818535.9288216, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.001035, "end": 19.001045, "seconds": 1.0000100135803223, "bytes": 261226496, "bits_per_second": 2089791041.709547, "retransmits": 19, "snd_cwnd": 282360, "snd_wnd": 276480, "rtt": 123, "rttvar": 73, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 18.001035, "end": 19.001045, "seconds": 1.0000100135803223, "bytes": 261226496, "bits_per_second": 2089791041.709547, "retransmits": 19, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.001045, "end": 20.000476, "seconds": 0.999431014060974, "bytes": 281411584, "bits_per_second": 2252574355.1346817, "retransmits": 16, "snd_cwnd": 282360, "snd_wnd": 66560, "rtt": 228, "rttvar": 317, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 19.001045, "end": 20.000476, "seconds": 0.999431014060974, "bytes": 281411584, "bits_per_second": 2252574355.1346817, "retransmits": 16, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.000476, "end": 21.001045, "seconds": 1.0005689859390259, "bytes": 299892736, "bits_per_second": 2397777586.2685018, "retransmits": 29, "snd_cwnd": 282360, "snd_wnd": 67584, "rtt": 109, "rttvar": 81, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 20.000476, "end": 21.001045, "seconds": 1.0005689859390259, "bytes": 299892736, "bits_per_second": 2397777586.2685018, "retransmits": 29, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.001045, "end": 22.000514, "seconds": 0.999468982219696, "bytes": 295829504, "bits_per_second": 2367893425.510811, "retransmits": 36, "snd_cwnd": 282360, "snd_wnd": 87040, "rtt": 136, "rttvar": 83, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 21.001045, "end": 22.000514, "seconds": 0.999468982219696, "bytes": 295829504, "bits_per_second": 2367893425.510811, "retransmits": 36, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.000514, "end": 23.001057, "seconds": 1.0005429983139038, "bytes": 297926656, "bits_per_second": 2382119760.9862676, "retransmits": 25, "snd_cwnd": 282360, "snd_wnd": 74752, "rtt": 80, "rttvar": 47, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 22.000514, "end": 23.001057, "seconds": 1.0005429983139038, "bytes": 297926656, "bits_per_second": 2382119760.9862676, "retransmits": 25, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.001057, "end": 24.00048, "seconds": 0.9994230270385742, "bytes": 311296000, "bits_per_second": 2491805704.5166326, "retransmits": 25, "snd_cwnd": 282360, "snd_wnd": 276480, "rtt": 134, "rttvar": 60, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 23.001057, "end": 24.00048, "seconds": 0.9994230270385742, "bytes": 311296000, "bits_per_second": 2491805704.5166326, "retransmits": 25, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.00048, "end": 25.000493, "seconds": 1.000012993812561, "bytes": 314703872, "bits_per_second": 2517598262.80007, "retransmits": 20, "snd_cwnd": 282360, "snd_wnd": 276480, "rtt": 90, "rttvar": 46, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 24.00048, "end": 25.000493, "seconds": 1.000012993812561, "bytes": 314703872, "bits_per_second": 2517598262.80007, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.000493, "end": 26.001043, "seconds": 1.0005500316619873, "bytes": 347734016, "bits_per_second": 2780342851.40055, "retransmits": 14, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 102, "rttvar": 52, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 25.000493, "end": 26.001043, "seconds": 1.0005500316619873, "bytes": 347734016, "bits_per_second": 2780342851.40055, "retransmits": 14, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.001043, "end": 27.001037, "seconds": 0.9999939799308777, "bytes": 322174976, "bits_per_second": 2577415324.2184086, "retransmits": 6, "snd_cwnd": 282360, "snd_wnd": 276480, "rtt": 224, "rttvar": 224, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 26.001043, "end": 27.001037, "seconds": 0.9999939799308777, "bytes": 322174976, "bits_per_second": 2577415324.2184086, "retransmits": 6, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.001037, "end": 28.001037, "seconds": 1, "bytes": 346947584, "bits_per_second": 2775580672, "retransmits": 16, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 138, "rttvar": 103, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 27.001037, "end": 28.001037, "seconds": 1, "bytes": 346947584, "bits_per_second": 2775580672, "retransmits": 16, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.001037, "end": 29.001035, "seconds": 0.9999979734420776, "bytes": 308019200, "bits_per_second": 2464158593.76012, "retransmits": 9, "snd_cwnd": 282360, "snd_wnd": 68608, "rtt": 67, "rttvar": 61, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 28.001037, "end": 29.001035, "seconds": 0.9999979734420776, "bytes": 308019200, "bits_per_second": 2464158593.76012, "retransmits": 9, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.001035, "end": 30.001034, "seconds": 0.9999989867210388, "bytes": 351141888, "bits_per_second": 2809137950.4403844, "retransmits": 10, "snd_cwnd": 282360, "snd_wnd": 64512, "rtt": 182, "rttvar": 201, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 29.001035, "end": 30.001034, "seconds": 0.9999989867210388, "bytes": 351141888, "bits_per_second": 2809137950.4403844, "retransmits": 10, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.001034, "end": 31.001033, "seconds": 0.9999989867210388, "bytes": 342622208, "bits_per_second": 2740980441.3778143, "retransmits": 12, "snd_cwnd": 282360, "snd_wnd": 64512, "rtt": 215, "rttvar": 200, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 30.001034, "end": 31.001033, "seconds": 0.9999989867210388, "bytes": 342622208, "bits_per_second": 2740980441.3778143, "retransmits": 12, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.001033, "end": 32.001043, "seconds": 1.0000100135803223, "bytes": 356777984, "bits_per_second": 2854195291.2861953, "retransmits": 13, "snd_cwnd": 282360, "snd_wnd": 31744, "rtt": 90, "rttvar": 58, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 31.001033, "end": 32.001043, "seconds": 1.0000100135803223, "bytes": 356777984, "bits_per_second": 2854195291.2861953, "retransmits": 13, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.001043, "end": 33.00105, "seconds": 1.0000070333480835, "bytes": 351797248, "bits_per_second": 2814358189.63922, "retransmits": 8, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 191, "rttvar": 196, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 32.001043, "end": 33.00105, "seconds": 1.0000070333480835, "bytes": 351797248, "bits_per_second": 2814358189.63922, "retransmits": 8, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.00105, "end": 34.001034, "seconds": 0.9999840259552002, "bytes": 339214336, "bits_per_second": 2713758037.69247, "retransmits": 15, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 120, "rttvar": 67, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 33.00105, "end": 34.001034, "seconds": 0.9999840259552002, "bytes": 339214336, "bits_per_second": 2713758037.69247, "retransmits": 15, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.001034, "end": 35.001036, "seconds": 1.0000020265579224, "bytes": 356122624, "bits_per_second": 2848975218.3867, "retransmits": 8, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 440, "rttvar": 681, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 34.001034, "end": 35.001036, "seconds": 1.0000020265579224, "bytes": 356122624, "bits_per_second": 2848975218.3867, "retransmits": 8, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.001036, "end": 36.001041, "seconds": 1.0000050067901611, "bytes": 363724800, "bits_per_second": 2909783831.3229423, "retransmits": 7, "snd_cwnd": 282360, "snd_wnd": 1024, "rtt": 87, "rttvar": 58, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 35.001036, "end": 36.001041, "seconds": 1.0000050067901611, "bytes": 363724800, "bits_per_second": 2909783831.3229423, "retransmits": 7, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.001041, "end": 37.001033, "seconds": 0.9999920129776, "bytes": 347078656, "bits_per_second": 2776651425.17713, "retransmits": 6, "snd_cwnd": 282360, "snd_wnd": 68608, "rtt": 179, "rttvar": 210, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 36.001041, "end": 37.001033, "seconds": 0.9999920129776, "bytes": 347078656, "bits_per_second": 2776651425.17713, "retransmits": 6, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.001033, "end": 38.001036, "seconds": 1.0000029802322388, "bytes": 321912832, "bits_per_second": 2575294981.0228734, "retransmits": 19, "snd_cwnd": 282360, "snd_wnd": 30720, "rtt": 120, "rttvar": 120, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 37.001033, "end": 38.001036, "seconds": 1.0000029802322388, "bytes": 321912832, "bits_per_second": 2575294981.0228734, "retransmits": 19, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.001036, "end": 39.000517, "seconds": 0.9994810223579407, "bytes": 307625984, "bits_per_second": 2462285743.249108, "retransmits": 21, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 253, "rttvar": 305, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 38.001036, "end": 39.000517, "seconds": 0.9994810223579407, "bytes": 307625984, "bits_per_second": 2462285743.249108, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.000517, "end": 40.001055, "seconds": 1.0005379915237427, "bytes": 292159488, "bits_per_second": 2336019145.50042, "retransmits": 33, "snd_cwnd": 282360, "snd_wnd": 123904, "rtt": 711, "rttvar": 1076, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 39.000517, "end": 40.001055, "seconds": 1.0005379915237427, "bytes": 292159488, "bits_per_second": 2336019145.50042, "retransmits": 33, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.001055, "end": 41.000498, "seconds": 0.999442994594574, "bytes": 316014592, "bits_per_second": 2529525695.48555, "retransmits": 25, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 87, "rttvar": 50, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 40.001055, "end": 41.000498, "seconds": 0.999442994594574, "bytes": 316014592, "bits_per_second": 2529525695.48555, "retransmits": 25, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.000498, "end": 42.001066, "seconds": 1.0005680322647095, "bytes": 316014592, "bits_per_second": 2526681499.3857045, "retransmits": 16, "snd_cwnd": 282360, "snd_wnd": 0, "rtt": 209, "rttvar": 188, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 41.000498, "end": 42.001066, "seconds": 1.0005680322647095, "bytes": 316014592, "bits_per_second": 2526681499.3857045, "retransmits": 16, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.001066, "end": 43.001039, "seconds": 0.9999729990959167, "bytes": 331743232, "bits_per_second": 2654017516.8724084, "retransmits": 9, "snd_cwnd": 282360, "snd_wnd": 1024, "rtt": 161, "rttvar": 129, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 42.001066, "end": 43.001039, "seconds": 0.9999729990959167, "bytes": 331743232, "bits_per_second": 2654017516.8724084, "retransmits": 9, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.001039, "end": 44.001046, "seconds": 1.0000070333480835, "bytes": 349044736, "bits_per_second": 2792338248.513131, "retransmits": 8, "snd_cwnd": 291048, "snd_wnd": 0, "rtt": 127, "rttvar": 89, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 43.001039, "end": 44.001046, "seconds": 1.0000070333480835, "bytes": 349044736, "bits_per_second": 2792338248.513131, "retransmits": 8, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.001046, "end": 45.001534, "seconds": 1.000488042831421, "bytes": 357826560, "bits_per_second": 2861216084.001057, "retransmits": 9, "snd_cwnd": 375032, "snd_wnd": 0, "rtt": 582, "rttvar": 1035, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 44.001046, "end": 45.001534, "seconds": 1.000488042831421, "bytes": 357826560, "bits_per_second": 2861216084.001057, "retransmits": 9, "omitted": false, "sender": true}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 45.001534, "seconds": 45.001534, "bytes": 14287503360, "bits_per_second": 2539914014.4867063, "retransmits": 788, "max_snd_cwnd": 412680, "max_snd_wnd": 276480, "max_rtt": 848, "min_rtt": 67, "mean_rtt": 229, "sender": true}, "receiver": {"socket": 5, "start": 0, "end": 45.003572, "seconds": 45.001534, "bytes": 14285144064, "bits_per_second": 2539379596.624019, "sender": true}}], "sum_sent": {"start": 0, "end": 45.001534, "seconds": 45.001534, "bytes": 14287503360, "bits_per_second": 2539914014.4867063, "retransmits": 788, "sender": true}, "sum_received": {"start": 0, "end": 45.003572, "seconds": 45.003572, "bytes": 14285144064, "bits_per_second": 2539379596.624019, "sender": true}, "cpu_utilization_percent": {"host_total": 8.278567664361775, "host_user": 0.20406117306967542, "host_system": 8.074528710254553, "remote_total": 22.581922049124366, "remote_user": 1.5926068449585804, "remote_system": 20.98935297894341}, "sender_tcp_congestion": "cubic", "receiver_tcp_congestion": "cubic"}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 49692}], "version": "iperf 3.18", "system_info": "Linux qemux86-64 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64", "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "timestamp": {"time": "Mon, 20 Jul 2026 20:12:58 GMT", "timesecs": 1784578378}, "accepted_connection": {"host": "10.5.0.11", "port": 49678}, "cookie": "ycc5rddrrpfyj3pqlnlorpzujr5tn5pecxdb", "tcp_mss_default": 0, "target_bitrate": 0, "fq_rate": 0, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 45, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.004382, "seconds": 1.0043820142745972, "bytes": 517734400, "bits_per_second": 4123804629.248981, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.004382, "seconds": 1.0043820142745972, "bytes": 517734400, "bits_per_second": 4123804629.248981, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.004382, "end": 2.000778, "seconds": 0.996396005153656, "bytes": 302252032, "bits_per_second": 2426762294.803775, "omitted": false, "sender": false}], "sum": {"start": 1.004382, "end": 2.000778, "seconds": 0.996396005153656, "bytes": 302252032, "bits_per_second": 2426762294.803775, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.000778, "end": 3.000439, "seconds": 0.9996610283851624, "bytes": 300548096, "bits_per_second": 2405200062.54921, "omitted": false, "sender": false}], "sum": {"start": 2.000778, "end": 3.000439, "seconds": 0.9996610283851624, "bytes": 300548096, "bits_per_second": 2405200062.54921, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.000439, "end": 4.000852, "seconds": 1.000412940979004, "bytes": 311164928, "bits_per_second": 2488291906.3041635, "omitted": false, "sender": false}], "sum": {"start": 3.000439, "end": 4.000852, "seconds": 1.000412940979004, "bytes": 311164928, "bits_per_second": 2488291906.3041635, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.000852, "end": 5.000965, "seconds": 1.0001130104064941, "bytes": 318636032, "bits_per_second": 2548800215.051625, "omitted": false, "sender": false}], "sum": {"start": 4.000852, "end": 5.000965, "seconds": 1.0001130104064941, "bytes": 318636032, "bits_per_second": 2548800215.051625, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.000965, "end": 6.000944, "seconds": 0.999979019165039, "bytes": 313262080, "bits_per_second": 2506149221.1031957, "omitted": false, "sender": false}], "sum": {"start": 5.000965, "end": 6.000944, "seconds": 0.999979019165039, "bytes": 313262080, "bits_per_second": 2506149221.1031957, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.000944, "end": 7.000442, "seconds": 0.9994980096817017, "bytes": 307888128, "bits_per_second": 2464342099.8751125, "omitted": false, "sender": false}], "sum": {"start": 6.000944, "end": 7.000442, "seconds": 0.9994980096817017, "bytes": 307888128, "bits_per_second": 2464342099.8751125, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.000442, "end": 8.000438, "seconds": 0.9999960064888, "bytes": 340918272, "bits_per_second": 2727357067.730996, "omitted": false, "sender": false}], "sum": {"start": 7.000442, "end": 8.000438, "seconds": 0.9999960064888, "bytes": 340918272, "bits_per_second": 2727357067.730996, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.000438, "end": 9.000437, "seconds": 0.9999989867210388, "bytes": 250085376, "bits_per_second": 2000685035.2520542, "omitted": false, "sender": false}], "sum": {"start": 8.000438, "end": 9.000437, "seconds": 0.9999989867210388, "bytes": 250085376, "bits_per_second": 2000685035.2520542, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.000437, "end": 10.000436, "seconds": 0.9999989867210388, "bytes": 253624320, "bits_per_second": 2028996615.9395833, "omitted": false, "sender": false}], "sum": {"start": 9.000437, "end": 10.000436, "seconds": 0.9999989867210388, "bytes": 253624320, "bits_per_second": 2028996615.9395833, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.000436, "end": 11.002437, "seconds": 1.0020010471343994, "bytes": 274333696, "bits_per_second": 2190286701.073304, "omitted": false, "sender": false}], "sum": {"start": 10.000436, "end": 11.002437, "seconds": 1.0020010471343994, "bytes": 274333696, "bits_per_second": 2190286701.073304, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.002437, "end": 12.000435, "seconds": 0.9979979991912842, "bytes": 276561920, "bits_per_second": 2216933662.9861674, "omitted": false, "sender": false}], "sum": {"start": 11.002437, "end": 12.000435, "seconds": 0.9979979991912842, "bytes": 276561920, "bits_per_second": 2216933662.9861674, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.000435, "end": 13.000469, "seconds": 1.000033974647522, "bytes": 283508736, "bits_per_second": 2267992833.7428913, "omitted": false, "sender": false}], "sum": {"start": 12.000435, "end": 13.000469, "seconds": 1.000033974647522, "bytes": 283508736, "bits_per_second": 2267992833.7428913, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.000469, "end": 14.002469, "seconds": 1.0019999742507935, "bytes": 257687552, "bits_per_second": 2057385697.5808876, "omitted": false, "sender": false}], "sum": {"start": 13.000469, "end": 14.002469, "seconds": 1.0019999742507935, "bytes": 257687552, "bits_per_second": 2057385697.5808876, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.002469, "end": 15.000451, "seconds": 0.9979820251464844, "bytes": 284819456, "bits_per_second": 2283163013.5478163, "omitted": false, "sender": false}], "sum": {"start": 14.002469, "end": 15.000451, "seconds": 0.9979820251464844, "bytes": 284819456, "bits_per_second": 2283163013.5478163, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.000451, "end": 16.000443, "seconds": 0.9999920129776, "bytes": 306577408, "bits_per_second": 2452638853.28146, "omitted": false, "sender": false}], "sum": {"start": 15.000451, "end": 16.000443, "seconds": 0.9999920129776, "bytes": 306577408, "bits_per_second": 2452638853.28146, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.000443, "end": 17.000475, "seconds": 1.0000319480895996, "bytes": 295567360, "bits_per_second": 2364463339.9133615, "omitted": false, "sender": false}], "sum": {"start": 16.000443, "end": 17.000475, "seconds": 1.0000319480895996, "bytes": 295567360, "bits_per_second": 2364463339.9133615, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.000475, "end": 18.000513, "seconds": 1.0000380277633667, "bytes": 299106304, "bits_per_second": 2392759440.710195, "omitted": false, "sender": false}], "sum": {"start": 17.000475, "end": 18.000513, "seconds": 1.0000380277633667, "bytes": 299106304, "bits_per_second": 2392759440.710195, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.000513, "end": 19.000464, "seconds": 0.9999510049819946, "bytes": 262144000, "bits_per_second": 2097254755.0344849, "omitted": false, "sender": false}], "sum": {"start": 18.000513, "end": 19.000464, "seconds": 0.9999510049819946, "bytes": 262144000, "bits_per_second": 2097254755.0344849, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.000464, "end": 20.004459, "seconds": 1.0039949417114258, "bytes": 281935872, "bits_per_second": 2246512290.346066, "omitted": false, "sender": false}], "sum": {"start": 19.000464, "end": 20.004459, "seconds": 1.0039949417114258, "bytes": 281935872, "bits_per_second": 2246512290.346066, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.004459, "end": 21.000438, "seconds": 0.9959790110588074, "bytes": 299237376, "bits_per_second": 2403563711.1017923, "omitted": false, "sender": false}], "sum": {"start": 20.004459, "end": 21.000438, "seconds": 0.9959790110588074, "bytes": 299237376, "bits_per_second": 2403563711.1017923, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.000438, "end": 22.000451, "seconds": 1.000012993812561, "bytes": 295829504, "bits_per_second": 2366605280.7745757, "omitted": false, "sender": false}], "sum": {"start": 21.000438, "end": 22.000451, "seconds": 1.000012993812561, "bytes": 295829504, "bits_per_second": 2366605280.7745757, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.000451, "end": 23.001095, "seconds": 1.0006439685821533, "bytes": 298188800, "bits_per_second": 2383975194.8738685, "omitted": false, "sender": false}], "sum": {"start": 22.000451, "end": 23.001095, "seconds": 1.0006439685821533, "bytes": 298188800, "bits_per_second": 2383975194.8738685, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.001095, "end": 24.000439, "seconds": 0.999343991279602, "bytes": 311558144, "bits_per_second": 2494101304.2051144, "omitted": false, "sender": false}], "sum": {"start": 23.001095, "end": 24.000439, "seconds": 0.999343991279602, "bytes": 311558144, "bits_per_second": 2494101304.2051144, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.000439, "end": 25.000517, "seconds": 1.0000779628753662, "bytes": 314441728, "bits_per_second": 2515337721.03875, "omitted": false, "sender": false}], "sum": {"start": 24.000439, "end": 25.000517, "seconds": 1.0000779628753662, "bytes": 314441728, "bits_per_second": 2515337721.03875, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.000517, "end": 26.000479, "seconds": 0.9999619722366333, "bytes": 347471872, "bits_per_second": 2779880688.6450152, "omitted": false, "sender": false}], "sum": {"start": 25.000517, "end": 26.000479, "seconds": 0.9999619722366333, "bytes": 347471872, "bits_per_second": 2779880688.6450152, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.000479, "end": 27.000448, "seconds": 0.9999690055847168, "bytes": 322961408, "bits_per_second": 2583771346.48211, "omitted": false, "sender": false}], "sum": {"start": 26.000479, "end": 27.000448, "seconds": 0.9999690055847168, "bytes": 322961408, "bits_per_second": 2583771346.48211, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.000448, "end": 28.000449, "seconds": 1.0000009536743164, "bytes": 346161152, "bits_per_second": 2769286575.0025187, "omitted": false, "sender": false}], "sum": {"start": 27.000448, "end": 28.000449, "seconds": 1.0000009536743164, "bytes": 346161152, "bits_per_second": 2769286575.0025187, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.000449, "end": 29.000965, "seconds": 1.0005160570144653, "bytes": 308674560, "bits_per_second": 2468122787.922731, "omitted": false, "sender": false}], "sum": {"start": 28.000449, "end": 29.000965, "seconds": 1.0005160570144653, "bytes": 308674560, "bits_per_second": 2468122787.922731, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.000965, "end": 30.002105, "seconds": 1.0011399984359741, "bytes": 351141888, "bits_per_second": 2805936340.9598627, "omitted": false, "sender": false}], "sum": {"start": 29.000965, "end": 30.002105, "seconds": 1.0011399984359741, "bytes": 351141888, "bits_per_second": 2805936340.9598627, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.002105, "end": 31.00044, "seconds": 0.9983350038528442, "bytes": 342360064, "bits_per_second": 2743448342.920884, "omitted": false, "sender": false}], "sum": {"start": 30.002105, "end": 31.00044, "seconds": 0.9983350038528442, "bytes": 342360064, "bits_per_second": 2743448342.920884, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.00044, "end": 32.000488, "seconds": 1.000048041343689, "bytes": 356384768, "bits_per_second": 2850941180.954889, "omitted": false, "sender": false}], "sum": {"start": 31.00044, "end": 32.000488, "seconds": 1.000048041343689, "bytes": 356384768, "bits_per_second": 2850941180.954889, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.000488, "end": 33.000469, "seconds": 0.9999809861183167, "bytes": 351404032, "bits_per_second": 2811285709.4538574, "omitted": false, "sender": false}], "sum": {"start": 32.000488, "end": 33.000469, "seconds": 0.9999809861183167, "bytes": 351404032, "bits_per_second": 2811285709.4538574, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.000469, "end": 34.000499, "seconds": 1.0000300407409668, "bytes": 340262912, "bits_per_second": 2722021524.4564776, "omitted": false, "sender": false}], "sum": {"start": 33.000469, "end": 34.000499, "seconds": 1.0000300407409668, "bytes": 340262912, "bits_per_second": 2722021524.4564776, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.000499, "end": 35.000951, "seconds": 1.0004520416259766, "bytes": 355860480, "bits_per_second": 2845597511.4740386, "omitted": false, "sender": false}], "sum": {"start": 34.000499, "end": 35.000951, "seconds": 1.0004520416259766, "bytes": 355860480, "bits_per_second": 2845597511.4740386, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.000951, "end": 36.000434, "seconds": 0.9994829893112183, "bytes": 363200512, "bits_per_second": 2907107101.44488, "omitted": false, "sender": false}], "sum": {"start": 35.000951, "end": 36.000434, "seconds": 0.9994829893112183, "bytes": 363200512, "bits_per_second": 2907107101.44488, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.000434, "end": 37.000465, "seconds": 1.0000309944152832, "bytes": 347340800, "bits_per_second": 2778640277.669311, "omitted": false, "sender": false}], "sum": {"start": 36.000434, "end": 37.000465, "seconds": 1.0000309944152832, "bytes": 347340800, "bits_per_second": 2778640277.669311, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.000465, "end": 38.003434, "seconds": 1.0029690265655518, "bytes": 321912832, "bits_per_second": 2567679148.3965974, "omitted": false, "sender": false}], "sum": {"start": 37.000465, "end": 38.003434, "seconds": 1.0029690265655518, "bytes": 321912832, "bits_per_second": 2567679148.3965974, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.003434, "end": 39.000474, "seconds": 0.9970399737358093, "bytes": 308019200, "bits_per_second": 2471469213.78394, "omitted": false, "sender": false}], "sum": {"start": 38.003434, "end": 39.000474, "seconds": 0.9970399737358093, "bytes": 308019200, "bits_per_second": 2471469213.78394, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.000474, "end": 40.000461, "seconds": 0.999987006187439, "bytes": 292421632, "bits_per_second": 2339403453.769983, "omitted": false, "sender": false}], "sum": {"start": 39.000474, "end": 40.000461, "seconds": 0.999987006187439, "bytes": 292421632, "bits_per_second": 2339403453.769983, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.000461, "end": 41.000432, "seconds": 0.9999709725379944, "bytes": 315490304, "bits_per_second": 2523995697.1892023, "omitted": false, "sender": false}], "sum": {"start": 40.000461, "end": 41.000432, "seconds": 0.9999709725379944, "bytes": 315490304, "bits_per_second": 2523995697.1892023, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.000432, "end": 42.000456, "seconds": 1.0000239610672, "bytes": 316145664, "bits_per_second": 2529104711.9520416, "omitted": false, "sender": false}], "sum": {"start": 41.000432, "end": 42.000456, "seconds": 1.0000239610672, "bytes": 316145664, "bits_per_second": 2529104711.9520416, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.000456, "end": 43.000459, "seconds": 1.0000029802322388, "bytes": 332005376, "bits_per_second": 2656035092.39859, "omitted": false, "sender": false}], "sum": {"start": 42.000456, "end": 43.000459, "seconds": 1.0000029802322388, "bytes": 332005376, "bits_per_second": 2656035092.39859, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.000459, "end": 44.000444, "seconds": 0.9999849796295166, "bytes": 350224384, "bits_per_second": 2801837156.632127, "omitted": false, "sender": false}], "sum": {"start": 43.000459, "end": 44.000444, "seconds": 0.9999849796295166, "bytes": 350224384, "bits_per_second": 2801837156.632127, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.000444, "end": 45.001268, "seconds": 1.000823974609375, "bytes": 357695488, "bits_per_second": 2859207989.2139654, "omitted": false, "sender": false}], "sum": {"start": 44.000444, "end": 45.001268, "seconds": 1.000823974609375, "bytes": 357695488, "bits_per_second": 2859207989.2139654, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.001268, "end": 45.003572, "seconds": 0.00230400008149445, "bytes": 262144, "bits_per_second": 910222190.026885, "omitted": false, "sender": false}], "sum": {"start": 45.001268, "end": 45.003572, "seconds": 0.00230400008149445, "bytes": 262144, "bits_per_second": 910222190.026885, "omitted": false, "sender": false}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 45.003572, "seconds": 45.003572, "bytes": 0, "bits_per_second": 0, "sender": false}, "receiver": {"socket": 5, "start": 0, "end": 45.003572, "seconds": 45.003572, "bytes": 14285144064, "bits_per_second": 2539379596.624019, "sender": false}}], "sum_sent": {"start": 0, "end": 45.003572, "seconds": 45.003572, "bytes": 0, "bits_per_second": 0, "sender": false}, "sum_received": {"start": 0, "end": 45.003572, "seconds": 45.003572, "bytes": 14285144064, "bits_per_second": 2539379596.624019, "sender": false}, "cpu_utilization_percent": {"host_total": 22.581922049124366, "host_user": 1.5926068449585804, "host_system": 20.98935297894341, "remote_total": 0, "remote_user": 0, "remote_system": 0}, "receiver_tcp_congestion": "cubic"}}}} 2026-07-20 20:12:55.348006 2026-07-20 19:08:00.987045 +1103 48 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:13:43.90929 2026-07-20 20:13:43.909294 +1104 48 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:12:55' --until '2026-07-20 20:13:43' 0 OOM records 2026-07-20 20:12:55.135775 2026-07-20 20:13:43.604722 +1105 48 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:12:55' --until '2026-07-20 20:13:43' 0 systemd errors records 2026-07-20 20:12:55.135775 2026-07-20 20:13:43.604722 +1106 48 loader /usr/bin/stress-ng --timeout 50 --cpu-method all --vm-method all --sock 0 --sock-ops 1000 --netdev 0 --syscall-method all --verify --metrics --udp 0 {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 297.65}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 1000, "real_time_secs": 0.32, "usr_time_secs": 0.04, "sys_time_secs": 0.45, "bogo_ops_s_real_time": 3102.31, "bogo_ops_s_usr_sys_time": 2025.06, "cpu_used_per_instance": 38.3, "rss_max_kb": 2176, "top10_slowest": null}, "1": {"stressor": "netdev", "bogo_ops": 13146228, "real_time_secs": 50.0, "usr_time_secs": 10.33, "sys_time_secs": 69.91, "bogo_ops_s_real_time": 262924.4, "bogo_ops_s_usr_sys_time": 163837.76, "cpu_used_per_instance": 40.12, "rss_max_kb": 2044, "top10_slowest": null}, "2": {"stressor": "udp", "bogo_ops": 19007265, "real_time_secs": 50.0, "usr_time_secs": 13.6, "sys_time_secs": 103.0, "bogo_ops_s_real_time": 380143.55, "bogo_ops_s_usr_sys_time": 163015.13, "cpu_used_per_instance": 58.3, "rss_max_kb": 2184, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 12, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:13:44.766509 2026-07-20 19:08:00.987045 +1107 48 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:14:35.316604 2026-07-20 20:14:35.316607 +1108 48 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:13:44' --until '2026-07-20 20:14:35' 0 OOM records 2026-07-20 20:13:44.657401 2026-07-20 20:14:35.012655 +1109 48 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:13:44' --until '2026-07-20 20:14:35' 0 systemd errors records 2026-07-20 20:13:44.657401 2026-07-20 20:14:35.012655 +1110 49 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": -1.0, "kernel_time": 2.889, "userspace_time": 8.3, "total_time": 11.19} 2026-07-20 19:08:00.987038 2026-07-20 19:08:00.987045 +1111 49 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:16:52.4178 2026-07-20 20:16:52.417805 +1112 49 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:16:51' --until '2026-07-20 20:16:52' 0 OOM records 2026-07-20 20:16:51.894432 2026-07-20 20:16:52.112382 +1113 49 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:16:51' --until '2026-07-20 20:16:52' 0 systemd errors records 2026-07-20 20:16:51.894432 2026-07-20 20:16:52.112382 +1118 49 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 34.37}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 34.25, "usr_time_secs": 0.04, "sys_time_secs": 0.08, "bogo_ops_s_real_time": 66.33, "bogo_ops_s_usr_sys_time": 18707.75, "cpu_used_per_instance": 0.09, "rss_max_kb": 4836, "top10_slowest": [["syslog", 16973207713.0, 991419285, 32954996141], ["fdatasync", 10197889.0, 4562232, 15833546], ["sync", 5066485.0, 4719768, 5413202], ["pwritev2", 2964346.5, 1510541, 4418152], ["syncfs", 2600418.5, 2395587, 2805250], ["fsync", 1571944.5, 1463511, 1680378], ["remap_file_pages", 1290238.5, 3145, 2577332], ["execve", 1089187.0, 905774, 1272600], ["execveat", 1084578.5, 976713, 1192444], ["msync", 859613.5, 492, 1718735]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:16:53.81138 2026-07-20 19:08:00.987045 +1119 49 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:17:29.361682 2026-07-20 20:17:29.361685 +1120 49 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:16:53' --until '2026-07-20 20:17:29' 1 OOM records 2026-07-20 20:16:53.704024 2026-07-20 20:17:29.057417 +1121 49 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:16:53' --until '2026-07-20 20:17:29' 0 systemd errors records 2026-07-20 20:16:53.704024 2026-07-20 20:17:29.057417 +1122 49 loader /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-20_20:17:30.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 10.58}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboZUm6jL as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02002692222595215}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0114593505859375}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accP4l1Fr as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 36325\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02098250389099121}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.008835792541503906}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 42051\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 36063\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 38377\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.005008220672607422}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accAp46CT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01498103141784668}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accps3G3O as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.008829832077026367}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004571676254272461}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accgHW192 as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accgHW192/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0053882598876953125}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acceYQ7OC as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acceYQ7OC/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.006494998931884766}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accOGX7PO as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.0107088088989258}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.005160331726074219}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.003374814987182617}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.008754253387451172}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.00426793098449707}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.25718259811401367}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004470109939575195}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004266977310180664}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004072427749633789}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01106715202331543}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.010759353637695312}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0120115280151367}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0059828758239746}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0156633853912354}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004576206207275391}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binQQrWuo as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011140108108520508}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01068425178527832}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binxSbjxm as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011562108993530273}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binhfvHHa as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.019240617752075195}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_biny4TfW4 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012040376663208008}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = -25ns, avg_dev = 19ns, dev_ratio = 0.74 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 13967ns, avg_dev = 2060ns, dev_ratio = 0.15 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 37105ns, avg_dev = 1675ns, dev_ratio = 0.05 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -23164ns, avg_dev = 1427ns, dev_ratio = 0.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 42773 , avg_dev = 2947 , dev_ratio = 0.07 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.021404504776001}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01104593276977539}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004161834716796875}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004305362701416016}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.003969430923461914}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004159688949584961}, "summary": {"passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}}} 2026-07-20 20:17:30.319239 2026-07-20 19:08:00.987045 +1123 49 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:18:49.837966 2026-07-20 20:18:49.837971 +1124 49 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:17:30' --until '2026-07-20 20:18:49' 0 OOM records 2026-07-20 20:17:30.108581 2026-07-20 20:18:49.53332 +1125 49 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:17:30' --until '2026-07-20 20:18:49' 0 systemd errors records 2026-07-20 20:17:30.108581 2026-07-20 20:18:49.53332 +1126 49 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 50 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-20_20:18:50.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 12.27}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboCM6RKL as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02830338478088379}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013006448745727539}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc0snrnf as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 33455\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012340068817138672}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.016538381576538086}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 40109\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 34521\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46687\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004992008209228516}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accbcPWO2 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.016170978546142578}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accfkBLiu as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.008942604064941406}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.00506901741027832}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acciWj502 as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acciWj502/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.006021738052368164}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accphCKZF as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accphCKZF/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.006287336349487305}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accoLZqdt as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20533)\\nacct02.c:193: TINFO: == entry 2 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20533)\\nacct02.c:193: TINFO: == entry 3 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20533)\\nacct02.c:193: TINFO: == entry 4 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20533)\\nacct02.c:193: TINFO: == entry 5 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20533)\\nacct02.c:193: TINFO: == entry 6 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (9)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20531)\\nacct02.c:193: TINFO: == entry 7 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20531)\\nacct02.c:193: TINFO: == entry 8 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20531)\\nacct02.c:193: TINFO: == entry 9 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20533)\\nacct02.c:193: TINFO: == entry 10 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20531)\\nacct02.c:193: TINFO: == entry 11 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20531)\\nacct02.c:193: TINFO: == entry 12 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 21133 (20533)\\nacct02.c:193: TINFO: == entry 13 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != ", "retval": ["0"], "duration": 1.0127573013305664}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.00426173210144043}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.003743886947631836}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.010355710983276367}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0054776668548583984}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.26816701889038086}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0051021575927734375}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.009193181991577148}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.010307550430297852}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.021181583404541016}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.017120838165283203}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.019137382507324}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.00508189201355}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.00555157661438}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0037398338317871094}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binmWbJpR as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011364459991455078}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.010434865951538086}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binlHdvdy as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013355016708374023}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binge8e3E as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.023053884506225586}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binccCzGb as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012119531631469727}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = -1ns, avg_dev = 36ns, dev_ratio = 41.70 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 15936ns, avg_dev = 955ns, dev_ratio = 0.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 40298ns, avg_dev = 562ns, dev_ratio = 0.01 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -24363ns, avg_dev = 565ns, dev_ratio = 0.02 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 35971 , avg_dev = 2327 , dev_ratio = 0.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:494: TINFO: Reached deviation ratios < 0.10, introducing randomness\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:497: TINFO: Delay range is [-58031, 24021]\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 5973, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 197ns, avg_dev = 17ns, dev_ratio = 0.08 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 14568ns, avg_dev = 843ns, dev_ratio = 0.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 35193ns, avg_dev = 1835ns, dev_ratio = 0.05 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -20428ns, avg_dev = 1242ns, dev_ratio = 0.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 33685 , avg_dev = 1805 , dev_ratio = 0.05 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.654017210006714}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01337432861328125}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.006235599517822266}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004048824310302734}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.003915071487426758}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.004224061965942383}, "summary": {"passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}}} 2026-07-20 20:18:50.794085 2026-07-20 20:20:15.802163 +1127 49 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 60 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-20_20:20:15.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 22.82}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abouf36mv as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.00882720947265625}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013097524642944336}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accWHEbBV as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 33783\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.021442651748657227}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02306842803955078}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 44245\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 36303\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46603\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.015941381454467773}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accUxDhAx as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12834405899047852}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accgRaPyI as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.03621411323547363}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01604914665222168}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accq75HL8 as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accq75HL8/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02592325210571289}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc5EHX9Y as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc5EHX9Y/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02085089683532715}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc93GfN6 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('sh')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (20520)\\nacct02.c:193: TINFO: == entry 2 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 3 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 4 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 5 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 6 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 7 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 8 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 9 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 10 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 11 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 12 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 13 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 14 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 15 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 16 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 17 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 18 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 19 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 20 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 21 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 22 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (9)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 23 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 24 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 25 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 26 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 27 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 28 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 29 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 30 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 31 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 32 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 33 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 34 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 22704 (22150)\\nacct02.c:193: TINFO: == entry 35 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 35\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.0329384803771973}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013935565948486328}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013776540756225586}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02220916748046875}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011044740676879883}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.30530834197998047}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0059206485748291016}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011161327362060547}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.007367610931396484}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.009291410446166992}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011025190353393555}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0126335620880127}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0089807510375977}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0131144523620605}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011043071746826172}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binMJ6h5B as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.014556169509887695}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013733386993408203}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binYZlqpO as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.017242908477783203}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_biny8nOF3 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.03166508674621582}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binuiEzjh as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06971526145935059}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 56ns, avg_dev = 184ns, dev_ratio = 3.30 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 14028ns, avg_dev = 843ns, dev_ratio = 0.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 1699168ns, avg_dev = 1510261ns, dev_ratio = 0.89 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -1685084ns, avg_dev = 1510175ns, dev_ratio = 0.90 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 1366561 , avg_dev = 1132643 , dev_ratio = 0.83 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 12.815319776535034}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011473655700683594}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01337742805480957}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.010679960250854492}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.009459972381591797}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013021230697631836}, "summary": {"passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}}} 2026-07-20 20:20:15.808713 2026-07-20 20:21:50.817326 +1128 49 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 70 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-20_20:21:50.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 20.18}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboZoHbg5 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.014120101928710938}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012526273727416992}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc9ui01P as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 48513\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01398468017578125}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0169525146484375}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 40525\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 35449\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46625\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.019819974899291992}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acclyvsYy as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1575169563293457}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accfATLSW as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.04431462287902832}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.019373178482055664}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accpHSZ82 as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accpHSZ82/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.020896196365356445}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc5xdzZ2 as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc5xdzZ2/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.018161773681640625}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accawOOJf as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.0288867950439453}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02282547950744629}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013588428497314453}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01699995994567871}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.016007661819458008}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.30303215980529785}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.009914636611938477}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.011648416519165039}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.005401611328125}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0062944889068603516}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01021575927734375}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.01686954498291}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0082321166992188}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.009005546569824}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013462305068969727}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binNTvIAY as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.019686222076416016}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.017698049545288086}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binN7NIFf as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.016335487365722656}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binXXwi7x as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.030770063400268555}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binINLUXP as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.04472827911376953}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 76186ns, avg_dev = 233013ns, dev_ratio = 3.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 14385ns, avg_dev = 2105ns, dev_ratio = 0.15 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 38156ns, avg_dev = 2937ns, dev_ratio = 0.08 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = 52415ns, avg_dev = 234903ns, dev_ratio = 4.48 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 252731 , avg_dev = 525637 , dev_ratio = 2.08 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:494: TINFO: Reached deviation ratios < 0.10, introducing randomness\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:497: TINFO: Delay range is [-93067, 18676]\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 2433, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = -2918273ns, avg_dev = 44126ns, dev_ratio = 0.02 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 10710ns, avg_dev = 664ns, dev_ratio = 0.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 53369ns, avg_dev = 4337ns, dev_ratio = 0.08 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -2960932ns, avg_dev = 41538ns, dev_ratio = 0.01 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 5163398 , avg_dev = 58943 , dev_ratio = 0.01 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 10.14872145652771}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0059773921966552734}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01300501823425293}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.015491724014282227}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.018293142318725586}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02006387710571289}, "summary": {"passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}}} 2026-07-20 20:21:50.824128 2026-07-20 20:23:20.832077 +1129 49 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 80 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-20_20:23:20.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 13.55}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abohwsxLu as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.009363651275634766}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012022256851196289}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc1ByaUv as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 33979\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.019272804260253906}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012942075729370117}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 42665\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 33743\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 36349\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01704096794128418}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc8feVNM as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10945987701416016}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc0ti9HM as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.03796815872192383}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.018860578536987305}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc2W847y as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc2W847y/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0256192684173584}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc3IJUqO as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc3IJUqO/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02009272575378418}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accBIgMyY as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.028165578842163}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012238740921020508}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.016161680221557617}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02158379554748535}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.017850160598754883}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3085038661956787}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.009631633758544922}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.007524967193603516}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01475071907043457}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.00716853141784668}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.015557050704956055}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0088775157928467}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0138590335845947}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.014589309692383}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.020682811737060547}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin6Iqjsg as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013234138488769531}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.015499591827392578}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binAp1d9z as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01935267448425293}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binUEUwlb as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.03994488716125488}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binGjlbZh as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06449413299560547}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 134ns, avg_dev = 20ns, dev_ratio = 0.15 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 9997ns, avg_dev = 1695ns, dev_ratio = 0.17 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 37474ns, avg_dev = 1547ns, dev_ratio = 0.04 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -27343ns, avg_dev = 2570ns, dev_ratio = 0.09 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 36927 , avg_dev = 1000 , dev_ratio = 0.03 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:494: TINFO: Reached deviation ratios < 0.10, introducing randomness\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:497: TINFO: Delay range is [-49651, 12929]\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1765, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 103ns, avg_dev = 8ns, dev_ratio = 0.08 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 9389ns, avg_dev = 872ns, dev_ratio = 0.09 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 36057ns, avg_dev = 483ns, dev_ratio = 0.01 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -26565ns, avg_dev = 645ns, dev_ratio = 0.02 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 36580 , avg_dev = 671 , dev_ratio = 0.02 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.5330348014831543}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012049674987792969}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.007789134979248047}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012788057327270508}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0157163143157959}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.014982938766479492}, "summary": {"passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}}} 2026-07-20 20:23:20.84094 2026-07-20 20:24:45.848724 +1130 49 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 90 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-20_20:24:45.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 21.49}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboSKJc4x as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.015624523162841797}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012768030166625977}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accrne6ov as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 43827\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02356100082397461}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013585090637207031}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 35321\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 43749\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 38493\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.017499208450317383}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accNz9XmU as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0908041000366211}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc5BcPQ2 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.04512166976928711}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.018106698989868164}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accMHWd0f as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accMHWd0f/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.022857666015625}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc71f1un as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc71f1un/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.023560285568237305}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accFzpDB6 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('sh')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (20520)\\nacct02.c:193: TINFO: == entry 2 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 3 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 4 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 5 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 6 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 7 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 8 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 9 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 10 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 11 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (9)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 12 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 13 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 14 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 15 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 16 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 17 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 18 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 19 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 20 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 21 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 22 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 23 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 24 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 25 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 26 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 27 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 28 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 29 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 30 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 31 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 32 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 33 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 34 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('stress-ng-sysca')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 28249 (27667)\\nacct02.c:193: TINFO: == entry 35 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 35\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.0292208194732666}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.020748138427734375}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012311935424804688}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01487112045288086}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012905359268188477}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.28946375846862793}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.009469032287597656}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01604175567626953}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.009262323379516602}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012590646743774414}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.020953893661499023}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0157463550567627}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0124897956848145}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0120790004730225}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01084446907043457}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binS1V8Lb as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.010426759719848633}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01699376106262207}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binbudiHF as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013089895248413086}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binbOBjzG as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.04391074180603027}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binILZ5qF as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09402132034301758}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 51ns, avg_dev = 21ns, dev_ratio = 0.42 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 47832ns, avg_dev = 4036ns, dev_ratio = 0.08 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 90907ns, avg_dev = 150374ns, dev_ratio = 1.65 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -43025ns, avg_dev = 149691ns, dev_ratio = 3.48 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 52915 , avg_dev = 196004 , dev_ratio = 3.70 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 11.481724739074707}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.009613275527954102}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.007048845291137695}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.014784097671508789}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.007678985595703125}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.012331247329711914}, "summary": {"passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}}} 2026-07-20 20:24:45.855227 2026-07-20 20:26:20.863037 +1131 49 loader /usr/bin/stress-ng --timeout 5 --cpu 0 --cpu-method matrixprod --cpu-load 100 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-07-20_20:26:20.json {"tool": "kirk", "test_type": {"type": "general"}, "time": {"duration_sec": 29.04}, "metrics": {"0": {"test": "abort01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboyyUmvA as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02319192886352539}, "1": {"test": "accept01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.014591693878173828}, "2": {"test": "accept02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accHqbaIY as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 40651\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.023995399475097656}, "3": {"test": "accept03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.017789125442504883}, "4": {"test": "accept4_01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 38291\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46211\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 45275\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.016465187072753906}, "5": {"test": "access01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accv1rjVf as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1083216667175293}, "6": {"test": "access02", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accp5YGgL as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.03392744064331055}, "7": {"test": "access03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.008335351943969727}, "8": {"test": "access04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc1lD5S9 as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc1lD5S9/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02205038070678711}, "9": {"test": "acct01", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc6p680t as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc6p680t/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01600956916809082}, "10": {"test": "acct02", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accS3vRCS as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.027101755142212}, "11": {"test": "add_key01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.017395973205566406}, "12": {"test": "add_key02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.014129400253295898}, "13": {"test": "add_key03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.02232646942138672}, "14": {"test": "add_key04", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.014984130859375}, "15": {"test": "add_key05", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.27079057693481445}, "16": {"test": "adjtimex01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.008119583129882812}, "17": {"test": "adjtimex02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.021794557571411133}, "18": {"test": "adjtimex03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01280355453491211}, "19": {"test": "alarm02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.01519012451171875}, "20": {"test": "alarm03", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.014457464218139648}, "21": {"test": "alarm05", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.015840530395508}, "22": {"test": "alarm06", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.011000633239746}, "23": {"test": "alarm07", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0121006965637207}, "24": {"test": "arch_prctl01", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.013037443161010742}, "25": {"test": "bind01", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binyK7bLI as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.019370317459106445}, "26": {"test": "bind02", "status": "pass", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.026409149169921875}, "27": {"test": "bind03", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binIaqhSd as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.006323814392089844}, "28": {"test": "bind04", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binNczknm as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.024849891662597656}, "29": {"test": "bind05", "status": "pass", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binpXFazb as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.04626941680908203}, "30": {"test": "bind06", "status": "pass", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = -6598ns, avg_dev = 29881ns, dev_ratio = 4.53 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 49986ns, avg_dev = 5859ns, dev_ratio = 0.12 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 56477ns, avg_dev = 11862ns, dev_ratio = 0.21 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -13090ns, avg_dev = 41788ns, dev_ratio = 3.19 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 21267 , avg_dev = 69117 , dev_ratio = 3.25 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:494: TINFO: Reached deviation ratios < 0.10, introducing randomness\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:497: TINFO: Delay range is [-56685, 19309]\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 4676, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = -49ns, avg_dev = 4ns, dev_ratio = 0.09 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 12824ns, avg_dev = 621ns, dev_ratio = 0.05 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 37647ns, avg_dev = 2271ns, dev_ratio = 0.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -24871ns, avg_dev = 2038ns, dev_ratio = 0.08 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 37449 , avg_dev = 1320 , dev_ratio = 0.04 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 19.087768077850342}, "31": {"test": "bpf_map01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.007973432540893555}, "32": {"test": "bpf_prog01", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.010539770126342773}, "33": {"test": "bpf_prog02", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.010054349899291992}, "34": {"test": "bpf_prog03", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0135955810546875}, "35": {"test": "bpf_prog04", "status": "pass", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.007911443710327148}, "summary": {"passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}}} 2026-07-20 20:26:20.869623 2026-07-20 20:28:00.880837 +1132 49 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:28:01.194114 2026-07-20 20:28:01.194118 +1133 49 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:18:50' --until '2026-07-20 20:28:00' 0 OOM records 2026-07-20 20:18:50.583578 2026-07-20 20:28:00.890201 +1134 49 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:18:50' --until '2026-07-20 20:28:00' 0 systemd errors records 2026-07-20 20:18:50.583578 2026-07-20 20:28:00.890201 +1135 49 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 0 --vm-method all --vm-bytes 95% --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 133.11}, "metrics": {"0": {"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 35.01, "usr_time_secs": 0.04, "sys_time_secs": 0.13, "bogo_ops_s_real_time": 64.9, "bogo_ops_s_usr_sys_time": 12991.84, "cpu_used_per_instance": 0.12, "rss_max_kb": 4860, "top10_slowest": [["syslog", 954024517.5, 948354842, 959694193], ["sync", 20830847.5, 1639700, 40021995], ["fdatasync", 5538099.0, 3684543, 7391655], ["msync", 3024796.5, 431, 6049162], ["pause", 2427064.0, 860364, 3993764], ["syncfs", 2340622.5, 1318678, 3362567], ["pwritev2", 2219155.5, 2112753, 2325558], ["clone", 2212515.0, 115001, 4310029], ["execveat", 2176057.5, 1016270, 3335845], ["fsync", 2048164.0, 1097523, 2998805]]}, "1": {"stressor": "vm", "bogo_ops": 3877880, "real_time_secs": 33.04, "usr_time_secs": 49.79, "sys_time_secs": 15.1, "bogo_ops_s_real_time": 117360.67, "bogo_ops_s_usr_sys_time": 59758.03, "cpu_used_per_instance": 49.1, "rss_max_kb": 740780, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:28:02.082298 2026-07-20 19:08:00.987045 +1136 49 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:28:38.630812 2026-07-20 20:28:38.630816 +1137 49 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:28:01' --until '2026-07-20 20:28:38' 19 OOM records 2026-07-20 20:28:01.967392 2026-07-20 20:28:38.325493 +1138 49 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:28:01' --until '2026-07-20 20:28:38' 0 systemd errors records 2026-07-20 20:28:01.967392 2026-07-20 20:28:38.325493 +1158 50 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 50% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 11.38}, "metrics": {"0": {"bogo_ops": 1737, "real_time_secs": 11.0, "usr_time_secs": 0.09, "sys_time_secs": 0.29, "bogo_ops_s_real_time": 157.85, "bogo_ops_s_usr_sys_time": 4544.35, "cpu_used_per_instance": 0.87, "rss_max_kb": 2100, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 13:30:46.666178 2026-07-22 13:08:41.236732 +1322 53 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:23:56' --until '2026-07-22 14:25:43' 1 OOM records 2026-07-22 14:23:56.689581 2026-07-22 14:25:43.134594 +1139 49 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/perf bench --format default --repeat 1 syscall all {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 34.9}, "metrics": {"0": {"bogo_ops": 2272, "real_time_secs": 34.75, "usr_time_secs": 0.04, "sys_time_secs": 0.11, "bogo_ops_s_real_time": 65.38, "bogo_ops_s_usr_sys_time": 15508.53, "cpu_used_per_instance": 0.11, "rss_max_kb": 4788, "top10_slowest": [["syslog", 983567335.5, 977031754, 990102917], ["fdatasync", 26524921.0, 2872992, 50176850], ["fsync", 19918758.0, 855690, 38981826], ["pwritev2", 13747825.0, 1734973, 25760677], ["msync", 11660996.0, 441, 23321551], ["sync", 3264263.0, 2662422, 3866104], ["syncfs", 2907198.0, 1420107, 4394289], ["remap_file_pages", 917787.5, 4176, 1831399], ["execve", 786049.5, 701378, 870721], ["execveat", 661469.5, 618297, 704642]]}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}, "perf_metrics": {"tool": "perf", "test_type": {"benchmark": "syscall/basic"}, "time": {"duration_sec": 0.455}, "metrics": {"usecs_per_op": 0.04553, "ops_per_sec": 21963395}}} 2026-07-20 20:28:39.652468 2026-07-20 20:29:19.653542 +1140 49 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:29:19.96413 2026-07-20 20:29:19.964134 +1141 49 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:28:39' --until '2026-07-20 20:29:19' 0 OOM records 2026-07-20 20:28:39.438576 2026-07-20 20:29:19.658291 +1142 49 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:28:39' --until '2026-07-20 20:29:19' 0 systemd errors records 2026-07-20 20:28:39.438576 2026-07-20 20:29:19.658291 +1143 49 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 136.08}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 1645, "real_time_secs": 8.01, "usr_time_secs": 0.04, "sys_time_secs": 0.64, "bogo_ops_s_real_time": 205.29, "bogo_ops_s_usr_sys_time": 2402.34, "cpu_used_per_instance": 8.55, "rss_max_kb": 2336, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 478004, "real_time_secs": 8.0, "usr_time_secs": 0.15, "sys_time_secs": 0.36, "bogo_ops_s_real_time": 59737.57, "bogo_ops_s_usr_sys_time": 948174.18, "cpu_used_per_instance": 6.3, "rss_max_kb": 2336, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 534241, "real_time_secs": 8.01, "usr_time_secs": 0.08, "sys_time_secs": 0.34, "bogo_ops_s_real_time": 66696.67, "bogo_ops_s_usr_sys_time": 1275939.57, "cpu_used_per_instance": 5.23, "rss_max_kb": 2404, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 2791084, "real_time_secs": 8.01, "usr_time_secs": 0.15, "sys_time_secs": 0.53, "bogo_ops_s_real_time": 348397.36, "bogo_ops_s_usr_sys_time": 4077611.07, "cpu_used_per_instance": 8.54, "rss_max_kb": 2976, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 1577851, "real_time_secs": 8.01, "usr_time_secs": 0.12, "sys_time_secs": 0.59, "bogo_ops_s_real_time": 196948.28, "bogo_ops_s_usr_sys_time": 2242651.35, "cpu_used_per_instance": 8.78, "rss_max_kb": 2148, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 116, "real_time_secs": 8.02, "usr_time_secs": 0.07, "sys_time_secs": 0.62, "bogo_ops_s_real_time": 14.46, "bogo_ops_s_usr_sys_time": 166.84, "cpu_used_per_instance": 8.67, "rss_max_kb": 263940, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 305, "real_time_secs": 8.01, "usr_time_secs": 0.02, "sys_time_secs": 0.26, "bogo_ops_s_real_time": 38.07, "bogo_ops_s_usr_sys_time": 1087.81, "cpu_used_per_instance": 3.5, "rss_max_kb": 48720, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 3663195, "real_time_secs": 8.01, "usr_time_secs": 1.34, "sys_time_secs": 0.0, "bogo_ops_s_real_time": 457269.98, "bogo_ops_s_usr_sys_time": 2737468.14, "cpu_used_per_instance": 16.7, "rss_max_kb": 2148, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 2861570, "real_time_secs": 8.0, "usr_time_secs": 0.24, "sys_time_secs": 1.43, "bogo_ops_s_real_time": 357640.5, "bogo_ops_s_usr_sys_time": 1717216.75, "cpu_used_per_instance": 20.83, "rss_max_kb": 2148, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 17029, "real_time_secs": 8.01, "usr_time_secs": 0.23, "sys_time_secs": 0.75, "bogo_ops_s_real_time": 2126.07, "bogo_ops_s_usr_sys_time": 17382.53, "cpu_used_per_instance": 12.23, "rss_max_kb": 2148, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1122584, "real_time_secs": 8.01, "usr_time_secs": 1.3, "sys_time_secs": 0.0, "bogo_ops_s_real_time": 140116.37, "bogo_ops_s_usr_sys_time": 861261.7, "cpu_used_per_instance": 16.27, "rss_max_kb": 2148, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 7697613, "real_time_secs": 8.01, "usr_time_secs": 1.36, "sys_time_secs": 20.68, "bogo_ops_s_real_time": 961287.68, "bogo_ops_s_usr_sys_time": 349174.77, "cpu_used_per_instance": 275.3, "rss_max_kb": 2148, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 1357472, "real_time_secs": 8.01, "usr_time_secs": 0.22, "sys_time_secs": 0.44, "bogo_ops_s_real_time": 169483.07, "bogo_ops_s_usr_sys_time": 2049775.46, "cpu_used_per_instance": 8.27, "rss_max_kb": 2148, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 13, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:29:21.039977 2026-07-20 19:08:00.987045 +1144 49 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 2 --syscall-method all --mq 2 --pipe 2 --sem 2 --sem-sysv 2 --shm 2 --shm-sysv 2 --verify --dekker 2 --fifo 2 --futex 2 --peterson 2 --pipeherd 2 --sigq 2 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 136.22}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 2034, "real_time_secs": 8.02, "usr_time_secs": 0.07, "sys_time_secs": 0.84, "bogo_ops_s_real_time": 253.6, "bogo_ops_s_usr_sys_time": 2233.48, "cpu_used_per_instance": 5.68, "rss_max_kb": 2216, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 776699, "real_time_secs": 8.0, "usr_time_secs": 0.23, "sys_time_secs": 0.55, "bogo_ops_s_real_time": 97059.88, "bogo_ops_s_usr_sys_time": 1003701.05, "cpu_used_per_instance": 4.84, "rss_max_kb": 2360, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 705241, "real_time_secs": 8.01, "usr_time_secs": 0.09, "sys_time_secs": 0.49, "bogo_ops_s_real_time": 88047.96, "bogo_ops_s_usr_sys_time": 1219819.36, "cpu_used_per_instance": 3.61, "rss_max_kb": 2300, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 3787471, "real_time_secs": 8.0, "usr_time_secs": 0.39, "sys_time_secs": 0.91, "bogo_ops_s_real_time": 473331.29, "bogo_ops_s_usr_sys_time": 2926914.29, "cpu_used_per_instance": 8.09, "rss_max_kb": 2920, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 1186300, "real_time_secs": 8.01, "usr_time_secs": 0.09, "sys_time_secs": 0.44, "bogo_ops_s_real_time": 148152.11, "bogo_ops_s_usr_sys_time": 2235753.97, "cpu_used_per_instance": 3.31, "rss_max_kb": 2172, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 229, "real_time_secs": 8.02, "usr_time_secs": 0.07, "sys_time_secs": 0.67, "bogo_ops_s_real_time": 28.56, "bogo_ops_s_usr_sys_time": 312.23, "cpu_used_per_instance": 4.57, "rss_max_kb": 132824, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 262, "real_time_secs": 8.03, "usr_time_secs": 0.04, "sys_time_secs": 0.33, "bogo_ops_s_real_time": 32.62, "bogo_ops_s_usr_sys_time": 706.55, "cpu_used_per_instance": 2.31, "rss_max_kb": 34784, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 3709736, "real_time_secs": 8.03, "usr_time_secs": 1.48, "sys_time_secs": 0.0, "bogo_ops_s_real_time": 461897.28, "bogo_ops_s_usr_sys_time": 2497788.86, "cpu_used_per_instance": 9.25, "rss_max_kb": 2172, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 3203696, "real_time_secs": 8.02, "usr_time_secs": 0.25, "sys_time_secs": 1.76, "bogo_ops_s_real_time": 399609.49, "bogo_ops_s_usr_sys_time": 1596764.7, "cpu_used_per_instance": 12.51, "rss_max_kb": 2044, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 35057, "real_time_secs": 8.01, "usr_time_secs": 0.32, "sys_time_secs": 0.96, "bogo_ops_s_real_time": 4376.08, "bogo_ops_s_usr_sys_time": 27354.34, "cpu_used_per_instance": 8.0, "rss_max_kb": 2044, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1323724, "real_time_secs": 8.03, "usr_time_secs": 1.57, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 164905.76, "bogo_ops_s_usr_sys_time": 837150.41, "cpu_used_per_instance": 9.85, "rss_max_kb": 2044, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 15936704, "real_time_secs": 8.01, "usr_time_secs": 2.01, "sys_time_secs": 17.6, "bogo_ops_s_real_time": 1989091.63, "bogo_ops_s_usr_sys_time": 812976.98, "cpu_used_per_instance": 122.33, "rss_max_kb": 2044, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 1720532, "real_time_secs": 8.02, "usr_time_secs": 0.25, "sys_time_secs": 0.59, "bogo_ops_s_real_time": 214585.0, "bogo_ops_s_usr_sys_time": 2049362.45, "cpu_used_per_instance": 5.24, "rss_max_kb": 2044, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 26, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:29:29.255715 2026-07-20 19:08:00.987045 +1145 49 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 3 --syscall-method all --mq 3 --pipe 3 --sem 3 --sem-sysv 3 --shm 3 --shm-sysv 3 --verify --dekker 3 --fifo 3 --futex 3 --peterson 3 --pipeherd 3 --sigq 3 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 136.36}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 2069, "real_time_secs": 8.02, "usr_time_secs": 0.07, "sys_time_secs": 0.96, "bogo_ops_s_real_time": 258.07, "bogo_ops_s_usr_sys_time": 2006.67, "cpu_used_per_instance": 4.29, "rss_max_kb": 2280, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 763810, "real_time_secs": 8.01, "usr_time_secs": 0.19, "sys_time_secs": 0.57, "bogo_ops_s_real_time": 95301.78, "bogo_ops_s_usr_sys_time": 1000182.02, "cpu_used_per_instance": 3.18, "rss_max_kb": 2248, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 725234, "real_time_secs": 8.01, "usr_time_secs": 0.09, "sys_time_secs": 0.53, "bogo_ops_s_real_time": 90495.04, "bogo_ops_s_usr_sys_time": 1174928.47, "cpu_used_per_instance": 2.57, "rss_max_kb": 2376, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 4599782, "real_time_secs": 8.01, "usr_time_secs": 0.37, "sys_time_secs": 1.08, "bogo_ops_s_real_time": 574592.11, "bogo_ops_s_usr_sys_time": 3169284.32, "cpu_used_per_instance": 6.04, "rss_max_kb": 2740, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 655649, "real_time_secs": 8.04, "usr_time_secs": 0.06, "sys_time_secs": 0.28, "bogo_ops_s_real_time": 81556.39, "bogo_ops_s_usr_sys_time": 1964144.17, "cpu_used_per_instance": 1.38, "rss_max_kb": 2120, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 406, "real_time_secs": 8.03, "usr_time_secs": 0.08, "sys_time_secs": 0.81, "bogo_ops_s_real_time": 50.58, "bogo_ops_s_usr_sys_time": 455.59, "cpu_used_per_instance": 3.7, "rss_max_kb": 89152, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 157, "real_time_secs": 8.01, "usr_time_secs": 0.04, "sys_time_secs": 0.26, "bogo_ops_s_real_time": 19.59, "bogo_ops_s_usr_sys_time": 529.86, "cpu_used_per_instance": 1.23, "rss_max_kb": 18468, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 4403923, "real_time_secs": 8.04, "usr_time_secs": 1.78, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 548038.73, "bogo_ops_s_usr_sys_time": 2460974.1, "cpu_used_per_instance": 7.42, "rss_max_kb": 2120, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 3628113, "real_time_secs": 8.03, "usr_time_secs": 0.31, "sys_time_secs": 1.96, "bogo_ops_s_real_time": 451830.74, "bogo_ops_s_usr_sys_time": 1597252.62, "cpu_used_per_instance": 9.43, "rss_max_kb": 2120, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 51994, "real_time_secs": 8.0, "usr_time_secs": 0.38, "sys_time_secs": 1.24, "bogo_ops_s_real_time": 6499.04, "bogo_ops_s_usr_sys_time": 32113.77, "cpu_used_per_instance": 6.75, "rss_max_kb": 2120, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 936913, "real_time_secs": 8.02, "usr_time_secs": 1.68, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 116847.03, "bogo_ops_s_usr_sys_time": 553618.2, "cpu_used_per_instance": 7.04, "rss_max_kb": 2120, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 25700073, "real_time_secs": 8.03, "usr_time_secs": 2.43, "sys_time_secs": 15.99, "bogo_ops_s_real_time": 3201080.41, "bogo_ops_s_usr_sys_time": 1394892.29, "cpu_used_per_instance": 76.5, "rss_max_kb": 2120, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 1876558, "real_time_secs": 8.02, "usr_time_secs": 0.28, "sys_time_secs": 0.63, "bogo_ops_s_real_time": 234095.88, "bogo_ops_s_usr_sys_time": 2069373.99, "cpu_used_per_instance": 3.77, "rss_max_kb": 2120, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 39, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:29:37.471413 2026-07-20 19:08:00.987045 +1146 49 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 4 --syscall-method all --mq 4 --pipe 4 --sem 4 --sem-sysv 4 --shm 4 --shm-sysv 4 --verify --dekker 4 --fifo 4 --futex 4 --peterson 4 --pipeherd 4 --sigq 4 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 136.75}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 2092, "real_time_secs": 8.03, "usr_time_secs": 0.06, "sys_time_secs": 1.08, "bogo_ops_s_real_time": 260.37, "bogo_ops_s_usr_sys_time": 1824.69, "cpu_used_per_instance": 3.57, "rss_max_kb": 2160, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 670638, "real_time_secs": 8.03, "usr_time_secs": 0.19, "sys_time_secs": 0.52, "bogo_ops_s_real_time": 83489.92, "bogo_ops_s_usr_sys_time": 949796.48, "cpu_used_per_instance": 2.2, "rss_max_kb": 2320, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 803363, "real_time_secs": 8.04, "usr_time_secs": 0.13, "sys_time_secs": 0.59, "bogo_ops_s_real_time": 99946.45, "bogo_ops_s_usr_sys_time": 1120613.03, "cpu_used_per_instance": 2.23, "rss_max_kb": 2320, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 3127450, "real_time_secs": 8.0, "usr_time_secs": 0.46, "sys_time_secs": 1.02, "bogo_ops_s_real_time": 390875.2, "bogo_ops_s_usr_sys_time": 2113294.68, "cpu_used_per_instance": 4.62, "rss_max_kb": 2872, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 985500, "real_time_secs": 8.04, "usr_time_secs": 0.08, "sys_time_secs": 0.38, "bogo_ops_s_real_time": 122571.11, "bogo_ops_s_usr_sys_time": 2140093.03, "cpu_used_per_instance": 1.43, "rss_max_kb": 2064, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 564, "real_time_secs": 8.04, "usr_time_secs": 0.08, "sys_time_secs": 0.87, "bogo_ops_s_real_time": 70.14, "bogo_ops_s_usr_sys_time": 594.5, "cpu_used_per_instance": 2.95, "rss_max_kb": 67348, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 174, "real_time_secs": 8.07, "usr_time_secs": 0.04, "sys_time_secs": 0.34, "bogo_ops_s_real_time": 21.56, "bogo_ops_s_usr_sys_time": 457.86, "cpu_used_per_instance": 1.18, "rss_max_kb": 18496, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 5219572, "real_time_secs": 8.05, "usr_time_secs": 2.08, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 648034.38, "bogo_ops_s_usr_sys_time": 2495510.34, "cpu_used_per_instance": 6.49, "rss_max_kb": 2064, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 3653826, "real_time_secs": 8.04, "usr_time_secs": 0.32, "sys_time_secs": 2.0, "bogo_ops_s_real_time": 454469.53, "bogo_ops_s_usr_sys_time": 1577235.11, "cpu_used_per_instance": 7.2, "rss_max_kb": 2064, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 32598, "real_time_secs": 8.02, "usr_time_secs": 0.4, "sys_time_secs": 1.27, "bogo_ops_s_real_time": 4066.23, "bogo_ops_s_usr_sys_time": 19501.21, "cpu_used_per_instance": 5.21, "rss_max_kb": 2064, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 896817, "real_time_secs": 8.03, "usr_time_secs": 1.96, "sys_time_secs": 0.02, "bogo_ops_s_real_time": 111731.96, "bogo_ops_s_usr_sys_time": 454367.53, "cpu_used_per_instance": 6.15, "rss_max_kb": 2064, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 31134697, "real_time_secs": 8.05, "usr_time_secs": 2.69, "sys_time_secs": 14.62, "bogo_ops_s_real_time": 3867215.58, "bogo_ops_s_usr_sys_time": 1798586.45, "cpu_used_per_instance": 53.75, "rss_max_kb": 2064, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 2205594, "real_time_secs": 8.01, "usr_time_secs": 0.31, "sys_time_secs": 0.78, "bogo_ops_s_real_time": 275202.49, "bogo_ops_s_usr_sys_time": 2023454.74, "cpu_used_per_instance": 3.4, "rss_max_kb": 2064, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 52, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-20 20:29:45.685872 2026-07-20 19:08:00.987045 +1147 49 observer sudo /usr/bin/systemctl --failed --no-legend [] failed systemd services 2026-07-20 20:29:54.306245 2026-07-20 20:29:54.306248 +1148 49 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-20 20:29:20' --until '2026-07-20 20:29:54' 0 OOM records 2026-07-20 20:29:20.72783 2026-07-20 20:29:54.001197 +1149 49 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-20 20:29:20' --until '2026-07-20 20:29:54' 0 systemd errors records 2026-07-20 20:29:20.72783 2026-07-20 20:29:54.001197 +1159 50 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 60% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 11.57}, "metrics": {"0": {"bogo_ops": 2613, "real_time_secs": 11.01, "usr_time_secs": 0.15, "sys_time_secs": 0.41, "bogo_ops_s_real_time": 237.36, "bogo_ops_s_usr_sys_time": 4661.08, "cpu_used_per_instance": 1.27, "rss_max_kb": 2100, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 13:30:57.886864 2026-07-22 13:08:41.236732 +1160 50 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 70% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 11.63}, "metrics": {"0": {"bogo_ops": 2923, "real_time_secs": 11.01, "usr_time_secs": 0.13, "sys_time_secs": 0.49, "bogo_ops_s_real_time": 265.45, "bogo_ops_s_usr_sys_time": 4693.53, "cpu_used_per_instance": 1.41, "rss_max_kb": 1972, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 13:31:09.107353 2026-07-22 13:08:41.236732 +1161 50 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 80% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 11.68}, "metrics": {"0": {"bogo_ops": 3121, "real_time_secs": 11.01, "usr_time_secs": 0.16, "sys_time_secs": 0.51, "bogo_ops_s_real_time": 283.47, "bogo_ops_s_usr_sys_time": 4665.47, "cpu_used_per_instance": 1.52, "rss_max_kb": 2100, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 13:31:20.327122 2026-07-22 13:08:41.236732 +1162 50 loader /usr/bin/stress-ng --timeout 11 --cpu-method all --vm-method all --hdd 0 --hdd-bytes 90% --hdd-opts sync --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "hdd"}, "time": {"duration_sec": 11.68}, "metrics": {"0": {"bogo_ops": 3235, "real_time_secs": 11.01, "usr_time_secs": 0.17, "sys_time_secs": 0.5, "bogo_ops_s_real_time": 293.9, "bogo_ops_s_usr_sys_time": 4782.13, "cpu_used_per_instance": 1.54, "rss_max_kb": 2228, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 13:31:31.548973 2026-07-22 13:08:41.236732 +1163 50 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 13:31:43.082723 2026-07-22 13:31:43.082727 +1164 50 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 13:30:46' --until '2026-07-22 13:31:42' 1 OOM records 2026-07-22 13:30:46.522115 2026-07-22 13:31:42.771548 +1165 50 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 13:30:46' --until '2026-07-22 13:31:42' 0 systemd errors records 2026-07-22 13:30:46.522115 2026-07-22 13:31:42.771548 +1166 50 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9554432, "io_kbytes": 9330, "bw_bytes": 1910504, "bw": 1865, "iops": 3731.453709, "runtime": 5001, "total_ios": 18661, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 8666, "max": 1818411, "mean": 179039.496651, "stddev": 40664.903184, "N": 18661}, "clat_ns": {"min": 952, "max": 4595250, "mean": 86907.678152, "stddev": 56969.298325, "N": 18661, "percentile": {"1.000000": 1096, "5.000000": 1112, "10.000000": 1144, "20.000000": 86528, "30.000000": 87552, "40.000000": 90624, "50.000000": 93696, "60.000000": 96768, "70.000000": 99840, "80.000000": 104960, "90.000000": 113152, "95.000000": 122368, "99.000000": 140288, "99.500000": 144384, "99.900000": 280576, "99.950000": 325632, "99.990000": 3883008}}, "lat_ns": {"min": 239390, "max": 4604116, "mean": 266392.912491, "stddev": 50401.216742, "N": 18661}, "bw_min": 1800, "bw_max": 1903, "bw_agg": 99.585868, "bw_mean": 1858.25, "bw_dev": 44.267181, "bw_samples": 4, "iops_min": 3601, "iops_max": 3806, "iops_mean": 3717.0, "iops_stddev": 88.041657, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.66, "sys_cpu": 63.44, "ctx": 18671, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.04287}, "latency_us": {"2": 12.437704, "4": 0.016076, "10": 0.010718, "20": 0.0, "50": 0.01, "100": 57.226301, "250": 30.143079, "500": 0.08574, "750": 0.01, "1000": 0.010718}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:31:45.044188 2026-07-22 13:08:41.236732 +1167 50 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 9763840, "io_kbytes": 9535, "bw_bytes": 1952377, "bw": 1906, "iops": 3813.237353, "runtime": 5001, "total_ios": 19070, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 153979, "max": 693260, "mean": 163886.308023, "stddev": 11501.273026, "N": 19070}, "clat_ns": {"min": 931, "max": 6593297, "mean": 96316.992554, "stddev": 219059.232912, "N": 19070, "percentile": {"1.000000": 67072, "5.000000": 75264, "10.000000": 76288, "20.000000": 77312, "30.000000": 77312, "40.000000": 78336, "50.000000": 79360, "60.000000": 80384, "70.000000": 83456, "80.000000": 90624, "90.000000": 99840, "95.000000": 109056, "99.000000": 354304, "99.500000": 675840, "99.900000": 5079040, "99.950000": 5537792, "99.990000": 6389760}}, "lat_ns": {"min": 228960, "max": 6755331, "mean": 260666.984531, "stddev": 219463.781749, "N": 19070}, "bw_min": 1857, "bw_max": 1944, "bw_agg": 99.86268, "bw_mean": 1904.75, "bw_dev": 41.668333, "bw_samples": 4, "iops_min": 3715, "iops_max": 3889, "iops_mean": 3810.0, "iops_stddev": 83.270643, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.6, "sys_cpu": 64.26, "ctx": 18957, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.057682}, "latency_us": {"2": 0.293655, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 89.984268, "250": 8.599895, "500": 0.409019, "750": 0.429995, "1000": 0.031463}, "latency_ms": {"2": 0.010488, "4": 0.041951, "10": 0.13634, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:31:52.066092 2026-07-22 13:08:41.236732 +1221 50 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 272MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260722-135553Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260722-135553Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260722-135553Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260722-135553Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260722-135553Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-22 13:56:15.328707 2026-07-22 13:08:41.236732 +1323 53 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:23:56' --until '2026-07-22 14:25:43' 0 systemd errors records 2026-07-22 14:23:56.689581 2026-07-22 14:25:43.134594 +1324 53 loader {"profiles_count": 12, "required_timeout_sec": 60, "provided_timeout_sec": 50} 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1325 53 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:25:44.820083 2026-07-22 14:25:44.820088 +1168 50 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 7237632, "io_kbytes": 7068, "bw_bytes": 1447236, "bw": 1413, "iops": 2826.634673, "runtime": 5001, "total_ios": 14136, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 153889, "max": 429777, "mean": 163730.690153, "stddev": 11154.542318, "N": 14136}, "clat_ns": {"min": 1202, "max": 9120367, "mean": 187843.853141, "stddev": 250422.132075, "N": 14136, "percentile": {"1.000000": 71168, "5.000000": 74240, "10.000000": 76288, "20.000000": 79360, "30.000000": 85504, "40.000000": 89600, "50.000000": 92672, "60.000000": 98816, "70.000000": 128512, "80.000000": 391168, "90.000000": 399360, "95.000000": 411648, "99.000000": 456704, "99.500000": 757760, "99.900000": 3424256, "99.950000": 5668864, "99.990000": 8093696}}, "lat_ns": {"min": 228068, "max": 9350469, "mean": 351992.830645, "stddev": 251717.047244, "N": 14136}, "bw_min": 1350, "bw_max": 1443, "bw_agg": 99.69459, "bw_mean": 1409.0, "bw_dev": 40.669399, "bw_samples": 4, "iops_min": 2700, "iops_max": 2886, "iops_mean": 2818.25, "iops_stddev": 81.463182, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.26, "sys_cpu": 46.92, "ctx": 14141, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.021222, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 61.644029, "250": 9.656197, "500": 27.928693, "750": 0.247595, "1000": 0.113186}, "latency_ms": {"2": 0.191002, "4": 0.113186, "10": 0.08489, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:33:05.860137 2026-07-22 13:08:41.236732 +1169 50 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7618048, "io_kbytes": 7439, "bw_bytes": 1523304, "bw": 1487, "iops": 2975.204959, "runtime": 5001, "total_ios": 14879, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 158928, "max": 157780361, "mean": 330719.005444, "stddev": 1406252.925429, "N": 14879}, "clat_ns": {"min": 722, "max": 145493, "mean": 3122.603938, "stddev": 14293.619611, "N": 14879, "percentile": {"1.000000": 996, "5.000000": 1032, "10.000000": 1112, "20.000000": 1128, "30.000000": 1144, "40.000000": 1160, "50.000000": 1160, "60.000000": 1160, "70.000000": 1176, "80.000000": 1176, "90.000000": 1208, "95.000000": 1368, "99.000000": 104960, "99.500000": 114176, "99.900000": 132096, "99.950000": 138240, "99.990000": 140288}}, "lat_ns": {"min": 241594, "max": 157787865, "mean": 334272.262988, "stddev": 1406189.839781, "N": 14879}, "bw_min": 1042, "bw_max": 1624, "bw_agg": 98.74956, "bw_mean": 1469.25, "bw_dev": 285.0326, "bw_samples": 4, "iops_min": 2084, "iops_max": 3248, "iops_mean": 2938.75, "iops_stddev": 570.215968, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.34, "sys_cpu": 63.68, "ctx": 14923, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.020163, "1000": 1.001411}, "latency_us": {"2": 96.357282, "4": 0.168022, "10": 0.551112, "20": 0.120976, "50": 0.01, "100": 0.497345, "250": 1.276968, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:33:47.758942 2026-07-22 13:08:41.236732 +1170 50 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 71118848, "io_kbytes": 69452, "bw_bytes": 14220925, "bw": 13887, "iops": 3471.905619, "runtime": 5001, "total_ios": 17363, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 156242, "max": 549431, "mean": 165357.162357, "stddev": 9608.095383, "N": 17363}, "clat_ns": {"min": 1222, "max": 4257145, "mean": 120658.798134, "stddev": 112258.093813, "N": 17363, "percentile": {"1.000000": 95744, "5.000000": 102912, "10.000000": 103936, "20.000000": 105984, "30.000000": 107008, "40.000000": 109056, "50.000000": 111104, "60.000000": 114176, "70.000000": 118272, "80.000000": 123392, "90.000000": 132096, "95.000000": 144384, "99.000000": 168960, "99.500000": 222208, "99.900000": 2408448, "99.950000": 2867200, "99.990000": 4112384}}, "lat_ns": {"min": 258585, "max": 4423196, "mean": 286418.553476, "stddev": 113223.044725, "N": 17363}, "bw_min": 13852, "bw_max": 14380, "bw_agg": 100.0, "bw_mean": 14158.0, "bw_dev": 247.27852, "bw_samples": 4, "iops_min": 3463, "iops_max": 3595, "iops_mean": 3539.5, "iops_stddev": 61.81963, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.06, "sys_cpu": 58.54, "ctx": 17372, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 2.384381, "250": 97.281576, "500": 0.115187, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.080631, "4": 0.115187, "10": 0.011519, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:33:53.773574 2026-07-22 13:08:41.236732 +1171 50 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 63025152, "io_kbytes": 61548, "bw_bytes": 12602509, "bw": 12307, "iops": 3076.784643, "runtime": 5001, "total_ios": 15387, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 8516, "max": 605385, "mean": 165754.825047, "stddev": 19176.275992, "N": 15387}, "clat_ns": {"min": 1123, "max": 8171676, "mean": 157215.375317, "stddev": 494663.923459, "N": 15387, "percentile": {"1.000000": 66048, "5.000000": 75264, "10.000000": 76288, "20.000000": 77312, "30.000000": 79360, "40.000000": 81408, "50.000000": 84480, "60.000000": 88576, "70.000000": 93696, "80.000000": 101888, "90.000000": 126464, "95.000000": 366592, "99.000000": 1908736, "99.500000": 3850240, "99.900000": 7634944, "99.950000": 7766016, "99.990000": 7897088}}, "lat_ns": {"min": 227396, "max": 8329412, "mean": 323416.915708, "stddev": 495348.373524, "N": 15387}, "bw_min": 9100, "bw_max": 14340, "bw_agg": 93.124821, "bw_mean": 11461.0, "bw_dev": 2552.661095, "bw_samples": 4, "iops_min": 2275, "iops_max": 3585, "iops_mean": 2865.25, "iops_stddev": 638.165274, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.58, "sys_cpu": 52.34, "ctx": 15394, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.012998, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.01, "100": 78.481835, "250": 15.812049, "500": 2.151167, "750": 1.904205, "1000": 0.318451}, "latency_ms": {"2": 0.506921, "4": 0.32495, "10": 0.480925, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:33:59.793873 2026-07-22 13:08:41.236732 +1222 50 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 272MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260722-135553Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260722-135553Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260722-135553Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260722-135553Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260722-135553Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-22 13:56:24.185591 2026-07-22 13:08:41.236732 +1326 53 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:25:44' --until '2026-07-22 14:25:44' 0 OOM records 2026-07-22 14:25:44.368146 2026-07-22 14:25:44.371847 +1172 50 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 34820096, "io_kbytes": 34004, "bw_bytes": 6962626, "bw": 6799, "iops": 1699.860028, "runtime": 5001, "total_ios": 8501, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 151755, "max": 423344, "mean": 178435.741325, "stddev": 36321.235393, "N": 8501}, "clat_ns": {"min": 1242, "max": 11200780, "mean": 407295.340195, "stddev": 1182027.233024, "N": 8501, "percentile": {"1.000000": 72192, "5.000000": 76288, "10.000000": 78336, "20.000000": 85504, "30.000000": 90624, "40.000000": 94720, "50.000000": 102912, "60.000000": 128512, "70.000000": 228352, "80.000000": 395264, "90.000000": 415744, "95.000000": 823296, "99.000000": 7569408, "99.500000": 9109504, "99.900000": 9895936, "99.950000": 10551296, "99.990000": 11206656}}, "lat_ns": {"min": 227838, "max": 11522784, "mean": 586192.513351, "stddev": 1194269.375599, "N": 8501}, "bw_min": 1784, "bw_max": 10092, "bw_agg": 82.433266, "bw_mean": 5605.0, "bw_dev": 3441.810957, "bw_samples": 4, "iops_min": 446, "iops_max": 2523, "iops_mean": 1401.25, "iops_stddev": 860.452739, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.72, "sys_cpu": 31.7, "ctx": 8504, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.011763, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 47.570874, "250": 23.585461, "500": 22.032702, "750": 1.599812, "1000": 0.670509}, "latency_ms": {"2": 0.835196, "4": 0.999882, "10": 2.611457, "20": 0.082343, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:34:41.055845 2026-07-22 13:08:41.236732 +1173 50 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 64733184, "io_kbytes": 63216, "bw_bytes": 12944047, "bw": 12640, "iops": 3160.167966, "runtime": 5001, "total_ios": 15804, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 10610, "max": 446307, "mean": 168585.58346, "stddev": 9474.518791, "N": 15804}, "clat_ns": {"min": 94527, "max": 7697938, "mean": 145607.461339, "stddev": 71500.849923, "N": 15804, "percentile": {"1.000000": 108032, "5.000000": 115200, "10.000000": 119296, "20.000000": 126464, "30.000000": 132096, "40.000000": 138240, "50.000000": 142336, "60.000000": 148480, "70.000000": 154624, "80.000000": 160768, "90.000000": 171008, "95.000000": 181248, "99.000000": 201728, "99.500000": 214016, "99.900000": 305152, "99.950000": 528384, "99.990000": 3686400}}, "lat_ns": {"min": 261571, "max": 7864340, "mean": 314589.014174, "stddev": 72544.236081, "N": 15804}, "bw_min": 12120, "bw_max": 13052, "bw_agg": 100.0, "bw_mean": 12691.0, "bw_dev": 399.671532, "bw_samples": 4, "iops_min": 3030, "iops_max": 3263, "iops_mean": 3172.75, "iops_stddev": 99.917883, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.8, "sys_cpu": 53.74, "ctx": 15815, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.063275, "250": 99.740572, "500": 0.145533, "750": 0.012655, "1000": 0.018983}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:35:21.820974 2026-07-22 13:08:41.236732 +1174 50 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 10.42}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 436207616, "io_kbytes": 425984, "bw_bytes": 41846471, "bw": 40865, "iops": 19.953952, "runtime": 10424, "total_ios": 208, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 961243, "max": 170861867, "mean": 4019959.600962, "stddev": 17339729.333525, "N": 208}, "clat_ns": {"min": 267001, "max": 7947737841, "mean": 46090887.25, "stddev": 551327089.478098, "N": 208, "percentile": {"1.000000": 268288, "5.000000": 280576, "10.000000": 288768, "20.000000": 325632, "30.000000": 350208, "40.000000": 370688, "50.000000": 382976, "60.000000": 419840, "70.000000": 448512, "80.000000": 505856, "90.000000": 19005440, "95.000000": 42205184, "99.000000": 168820736, "99.500000": 191889408, "99.900000": 7952400384, "99.950000": 7952400384, "99.990000": 7952400384}}, "lat_ns": {"min": 1256136, "max": 8016972902, "mean": 50111624.067308, "stddev": 556169278.66074, "N": 208}, "bw_min": 18432, "bw_max": 364544, "bw_agg": 100.0, "bw_mean": 141312.0, "bw_dev": 193652.451738, "bw_samples": 3, "iops_min": 9, "iops_max": 178, "iops_mean": 69.0, "iops_stddev": 94.556861, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.23026, "sys_cpu": 0.815504, "ctx": 625, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 79.326923, "750": 10.096154, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 1.923077, "50": 4.326923, "100": 0.480769, "250": 3.365385, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.480769}}} 2026-07-22 13:35:27.836255 2026-07-22 13:08:41.236732 +1175 50 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.03}, "metrics": {"read": {"io_bytes": 253755392, "io_kbytes": 247808, "bw_bytes": 50478494, "bw": 49295, "iops": 24.070022, "runtime": 5027, "total_ios": 121, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1828430, "max": 45050439, "mean": 23037414.446281, "stddev": 11520389.9013, "N": 121}, "clat_ns": {"min": 567084, "max": 32341141, "mean": 18492717.231405, "stddev": 9074546.869687, "N": 121, "percentile": {"1.000000": 724992, "5.000000": 798720, "10.000000": 2506752, "20.000000": 13303808, "30.000000": 14221312, "40.000000": 16711680, "50.000000": 21626880, "60.000000": 21889024, "70.000000": 23986176, "80.000000": 26345472, "90.000000": 28966912, "95.000000": 29491200, "99.000000": 32112640, "99.500000": 32374784, "99.900000": 32374784, "99.950000": 32374784, "99.990000": 32374784}}, "lat_ns": {"min": 10711371, "max": 74031728, "mean": 41531556.595041, "stddev": 17185377.621681, "N": 121}, "bw_min": 28643, "bw_max": 77824, "bw_agg": 99.678663, "bw_mean": 49137.0, "bw_dev": 18328.55548, "bw_samples": 5, "iops_min": 13, "iops_max": 38, "iops_mean": 23.6, "iops_stddev": 9.289779, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.179069, "sys_cpu": 1.750895, "ctx": 485, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 3.305785, "1000": 4.958678}, "latency_ms": {"2": 1.652893, "4": 4.958678, "10": 3.305785, "20": 23.966942, "50": 57.85124, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:35:39.366523 2026-07-22 13:08:41.236732 +1223 50 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 272MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260722-135553Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260722-135553Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260722-135553Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260722-135553Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260722-135553Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-22 13:56:27.740495 2026-07-22 13:08:41.236732 +1327 53 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:25:44' --until '2026-07-22 14:25:44' 0 systemd errors records 2026-07-22 14:25:44.368146 2026-07-22 14:25:44.371847 +1328 53 loader /usr/bin/stress-ng --timeout 45 --cpu-method all --vm-method all --sock 0 --netdev 0 --udp-flood 0 --syscall-method all --verify --metrics --maximize --seed 1592594996 & /usr/bin/iperf3 --time 45 --port 5201 --client 10.5.0.13 --interval 1 --version4 --json {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 301.69}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 79701, "real_time_secs": 45.0, "usr_time_secs": 6.6, "sys_time_secs": 69.54, "bogo_ops_s_real_time": 1771.0, "bogo_ops_s_usr_sys_time": 1046.8, "cpu_used_per_instance": 42.3, "rss_max_kb": 3552, "top10_slowest": null}, "1": {"stressor": "netdev", "bogo_ops": 13753218, "real_time_secs": 45.0, "usr_time_secs": 7.66, "sys_time_secs": 38.69, "bogo_ops_s_real_time": 305611.81, "bogo_ops_s_usr_sys_time": 296730.4, "cpu_used_per_instance": 25.75, "rss_max_kb": 1888, "top10_slowest": null}, "2": {"stressor": "udp-flood", "bogo_ops": 16580322, "real_time_secs": 45.0, "usr_time_secs": 2.68, "sys_time_secs": 41.52, "bogo_ops_s_real_time": 368438.96, "bogo_ops_s_usr_sys_time": 375151.39, "cpu_used_per_instance": 24.55, "rss_max_kb": 1888, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 12, "failed": -1, "metrics_untrustworthy": -1}}, "iperf3": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 45018, "remote_host": "10.5.0.13", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux 7d4f7032471a 6.17.0-40-generic #40~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Jun 23 16:48:12 UTC 2 x86_64", "timestamp": {"time": "Wed, 22 Jul 2026 14:25:49 GMT", "timesecs": 1784730349}, "connecting_to": {"host": "10.5.0.13", "port": 5201}, "cookie": "s6sj7q6zipmbcbalkkaa6jsmqnsjwgzkon6z", "tcp_mss_default": 1448, "target_bitrate": 0, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 45, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001031, "seconds": 1.0010310411453247, "bytes": 163971072, "bits_per_second": 1310417481.6588569, "retransmits": 22, "snd_cwnd": 663184, "snd_wnd": 67584, "rtt": 221, "rttvar": 290, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.001031, "seconds": 1.0010310411453247, "bytes": 163971072, "bits_per_second": 1310417481.6588569, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.001031, "end": 2.000468, "seconds": 0.9994369745254517, "bytes": 124780544, "bits_per_second": 998806705.6194134, "retransmits": 15, "snd_cwnd": 663184, "snd_wnd": 133120, "rtt": 238, "rttvar": 256, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 1.001031, "end": 2.000468, "seconds": 0.9994369745254517, "bytes": 124780544, "bits_per_second": 998806705.6194134, "retransmits": 15, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.000468, "end": 3.001021, "seconds": 1.000553011894226, "bytes": 107741184, "bits_per_second": 861453078.201437, "retransmits": 18, "snd_cwnd": 663184, "snd_wnd": 0, "rtt": 219, "rttvar": 227, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 2.000468, "end": 3.001021, "seconds": 1.000553011894226, "bytes": 107741184, "bits_per_second": 861453078.201437, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.001021, "end": 4.000466, "seconds": 0.9994450211524963, "bytes": 109576192, "bits_per_second": 877096305.8969964, "retransmits": 18, "snd_cwnd": 663184, "snd_wnd": 242688, "rtt": 88, "rttvar": 103, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 3.001021, "end": 4.000466, "seconds": 0.9994450211524963, "bytes": 109576192, "bits_per_second": 877096305.8969964, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.000466, "end": 5.000476, "seconds": 1.0000100135803223, "bytes": 108658688, "bits_per_second": 869260799.5871624, "retransmits": 21, "snd_cwnd": 663184, "snd_wnd": 0, "rtt": 292, "rttvar": 200, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 4.000466, "end": 5.000476, "seconds": 1.0000100135803223, "bytes": 108658688, "bits_per_second": 869260799.5871624, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.000476, "end": 6.001035, "seconds": 1.0005589723587036, "bytes": 122683392, "bits_per_second": 980918829.4881842, "retransmits": 19, "snd_cwnd": 663184, "snd_wnd": 0, "rtt": 606, "rttvar": 654, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 5.000476, "end": 6.001035, "seconds": 1.0005589723587036, "bytes": 122683392, "bits_per_second": 980918829.4881842, "retransmits": 19, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.001035, "end": 7.001049, "seconds": 1.0000139474868774, "bytes": 118620160, "bits_per_second": 948948044.5596012, "retransmits": 22, "snd_cwnd": 663184, "snd_wnd": 0, "rtt": 244, "rttvar": 204, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 6.001035, "end": 7.001049, "seconds": 1.0000139474868774, "bytes": 118620160, "bits_per_second": 948948044.5596012, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.001049, "end": 8.001038, "seconds": 0.9999889731407166, "bytes": 102629376, "bits_per_second": 821044061.537332, "retransmits": 24, "snd_cwnd": 663184, "snd_wnd": 0, "rtt": 578, "rttvar": 600, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 7.001049, "end": 8.001038, "seconds": 0.9999889731407166, "bytes": 102629376, "bits_per_second": 821044061.537332, "retransmits": 24, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.001038, "end": 9.000453, "seconds": 0.9994149804115295, "bytes": 119668736, "bits_per_second": 957910284.2803013, "retransmits": 21, "snd_cwnd": 663184, "snd_wnd": 0, "rtt": 694, "rttvar": 956, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 8.001038, "end": 9.000453, "seconds": 0.9994149804115295, "bytes": 119668736, "bits_per_second": 957910284.2803013, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.000453, "end": 10.000456, "seconds": 1.0000029802322388, "bytes": 115474432, "bits_per_second": 923792702.883205, "retransmits": 17, "snd_cwnd": 663184, "snd_wnd": 67584, "rtt": 271, "rttvar": 227, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 9.000453, "end": 10.000456, "seconds": 1.0000029802322388, "bytes": 115474432, "bits_per_second": 923792702.883205, "retransmits": 17, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.000456, "end": 11.00047, "seconds": 1.0000139474868774, "bytes": 105512960, "bits_per_second": 844091907.039203, "retransmits": 18, "snd_cwnd": 663184, "snd_wnd": 2048, "rtt": 356, "rttvar": 405, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 10.000456, "end": 11.00047, "seconds": 1.0000139474868774, "bytes": 105512960, "bits_per_second": 844091907.039203, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.00047, "end": 12.001022, "seconds": 1.00055205821991, "bytes": 123863040, "bits_per_second": 990357584.954576, "retransmits": 17, "snd_cwnd": 663184, "snd_wnd": 0, "rtt": 221, "rttvar": 296, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 11.00047, "end": 12.001022, "seconds": 1.00055205821991, "bytes": 123863040, "bits_per_second": 990357584.954576, "retransmits": 17, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.001022, "end": 13.000448, "seconds": 0.999426007270813, "bytes": 105512960, "bits_per_second": 844588467.6395804, "retransmits": 26, "snd_cwnd": 663184, "snd_wnd": 133120, "rtt": 281, "rttvar": 229, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 12.001022, "end": 13.000448, "seconds": 0.999426007270813, "bytes": 105512960, "bits_per_second": 844588467.6395804, "retransmits": 26, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.000448, "end": 14.001039, "seconds": 1.0005910396575928, "bytes": 112328704, "bits_per_second": 898098819.980954, "retransmits": 20, "snd_cwnd": 663184, "snd_wnd": 67584, "rtt": 249, "rttvar": 254, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 13.000448, "end": 14.001039, "seconds": 1.0005910396575928, "bytes": 112328704, "bits_per_second": 898098819.980954, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.001039, "end": 15.001024, "seconds": 0.9999849796295166, "bytes": 109707264, "bits_per_second": 877671294.9480127, "retransmits": 23, "snd_cwnd": 463360, "snd_wnd": 0, "rtt": 440, "rttvar": 436, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 14.001039, "end": 15.001024, "seconds": 0.9999849796295166, "bytes": 109707264, "bits_per_second": 877671294.9480127, "retransmits": 23, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.001024, "end": 16.000453, "seconds": 0.9994289875030518, "bytes": 109051904, "bits_per_second": 872913676.618106, "retransmits": 17, "snd_cwnd": 463360, "snd_wnd": 0, "rtt": 642, "rttvar": 632, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 15.001024, "end": 16.000453, "seconds": 0.9994289875030518, "bytes": 109051904, "bits_per_second": 872913676.618106, "retransmits": 17, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.000453, "end": 17.000447, "seconds": 0.9999939799308777, "bytes": 129499136, "bits_per_second": 1035999324.7875459, "retransmits": 28, "snd_cwnd": 463360, "snd_wnd": 67584, "rtt": 380, "rttvar": 485, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 16.000453, "end": 17.000447, "seconds": 0.9999939799308777, "bytes": 129499136, "bits_per_second": 1035999324.7875459, "retransmits": 28, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.000447, "end": 18.000449, "seconds": 1.0000020265579224, "bytes": 129499136, "bits_per_second": 1035990988.5042547, "retransmits": 14, "snd_cwnd": 324352, "snd_wnd": 67584, "rtt": 369, "rttvar": 463, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 17.000447, "end": 18.000449, "seconds": 1.0000020265579224, "bytes": 129499136, "bits_per_second": 1035990988.5042547, "retransmits": 14, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.000449, "end": 19.000448, "seconds": 0.9999989867210388, "bytes": 117702656, "bits_per_second": 941622202.1259668, "retransmits": 18, "snd_cwnd": 324352, "snd_wnd": 67584, "rtt": 277, "rttvar": 321, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 18.000449, "end": 19.000448, "seconds": 0.9999989867210388, "bytes": 117702656, "bits_per_second": 941622202.1259668, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.000448, "end": 20.00045, "seconds": 1.0000020265579224, "bytes": 115867648, "bits_per_second": 926939305.503807, "retransmits": 23, "snd_cwnd": 324352, "snd_wnd": 67584, "rtt": 323, "rttvar": 354, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 19.000448, "end": 20.00045, "seconds": 1.0000020265579224, "bytes": 115867648, "bits_per_second": 926939305.503807, "retransmits": 23, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.00045, "end": 21.000458, "seconds": 1.0000079870224, "bytes": 120324096, "bits_per_second": 962585079.8114058, "retransmits": 21, "snd_cwnd": 324352, "snd_wnd": 67584, "rtt": 227, "rttvar": 288, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 20.00045, "end": 21.000458, "seconds": 1.0000079870224, "bytes": 120324096, "bits_per_second": 962585079.8114058, "retransmits": 21, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.000458, "end": 22.000472, "seconds": 1.0000139474868774, "bytes": 114032640, "bits_per_second": 912248396.427462, "retransmits": 27, "snd_cwnd": 324352, "snd_wnd": 0, "rtt": 850, "rttvar": 1254, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 21.000458, "end": 22.000472, "seconds": 1.0000139474868774, "bytes": 114032640, "bits_per_second": 912248396.427462, "retransmits": 27, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.000472, "end": 23.000539, "seconds": 1.0000669956207275, "bytes": 118226944, "bits_per_second": 945752190.7449266, "retransmits": 25, "snd_cwnd": 324352, "snd_wnd": 133120, "rtt": 1349, "rttvar": 1184, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 22.000472, "end": 23.000539, "seconds": 1.0000669956207275, "bytes": 118226944, "bits_per_second": 945752190.7449266, "retransmits": 25, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.000539, "end": 24.001024, "seconds": 1.0004849433898926, "bytes": 130154496, "bits_per_second": 1040731272.2488685, "retransmits": 17, "snd_cwnd": 324352, "snd_wnd": 0, "rtt": 575, "rttvar": 506, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 23.000539, "end": 24.001024, "seconds": 1.0004849433898926, "bytes": 130154496, "bits_per_second": 1040731272.2488685, "retransmits": 17, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.001024, "end": 25.000456, "seconds": 0.9994320273399353, "bytes": 117571584, "bits_per_second": 941107195.1570394, "retransmits": 17, "snd_cwnd": 324352, "snd_wnd": 0, "rtt": 454, "rttvar": 485, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 24.001024, "end": 25.000456, "seconds": 0.9994320273399353, "bytes": 117571584, "bits_per_second": 941107195.1570394, "retransmits": 17, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.000456, "end": 26.000859, "seconds": 1.0004030466079712, "bytes": 113377280, "bits_per_second": 906652816.6576387, "retransmits": 18, "snd_cwnd": 324352, "snd_wnd": 0, "rtt": 275, "rttvar": 360, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 25.000456, "end": 26.000859, "seconds": 1.0004030466079712, "bytes": 113377280, "bits_per_second": 906652816.6576387, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.000859, "end": 27.00048, "seconds": 0.9996209740638733, "bytes": 114425856, "bits_per_second": 915753942.495316, "retransmits": 17, "snd_cwnd": 324352, "snd_wnd": 67584, "rtt": 243, "rttvar": 235, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 26.000859, "end": 27.00048, "seconds": 0.9996209740638733, "bytes": 114425856, "bits_per_second": 915753942.495316, "retransmits": 17, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.00048, "end": 28.001041, "seconds": 1.000560998916626, "bytes": 119799808, "bits_per_second": 957861104.9578404, "retransmits": 22, "snd_cwnd": 324352, "snd_wnd": 67584, "rtt": 307, "rttvar": 322, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 27.00048, "end": 28.001041, "seconds": 1.000560998916626, "bytes": 119799808, "bits_per_second": 957861104.9578404, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.001041, "end": 29.001026, "seconds": 0.9999849796295166, "bytes": 110362624, "bits_per_second": 882914253.6991956, "retransmits": 24, "snd_cwnd": 324352, "snd_wnd": 242688, "rtt": 302, "rttvar": 274, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 28.001041, "end": 29.001026, "seconds": 0.9999849796295166, "bytes": 110362624, "bits_per_second": 882914253.6991956, "retransmits": 24, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.001026, "end": 30.001036, "seconds": 1.0000100135803223, "bytes": 121372672, "bits_per_second": 970971653.097361, "retransmits": 15, "snd_cwnd": 324352, "snd_wnd": 0, "rtt": 261, "rttvar": 201, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 29.001026, "end": 30.001036, "seconds": 1.0000100135803223, "bytes": 121372672, "bits_per_second": 970971653.097361, "retransmits": 15, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.001036, "end": 31.001028, "seconds": 0.9999920129776, "bytes": 103809024, "bits_per_second": 830478825.0529784, "retransmits": 20, "snd_cwnd": 324352, "snd_wnd": 0, "rtt": 1220, "rttvar": 1675, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 30.001036, "end": 31.001028, "seconds": 0.9999920129776, "bytes": 103809024, "bits_per_second": 830478825.0529784, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.001028, "end": 32.001028, "seconds": 1, "bytes": 116260864, "bits_per_second": 930086912, "retransmits": 16, "snd_cwnd": 324352, "snd_wnd": 0, "rtt": 172, "rttvar": 198, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 31.001028, "end": 32.001028, "seconds": 1, "bytes": 116260864, "bits_per_second": 930086912, "retransmits": 16, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.001028, "end": 33.001042, "seconds": 1.0000139474868774, "bytes": 114163712, "bits_per_second": 913296957.802666, "retransmits": 18, "snd_cwnd": 324352, "snd_wnd": 67584, "rtt": 382, "rttvar": 383, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 32.001028, "end": 33.001042, "seconds": 1.0000139474868774, "bytes": 114163712, "bits_per_second": 913296957.802666, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.001042, "end": 34.001035, "seconds": 0.9999930262565613, "bytes": 108396544, "bits_per_second": 867178399.4796736, "retransmits": 13, "snd_cwnd": 324352, "snd_wnd": 0, "rtt": 438, "rttvar": 503, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 33.001042, "end": 34.001035, "seconds": 0.9999930262565613, "bytes": 108396544, "bits_per_second": 867178399.4796736, "retransmits": 13, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.001035, "end": 35.000064, "seconds": 0.999028980731964, "bytes": 91488256, "bits_per_second": 732617433.6441675, "retransmits": 16, "snd_cwnd": 324352, "snd_wnd": 0, "rtt": 594, "rttvar": 711, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 34.001035, "end": 35.000064, "seconds": 0.999028980731964, "bytes": 91488256, "bits_per_second": 732617433.6441675, "retransmits": 16, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.000064, "end": 36.001023, "seconds": 1.000959038734436, "bytes": 93454336, "bits_per_second": 746918364.35712, "retransmits": 15, "snd_cwnd": 324352, "snd_wnd": 0, "rtt": 462, "rttvar": 513, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 35.000064, "end": 36.001023, "seconds": 1.000959038734436, "bytes": 93454336, "bits_per_second": 746918364.35712, "retransmits": 15, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.001023, "end": 37.000468, "seconds": 0.9994450211524963, "bytes": 103809024, "bits_per_second": 830933342.4287335, "retransmits": 22, "snd_cwnd": 246160, "snd_wnd": 0, "rtt": 290, "rttvar": 241, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 36.001023, "end": 37.000468, "seconds": 0.9994450211524963, "bytes": 103809024, "bits_per_second": 830933342.4287335, "retransmits": 22, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.000468, "end": 38.000468, "seconds": 1, "bytes": 109838336, "bits_per_second": 878706688, "retransmits": 20, "snd_cwnd": 251952, "snd_wnd": 67584, "rtt": 601, "rttvar": 730, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 37.000468, "end": 38.000468, "seconds": 1, "bytes": 109838336, "bits_per_second": 878706688, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.000468, "end": 39.001024, "seconds": 1.0005559921264648, "bytes": 105644032, "bits_per_second": 844682619.1144106, "retransmits": 20, "snd_cwnd": 251952, "snd_wnd": 0, "rtt": 124, "rttvar": 141, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 38.000468, "end": 39.001024, "seconds": 1.0005559921264648, "bytes": 105644032, "bits_per_second": 844682619.1144106, "retransmits": 20, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.001024, "end": 40.001025, "seconds": 1.0000009536743164, "bytes": 104988672, "bits_per_second": 839908575.000764, "retransmits": 17, "snd_cwnd": 251952, "snd_wnd": 0, "rtt": 840, "rttvar": 1061, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 39.001024, "end": 40.001025, "seconds": 1.0000009536743164, "bytes": 104988672, "bits_per_second": 839908575.000764, "retransmits": 17, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.001025, "end": 41.00103, "seconds": 1.0000050067901611, "bytes": 89653248, "bits_per_second": 717222393.0179793, "retransmits": 25, "snd_cwnd": 251952, "snd_wnd": 67584, "rtt": 217, "rttvar": 172, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 40.001025, "end": 41.00103, "seconds": 1.0000050067901611, "bytes": 89653248, "bits_per_second": 717222393.0179793, "retransmits": 25, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.00103, "end": 42.001045, "seconds": 1.0000150203704834, "bytes": 119668736, "bits_per_second": 957335508.465986, "retransmits": 18, "snd_cwnd": 251952, "snd_wnd": 67584, "rtt": 275, "rttvar": 223, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 41.00103, "end": 42.001045, "seconds": 1.0000150203704834, "bytes": 119668736, "bits_per_second": 957335508.465986, "retransmits": 18, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.001045, "end": 43.000466, "seconds": 0.999421000480652, "bytes": 133169152, "bits_per_second": 1065970412.3563937, "retransmits": 34, "snd_cwnd": 251952, "snd_wnd": 0, "rtt": 516, "rttvar": 448, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 42.001045, "end": 43.000466, "seconds": 0.999421000480652, "bytes": 133169152, "bits_per_second": 1065970412.3563937, "retransmits": 34, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.000466, "end": 44.001026, "seconds": 1.0005600452423096, "bytes": 127795200, "bits_per_second": 1021789351.7349182, "retransmits": 36, "snd_cwnd": 251952, "snd_wnd": 0, "rtt": 274, "rttvar": 214, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 43.000466, "end": 44.001026, "seconds": 1.0005600452423096, "bytes": 127795200, "bits_per_second": 1021789351.7349182, "retransmits": 36, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.001026, "end": 45.000935, "seconds": 0.999908983707428, "bytes": 150339584, "bits_per_second": 1202826148.77667, "retransmits": 31, "snd_cwnd": 251952, "snd_wnd": 2048, "rtt": 991, "rttvar": 1543, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 44.001026, "end": 45.000935, "seconds": 0.999908983707428, "bytes": 150339584, "bits_per_second": 1202826148.77667, "retransmits": 31, "omitted": false, "sender": true}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 45.000935, "seconds": 45.000935, "bytes": 5204475904, "bits_per_second": 925220936.6760936, "retransmits": 925, "max_snd_cwnd": 663184, "max_snd_wnd": 242688, "max_rtt": 1349, "min_rtt": 88, "mean_rtt": 427, "sender": true}, "receiver": {"socket": 5, "start": 0, "end": 44.998573, "seconds": 45.000935, "bytes": 5201068032, "bits_per_second": 924663638.911394, "sender": true}}], "sum_sent": {"start": 0, "end": 45.000935, "seconds": 45.000935, "bytes": 5204475904, "bits_per_second": 925220936.6760936, "retransmits": 925, "sender": true}, "sum_received": {"start": 0, "end": 44.998573, "seconds": 44.998573, "bytes": 5201068032, "bits_per_second": 924663638.911394, "sender": true}, "cpu_utilization_percent": {"host_total": 2.9541839789537634, "host_user": 0.07307338438175502, "host_system": 2.881110594572008, "remote_total": 23.37446395184791, "remote_user": 0.526132322413535, "remote_system": 22.84832940715072}, "sender_tcp_congestion": "cubic", "receiver_tcp_congestion": "cubic"}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 45018}], "version": "iperf 3.19.1", "system_info": "Linux localhost 6.4.0-150600.23.125-default #1 SMP PREEMPT_DYNAMIC Tue Jul 14 08:35:02 UTC 2026 (1f4f2bb) x86_64", "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "timestamp": {"time": "Wed, 22 Jul 2026 14:25:48 GMT", "timesecs": 1784730348}, "accepted_connection": {"host": "10.5.0.11", "port": 45002}, "cookie": "s6sj7q6zipmbcbalkkaa6jsmqnsjwgzkon6z", "tcp_mss_default": 0, "target_bitrate": 0, "fq_rate": 0, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 45, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.00112, "seconds": 1.0011199712753296, "bytes": 159645696, "bits_per_second": 1275736779.4521322, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.00112, "seconds": 1.0011199712753296, "bytes": 159645696, "bits_per_second": 1275736779.4521322, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.00112, "end": 2.001028, "seconds": 0.9999079704284668, "bytes": 125698048, "bits_per_second": 1005676936.0175226, "omitted": false, "sender": false}], "sum": {"start": 1.00112, "end": 2.001028, "seconds": 0.9999079704284668, "bytes": 125698048, "bits_per_second": 1005676936.0175226, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.001028, "end": 3.001031, "seconds": 1.0000029802322388, "bytes": 107216896, "bits_per_second": 857732611.7576182, "omitted": false, "sender": false}], "sum": {"start": 2.001028, "end": 3.001031, "seconds": 1.0000029802322388, "bytes": 107216896, "bits_per_second": 857732611.7576182, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.001031, "end": 4.001029, "seconds": 0.9999979734420776, "bytes": 110362624, "bits_per_second": 882902781.253626, "omitted": false, "sender": false}], "sum": {"start": 3.001031, "end": 4.001029, "seconds": 0.9999979734420776, "bytes": 110362624, "bits_per_second": 882902781.253626, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.001029, "end": 5.001028, "seconds": 0.9999989867210388, "bytes": 108265472, "bits_per_second": 866124653.6258893, "omitted": false, "sender": false}], "sum": {"start": 4.001029, "end": 5.001028, "seconds": 0.9999989867210388, "bytes": 108265472, "bits_per_second": 866124653.6258893, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.001028, "end": 6.001028, "seconds": 1, "bytes": 122421248, "bits_per_second": 979369984, "omitted": false, "sender": false}], "sum": {"start": 5.001028, "end": 6.001028, "seconds": 1, "bytes": 122421248, "bits_per_second": 979369984, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.001028, "end": 7.001202, "seconds": 1.0001740455627441, "bytes": 119013376, "bits_per_second": 951941326.8360714, "omitted": false, "sender": false}], "sum": {"start": 6.001028, "end": 7.001202, "seconds": 1.0001740455627441, "bytes": 119013376, "bits_per_second": 951941326.8360714, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.001202, "end": 8.001174, "seconds": 0.9999719858169556, "bytes": 103153664, "bits_per_second": 825252430.7726536, "omitted": false, "sender": false}], "sum": {"start": 7.001202, "end": 8.001174, "seconds": 0.9999719858169556, "bytes": 103153664, "bits_per_second": 825252430.7726536, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.001174, "end": 9.00125, "seconds": 1.0000760555267334, "bytes": 119275520, "bits_per_second": 954131593.01912, "omitted": false, "sender": false}], "sum": {"start": 8.001174, "end": 9.00125, "seconds": 1.0000760555267334, "bytes": 119275520, "bits_per_second": 954131593.01912, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.00125, "end": 10.001029, "seconds": 0.999778985977173, "bytes": 115736576, "bits_per_second": 926097288.487258, "omitted": false, "sender": false}], "sum": {"start": 9.00125, "end": 10.001029, "seconds": 0.999778985977173, "bytes": 115736576, "bits_per_second": 926097288.487258, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.001029, "end": 11.00103, "seconds": 1.0000009536743164, "bytes": 104726528, "bits_per_second": 837811425.000762, "omitted": false, "sender": false}], "sum": {"start": 10.001029, "end": 11.00103, "seconds": 1.0000009536743164, "bytes": 104726528, "bits_per_second": 837811425.000762, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.00103, "end": 12.001026, "seconds": 0.9999960064888, "bytes": 123600896, "bits_per_second": 988811116.8282697, "omitted": false, "sender": false}], "sum": {"start": 11.00103, "end": 12.001026, "seconds": 0.9999960064888, "bytes": 123600896, "bits_per_second": 988811116.8282697, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.001026, "end": 13.001328, "seconds": 1.0003019571304321, "bytes": 106037248, "bits_per_second": 848041911.6978575, "omitted": false, "sender": false}], "sum": {"start": 12.001026, "end": 13.001328, "seconds": 1.0003019571304321, "bytes": 106037248, "bits_per_second": 848041911.6978575, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.001328, "end": 14.00103, "seconds": 0.999701976776123, "bytes": 112328704, "bits_per_second": 898897524.3381382, "omitted": false, "sender": false}], "sum": {"start": 13.001328, "end": 14.00103, "seconds": 0.999701976776123, "bytes": 112328704, "bits_per_second": 898897524.3381382, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.00103, "end": 15.001027, "seconds": 0.9999970197677612, "bytes": 110362624, "bits_per_second": 882903623.2578417, "omitted": false, "sender": false}], "sum": {"start": 14.00103, "end": 15.001027, "seconds": 0.9999970197677612, "bytes": 110362624, "bits_per_second": 882903623.2578417, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.001027, "end": 16.001028, "seconds": 1.0000009536743164, "bytes": 108527616, "bits_per_second": 868220100.0007896, "omitted": false, "sender": false}], "sum": {"start": 15.001027, "end": 16.001028, "seconds": 1.0000009536743164, "bytes": 108527616, "bits_per_second": 868220100.0007896, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.001028, "end": 17.001033, "seconds": 1.0000050067901611, "bytes": 128581632, "bits_per_second": 1028647905.775786, "omitted": false, "sender": false}], "sum": {"start": 16.001028, "end": 17.001033, "seconds": 1.0000050067901611, "bytes": 128581632, "bits_per_second": 1028647905.775786, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.001033, "end": 18.001121, "seconds": 1.0000879764556885, "bytes": 129892352, "bits_per_second": 1039047404.292078, "omitted": false, "sender": false}], "sum": {"start": 17.001033, "end": 18.001121, "seconds": 1.0000879764556885, "bytes": 129892352, "bits_per_second": 1039047404.292078, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.001121, "end": 19.001031, "seconds": 0.999909996986389, "bytes": 117702656, "bits_per_second": 941706004.3783295, "omitted": false, "sender": false}], "sum": {"start": 18.001121, "end": 19.001031, "seconds": 0.999909996986389, "bytes": 117702656, "bits_per_second": 941706004.3783295, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.001031, "end": 20.001036, "seconds": 1.0000050067901611, "bytes": 116523008, "bits_per_second": 932179396.773368, "omitted": false, "sender": false}], "sum": {"start": 19.001031, "end": 20.001036, "seconds": 1.0000050067901611, "bytes": 116523008, "bits_per_second": 932179396.773368, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.001036, "end": 21.001027, "seconds": 0.999990999698639, "bytes": 120324096, "bits_per_second": 962601431.702976, "omitted": false, "sender": false}], "sum": {"start": 20.001036, "end": 21.001027, "seconds": 0.999990999698639, "bytes": 120324096, "bits_per_second": 962601431.702976, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.001027, "end": 22.001029, "seconds": 1.0000020265579224, "bytes": 114163712, "bits_per_second": 913307845.128751, "omitted": false, "sender": false}], "sum": {"start": 21.001027, "end": 22.001029, "seconds": 1.0000020265579224, "bytes": 114163712, "bits_per_second": 913307845.128751, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.001029, "end": 23.001032, "seconds": 1.0000029802322388, "bytes": 117440512, "bits_per_second": 939521296.0083447, "omitted": false, "sender": false}], "sum": {"start": 22.001029, "end": 23.001032, "seconds": 1.0000029802322388, "bytes": 117440512, "bits_per_second": 939521296.0083447, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.001032, "end": 24.001044, "seconds": 1.0000120401382446, "bytes": 130285568, "bits_per_second": 1042271994.9010929, "omitted": false, "sender": false}], "sum": {"start": 23.001032, "end": 24.001044, "seconds": 1.0000120401382446, "bytes": 130285568, "bits_per_second": 1042271994.9010929, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.001044, "end": 25.001024, "seconds": 0.9999799728393555, "bytes": 117964800, "bits_per_second": 943737300.378521, "omitted": false, "sender": false}], "sum": {"start": 24.001044, "end": 25.001024, "seconds": 0.9999799728393555, "bytes": 117964800, "bits_per_second": 943737300.378521, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.001024, "end": 26.001028, "seconds": 1.0000040531158447, "bytes": 113639424, "bits_per_second": 909111707.2649347, "omitted": false, "sender": false}], "sum": {"start": 25.001024, "end": 26.001028, "seconds": 1.0000040531158447, "bytes": 113639424, "bits_per_second": 909111707.2649347, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.001028, "end": 27.001031, "seconds": 1.0000029802322388, "bytes": 114556928, "bits_per_second": 916452692.7581397, "omitted": false, "sender": false}], "sum": {"start": 26.001028, "end": 27.001031, "seconds": 1.0000029802322388, "bytes": 114556928, "bits_per_second": 916452692.7581397, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.001031, "end": 28.001093, "seconds": 1.0000619888305664, "bytes": 120061952, "bits_per_second": 960436079.6905862, "omitted": false, "sender": false}], "sum": {"start": 27.001031, "end": 28.001093, "seconds": 1.0000619888305664, "bytes": 120061952, "bits_per_second": 960436079.6905862, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.001093, "end": 29.001043, "seconds": 0.9999499917030334, "bytes": 109445120, "bits_per_second": 875604747.5022384, "omitted": false, "sender": false}], "sum": {"start": 28.001093, "end": 29.001043, "seconds": 0.9999499917030334, "bytes": 109445120, "bits_per_second": 875604747.5022384, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.001043, "end": 30.001026, "seconds": 0.999983012676239, "bytes": 121503744, "bits_per_second": 972046464.4680027, "omitted": false, "sender": false}], "sum": {"start": 29.001043, "end": 30.001026, "seconds": 0.999983012676239, "bytes": 121503744, "bits_per_second": 972046464.4680027, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.001026, "end": 31.001028, "seconds": 1.0000020265579224, "bytes": 103677952, "bits_per_second": 829421935.1284064, "omitted": false, "sender": false}], "sum": {"start": 30.001026, "end": 31.001028, "seconds": 1.0000020265579224, "bytes": 103677952, "bits_per_second": 829421935.1284064, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.001028, "end": 32.001035, "seconds": 1.0000070333480835, "bytes": 116391936, "bits_per_second": 931128939.046061, "omitted": false, "sender": false}], "sum": {"start": 31.001028, "end": 32.001035, "seconds": 1.0000070333480835, "bytes": 116391936, "bits_per_second": 931128939.046061, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.001035, "end": 33.001028, "seconds": 0.9999930262565613, "bytes": 113901568, "bits_per_second": 911218898.6068153, "omitted": false, "sender": false}], "sum": {"start": 32.001035, "end": 33.001028, "seconds": 0.9999930262565613, "bytes": 113901568, "bits_per_second": 911218898.6068153, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.001028, "end": 34.001028, "seconds": 1, "bytes": 108658688, "bits_per_second": 869269504, "omitted": false, "sender": false}], "sum": {"start": 33.001028, "end": 34.001028, "seconds": 1, "bytes": 108658688, "bits_per_second": 869269504, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.001028, "end": 35.001032, "seconds": 1.0000040531158447, "bytes": 91750400, "bits_per_second": 734000225.012058, "omitted": false, "sender": false}], "sum": {"start": 34.001028, "end": 35.001032, "seconds": 1.0000040531158447, "bytes": 91750400, "bits_per_second": 734000225.012058, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.001032, "end": 36.001032, "seconds": 1, "bytes": 94371840, "bits_per_second": 754974720, "omitted": false, "sender": false}], "sum": {"start": 35.001032, "end": 36.001032, "seconds": 1, "bytes": 94371840, "bits_per_second": 754974720, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.001032, "end": 37.001041, "seconds": 1.0000089406967163, "bytes": 102760448, "bits_per_second": 822076234.0657135, "omitted": false, "sender": false}], "sum": {"start": 36.001032, "end": 37.001041, "seconds": 1.0000089406967163, "bytes": 102760448, "bits_per_second": 822076234.0657135, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.001041, "end": 38.001232, "seconds": 1.0001909732818604, "bytes": 110231552, "bits_per_second": 881684037.9057173, "omitted": false, "sender": false}], "sum": {"start": 37.001041, "end": 38.001232, "seconds": 1.0001909732818604, "bytes": 110231552, "bits_per_second": 881684037.9057173, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.001232, "end": 39.001034, "seconds": 0.999801993370056, "bytes": 105775104, "bits_per_second": 846368418.5582496, "omitted": false, "sender": false}], "sum": {"start": 38.001232, "end": 39.001034, "seconds": 0.999801993370056, "bytes": 105775104, "bits_per_second": 846368418.5582496, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.001034, "end": 40.001033, "seconds": 0.9999989867210388, "bytes": 104333312, "bits_per_second": 834667341.750857, "omitted": false, "sender": false}], "sum": {"start": 39.001034, "end": 40.001033, "seconds": 0.9999989867210388, "bytes": 104333312, "bits_per_second": 834667341.750857, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.001033, "end": 41.001029, "seconds": 0.9999960064888, "bytes": 90046464, "bits_per_second": 720374588.8239887, "omitted": false, "sender": false}], "sum": {"start": 40.001033, "end": 41.001029, "seconds": 0.9999960064888, "bytes": 90046464, "bits_per_second": 720374588.8239887, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.001029, "end": 42.001029, "seconds": 1, "bytes": 119537664, "bits_per_second": 956301312, "omitted": false, "sender": false}], "sum": {"start": 41.001029, "end": 42.001029, "seconds": 1, "bytes": 119537664, "bits_per_second": 956301312, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.001029, "end": 43.001031, "seconds": 1.0000020265579224, "bytes": 132513792, "bits_per_second": 1060108187.6293538, "omitted": false, "sender": false}], "sum": {"start": 42.001029, "end": 43.001031, "seconds": 1.0000020265579224, "bytes": 132513792, "bits_per_second": 1060108187.6293538, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.001031, "end": 44.001039, "seconds": 1.0000079870224, "bytes": 129105920, "bits_per_second": 1032839110.6908875, "omitted": false, "sender": false}], "sum": {"start": 43.001031, "end": 44.001039, "seconds": 1.0000079870224, "bytes": 129105920, "bits_per_second": 1032839110.6908875, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.001039, "end": 44.998573, "seconds": 0.9975339770317078, "bytes": 149553152, "bits_per_second": 1199382921.8330176, "omitted": false, "sender": false}], "sum": {"start": 44.001039, "end": 44.998573, "seconds": 0.9975339770317078, "bytes": 149553152, "bits_per_second": 1199382921.8330176, "omitted": false, "sender": false}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 44.998573, "seconds": 44.998573, "bytes": 0, "bits_per_second": 0, "sender": false}, "receiver": {"socket": 5, "start": 0, "end": 44.998573, "seconds": 44.998573, "bytes": 5201068032, "bits_per_second": 924663638.911394, "sender": false}}], "sum_sent": {"start": 0, "end": 44.998573, "seconds": 44.998573, "bytes": 0, "bits_per_second": 0, "sender": false}, "sum_received": {"start": 0, "end": 44.998573, "seconds": 44.998573, "bytes": 5201068032, "bits_per_second": 924663638.911394, "sender": false}, "cpu_utilization_percent": {"host_total": 23.37446395184791, "host_user": 0.526132322413535, "host_system": 22.84832940715072, "remote_total": 0, "remote_user": 0, "remote_system": 0}, "receiver_tcp_congestion": "cubic"}}}} 2026-07-22 14:25:46.099504 2026-07-22 13:08:41.236732 +1329 53 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:26:34.671971 2026-07-22 14:26:34.671974 +1176 50 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 884998144, "io_kbytes": 864256, "bw_bytes": 176154089, "bw": 172025, "iops": 83.996815, "runtime": 5024, "total_ios": 422, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 875653, "max": 41884020, "mean": 6781784.113744, "stddev": 10171604.558975, "N": 422}, "clat_ns": {"min": 571381, "max": 34141568, "mean": 5104293.940758, "stddev": 8345396.34839, "N": 422, "percentile": {"1.000000": 593920, "5.000000": 626688, "10.000000": 692224, "20.000000": 872448, "30.000000": 905216, "40.000000": 929792, "50.000000": 962560, "60.000000": 1003520, "70.000000": 1056768, "80.000000": 8355840, "90.000000": 22151168, "95.000000": 24510464, "99.000000": 29491200, "99.500000": 30277632, "99.900000": 34340864, "99.950000": 34340864, "99.990000": 34340864}}, "lat_ns": {"min": 1485026, "max": 71329720, "mean": 11886947.063981, "stddev": 17651741.798848, "N": 422}, "bw_min": 122880, "bw_max": 217088, "bw_agg": 100.0, "bw_mean": 172408.4, "bw_dev": 33797.026627, "bw_samples": 5, "iops_min": 60, "iops_max": 106, "iops_mean": 84.0, "iops_stddev": 16.552945, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.159267, "sys_cpu": 3.66315, "ctx": 1688, "majf": 0, "minf": 529, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 12.796209, "1000": 46.208531}, "latency_ms": {"2": 15.165877, "4": 2.369668, "10": 4.739336, "20": 5.924171, "50": 12.796209, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:36:25.950652 2026-07-22 13:08:41.236732 +1177 50 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 520093696, "io_kbytes": 507904, "bw_bytes": 103542443, "bw": 101115, "iops": 49.372885, "runtime": 5023, "total_ios": 248, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 968027, "max": 277348710, "mean": 16074330.653226, "stddev": 45114103.815674, "N": 248}, "clat_ns": {"min": 190477, "max": 435652933, "mean": 4172482.754032, "stddev": 31501988.700042, "N": 248, "percentile": {"1.000000": 197632, "5.000000": 228352, "10.000000": 244736, "20.000000": 284672, "30.000000": 321536, "40.000000": 378880, "50.000000": 468992, "60.000000": 618496, "70.000000": 675840, "80.000000": 847872, "90.000000": 954368, "95.000000": 995328, "99.000000": 139460608, "99.500000": 168820736, "99.900000": 434110464, "99.950000": 434110464, "99.990000": 434110464}}, "lat_ns": {"min": 1560507, "max": 436700518, "mean": 20247855.947581, "stddev": 55089566.022384, "N": 248}, "bw_min": 20480, "bw_max": 364544, "bw_agg": 100.0, "bw_mean": 101161.2, "bw_dev": 147585.510099, "bw_samples": 5, "iops_min": 10, "iops_max": 178, "iops_mean": 49.2, "iops_stddev": 72.150537, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.298686, "sys_cpu": 2.688172, "ctx": 883, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 11.693548, "500": 41.129032, "750": 22.177419, "1000": 20.16129}, "latency_ms": {"2": 2.419355, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.806452, "100": 0.403226, "250": 0.806452, "500": 0.403226, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:37:27.05989 2026-07-22 13:08:41.236732 +1178 50 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.21}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 524288000, "io_kbytes": 512000, "bw_bytes": 100553893, "bw": 98197, "iops": 23.973916, "runtime": 5214, "total_ios": 125, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1246047, "max": 220286301, "mean": 7888110.752, "stddev": 29094590.988418, "N": 125}, "clat_ns": {"min": 308690, "max": 375551704, "mean": 33813349.192, "stddev": 72424774.718517, "N": 125, "percentile": {"1.000000": 309248, "5.000000": 333824, "10.000000": 350208, "20.000000": 407552, "30.000000": 448512, "40.000000": 569344, "50.000000": 667648, "60.000000": 954368, "70.000000": 1019904, "80.000000": 51118080, "90.000000": 154140672, "95.000000": 183500800, "99.000000": 371195904, "99.500000": 375390208, "99.900000": 375390208, "99.950000": 375390208, "99.990000": 375390208}}, "lat_ns": {"min": 1926854, "max": 377524876, "mean": 41702372.192, "stddev": 76009669.639331, "N": 125}, "bw_min": 36827, "bw_max": 339968, "bw_agg": 100.0, "bw_mean": 101573.4, "bw_dev": 133310.257377, "bw_samples": 5, "iops_min": 8, "iops_max": 83, "iops_mean": 24.6, "iops_stddev": 32.669558, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.13428, "sys_cpu": 1.515442, "ctx": 446, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 33.6, "750": 18.4, "1000": 16.0}, "latency_ms": {"2": 8.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 3.2, "100": 6.4, "250": 12.0, "500": 2.4, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:37:33.341587 2026-07-22 13:08:41.236732 +1179 50 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.07}, "metrics": {"read": {"io_bytes": 767557632, "io_kbytes": 749568, "bw_bytes": 151421904, "bw": 147872, "iops": 36.101795, "runtime": 5069, "total_ios": 183, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1050170, "max": 93837947, "mean": 19845715.715847, "stddev": 26678217.962894, "N": 183}, "clat_ns": {"min": 593352, "max": 44805299, "mean": 7843597.513661, "stddev": 11019607.151896, "N": 183, "percentile": {"1.000000": 593920, "5.000000": 610304, "10.000000": 626688, "20.000000": 643072, "30.000000": 667648, "40.000000": 872448, "50.000000": 987136, "60.000000": 1286144, "70.000000": 8159232, "80.000000": 21364736, "90.000000": 25559040, "95.000000": 30277632, "99.000000": 43253760, "99.500000": 44826624, "99.900000": 44826624, "99.950000": 44826624, "99.990000": 44826624}}, "lat_ns": {"min": 1650144, "max": 133405533, "mean": 27690398.57377, "stddev": 36194666.41959, "N": 183}, "bw_min": 53248, "bw_max": 307200, "bw_agg": 100.0, "bw_mean": 149082.0, "bw_dev": 126510.18408, "bw_samples": 5, "iops_min": 13, "iops_max": 75, "iops_mean": 36.2, "iops_stddev": 31.05962, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 1.617995, "ctx": 734, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 38.251366, "1000": 12.568306}, "latency_ms": {"2": 12.568306, "4": 1.092896, "10": 7.650273, "20": 6.557377, "50": 21.311475, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:37:50.231489 2026-07-22 13:08:41.236732 +1330 53 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:25:45' --until '2026-07-22 14:26:34' 0 OOM records 2026-07-22 14:25:45.754339 2026-07-22 14:26:34.360799 +1331 53 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:25:45' --until '2026-07-22 14:26:34' 0 systemd errors records 2026-07-22 14:25:45.754339 2026-07-22 14:26:34.360799 +1180 50 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 717225984, "io_kbytes": 700416, "bw_bytes": 142759949, "bw": 139414, "iops": 34.036624, "runtime": 5024, "total_ios": 171, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1371282, "max": 116937705, "mean": 24539026.426901, "stddev": 31772711.137526, "N": 171}, "clat_ns": {"min": 155883, "max": 28206666, "mean": 4830204.725146, "stddev": 7003671.999041, "N": 171, "percentile": {"1.000000": 156672, "5.000000": 201728, "10.000000": 272384, "20.000000": 815104, "30.000000": 880640, "40.000000": 929792, "50.000000": 962560, "60.000000": 1056768, "70.000000": 4554752, "80.000000": 8978432, "90.000000": 16908288, "95.000000": 21364736, "99.000000": 26869760, "99.500000": 28180480, "99.900000": 28180480, "99.950000": 28180480, "99.990000": 28180480}}, "lat_ns": {"min": 1995804, "max": 140244780, "mean": 29370544.894737, "stddev": 36952663.600587, "N": 171}, "bw_min": 94113, "bw_max": 221184, "bw_agg": 99.878769, "bw_mean": 139245.0, "bw_dev": 52314.70322, "bw_samples": 5, "iops_min": 22, "iops_max": 54, "iops_mean": 33.8, "iops_stddev": 12.988456, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.079634, "sys_cpu": 2.110293, "ctx": 890, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 9.94152, "500": 2.339181, "750": 6.432749, "1000": 37.426901}, "latency_ms": {"2": 9.94152, "4": 3.508772, "10": 11.695906, "20": 11.695906, "50": 7.017544, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:38:55.76255 2026-07-22 13:08:41.236732 +1181 50 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260722-133144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.47}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 524288000, "io_kbytes": 512000, "bw_bytes": 95742878, "bw": 93498, "iops": 22.826881, "runtime": 5476, "total_ios": 125, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1187908, "max": 379864594, "mean": 21932771.528, "stddev": 58045685.146691, "N": 125}, "clat_ns": {"min": 282490, "max": 503178557, "mean": 21862394.72, "stddev": 66460778.553833, "N": 125, "percentile": {"1.000000": 292864, "5.000000": 337920, "10.000000": 362496, "20.000000": 395264, "30.000000": 440320, "40.000000": 497664, "50.000000": 790528, "60.000000": 987136, "70.000000": 1122304, "80.000000": 1564672, "90.000000": 72876032, "95.000000": 156237824, "99.000000": 299892736, "99.500000": 501219328, "99.900000": 501219328, "99.950000": 501219328, "99.990000": 501219328}}, "lat_ns": {"min": 1980254, "max": 505637159, "mean": 43796187.32, "stddev": 89252216.614452, "N": 125}, "bw_min": 28672, "bw_max": 339968, "bw_agg": 100.0, "bw_mean": 101561.8, "bw_dev": 133566.779033, "bw_samples": 5, "iops_min": 7, "iops_max": 83, "iops_mean": 24.4, "iops_stddev": 32.814631, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.273973, "sys_cpu": 1.333333, "ctx": 445, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 40.0, "750": 6.4, "1000": 16.0}, "latency_ms": {"2": 20.8, "4": 0.0, "10": 0.0, "20": 0.8, "50": 4.0, "100": 4.0, "250": 5.6, "500": 1.6, "750": 0.8, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:39:51.782467 2026-07-22 13:08:41.236732 +1182 50 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9670656, "io_kbytes": 9444, "bw_bytes": 1933744, "bw": 1888, "iops": 3776.844631, "runtime": 5001, "total_ios": 18888, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 155062, "max": 1474566, "mean": 177880.387336, "stddev": 38598.785632, "N": 18888}, "clat_ns": {"min": 973, "max": 9657595, "mean": 84889.381089, "stddev": 97825.559977, "N": 18888, "percentile": {"1.000000": 1112, "5.000000": 1128, "10.000000": 1144, "20.000000": 86528, "30.000000": 87552, "40.000000": 88576, "50.000000": 90624, "60.000000": 93696, "70.000000": 96768, "80.000000": 100864, "90.000000": 108032, "95.000000": 116224, "99.000000": 134144, "99.500000": 142336, "99.900000": 209920, "99.950000": 292864, "99.990000": 8159232}}, "lat_ns": {"min": 238458, "max": 9860435, "mean": 263185.202351, "stddev": 94333.546416, "N": 18888}, "bw_min": 1873, "bw_max": 1911, "bw_agg": 100.0, "bw_mean": 1889.5, "bw_dev": 16.114176, "bw_samples": 4, "iops_min": 3747, "iops_max": 3822, "iops_mean": 3779.5, "iops_stddev": 31.921779, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.9, "sys_cpu": 62.9, "ctx": 18896, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.021177}, "latency_us": {"2": 12.436468, "4": 0.010589, "10": 0.042355, "20": 0.0, "50": 0.0, "100": 66.454892, "250": 20.965693, "500": 0.031766, "750": 0.010589, "1000": 0.010589}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.010589, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:40:02.949736 2026-07-22 13:08:41.236732 +1183 50 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 10127872, "io_kbytes": 9890, "bw_bytes": 2025169, "bw": 1977, "iops": 3955.408918, "runtime": 5001, "total_ios": 19781, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3236, "max": 20668798, "mean": 161320.721096, "stddev": 147722.398668, "N": 19781}, "clat_ns": {"min": 922, "max": 6231938, "mean": 89325.518781, "stddev": 179067.127105, "N": 19781, "percentile": {"1.000000": 57600, "5.000000": 72192, "10.000000": 73216, "20.000000": 74240, "30.000000": 75264, "40.000000": 76288, "50.000000": 76288, "60.000000": 77312, "70.000000": 77312, "80.000000": 80384, "90.000000": 88576, "95.000000": 104960, "99.000000": 264192, "99.500000": 362496, "99.900000": 3915776, "99.950000": 5341184, "99.990000": 6258688}}, "lat_ns": {"min": 225273, "max": 21309880, "mean": 251212.688843, "stddev": 232455.918278, "N": 19781}, "bw_min": 1941, "bw_max": 2055, "bw_agg": 100.0, "bw_mean": 1983.5, "bw_dev": 52.348193, "bw_samples": 4, "iops_min": 3883, "iops_max": 4111, "iops_mean": 3967.75, "iops_stddev": 104.923385, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.94, "sys_cpu": 65.9, "ctx": 19542, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.111218}, "latency_us": {"2": 0.697639, "4": 0.01, "10": 0.010111, "20": 0.0, "50": 0.01, "100": 93.291542, "250": 4.327385, "500": 1.188009, "750": 0.187048, "1000": 0.035387}, "latency_ms": {"2": 0.010111, "4": 0.045498, "10": 0.085941, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:40:16.485737 2026-07-22 13:08:41.236732 +1224 50 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 272MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260722-135553Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260722-135553Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260722-135553Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260722-135553Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260722-135553Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-22 13:56:15.3277 2026-07-22 13:08:41.236732 +1184 50 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 8486912, "io_kbytes": 8288, "bw_bytes": 1697042, "bw": 1657, "iops": 3314.537093, "runtime": 5001, "total_ios": 16576, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 8506, "max": 607990, "mean": 162553.081262, "stddev": 11110.156636, "N": 16576}, "clat_ns": {"min": 891, "max": 5163735, "mean": 136795.173323, "stddev": 146380.215027, "N": 16576, "percentile": {"1.000000": 61184, "5.000000": 74240, "10.000000": 75264, "20.000000": 76288, "30.000000": 76288, "40.000000": 77312, "50.000000": 79360, "60.000000": 82432, "70.000000": 88576, "80.000000": 107008, "90.000000": 387072, "95.000000": 395264, "99.000000": 415744, "99.500000": 432128, "99.900000": 1597440, "99.950000": 2473984, "99.990000": 3588096}}, "lat_ns": {"min": 224672, "max": 5322242, "mean": 299845.729006, "stddev": 146624.768183, "N": 16576}, "bw_min": 1647, "bw_max": 1678, "bw_agg": 100.0, "bw_mean": 1667.25, "bw_dev": 14.384598, "bw_samples": 4, "iops_min": 3295, "iops_max": 3357, "iops_mean": 3335.25, "iops_stddev": 28.546745, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.94, "sys_cpu": 56.16, "ctx": 16431, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.114624}, "latency_us": {"2": 0.66361, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 77.841458, "250": 4.084218, "500": 17.048745, "750": 0.078427, "1000": 0.012066}, "latency_ms": {"2": 0.078427, "4": 0.072394, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:41:20.533396 2026-07-22 13:08:41.236732 +1185 50 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7873024, "io_kbytes": 7688, "bw_bytes": 1574289, "bw": 1537, "iops": 3074.785043, "runtime": 5001, "total_ios": 15377, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 158628, "max": 178001389, "mean": 319581.156337, "stddev": 1465499.223312, "N": 15377}, "clat_ns": {"min": 942, "max": 352761, "mean": 3351.057163, "stddev": 15119.212334, "N": 15377, "percentile": {"1.000000": 988, "5.000000": 1020, "10.000000": 1096, "20.000000": 1128, "30.000000": 1128, "40.000000": 1128, "50.000000": 1144, "60.000000": 1144, "70.000000": 1160, "80.000000": 1160, "90.000000": 1176, "95.000000": 1256, "99.000000": 103936, "99.500000": 110080, "99.900000": 124416, "99.950000": 136192, "99.990000": 248832}}, "lat_ns": {"min": 246392, "max": 178008102, "mean": 323402.449958, "stddev": 1465417.838031, "N": 15377}, "bw_min": 1215, "bw_max": 1656, "bw_agg": 98.803714, "bw_mean": 1519.5, "bw_dev": 204.53606, "bw_samples": 4, "iops_min": 2431, "iops_max": 3312, "iops_mean": 3039.5, "iops_stddev": 408.720361, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.78, "sys_cpu": 65.1, "ctx": 15390, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 1.560773}, "latency_us": {"2": 95.187618, "4": 0.234116, "10": 0.851922, "20": 0.123561, "50": 0.01, "100": 0.721857, "250": 1.307147, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:42:39.716618 2026-07-22 13:08:41.236732 +1186 50 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 73142272, "io_kbytes": 71428, "bw_bytes": 14625529, "bw": 14282, "iops": 3570.685863, "runtime": 5001, "total_ios": 17857, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 249808, "max": 3745245, "mean": 276888.27233, "stddev": 33062.119589, "N": 17857}, "clat_ns": {"min": 942, "max": 51376, "mean": 1143.20877, "stddev": 555.506965, "N": 17857, "percentile": {"1.000000": 1064, "5.000000": 1080, "10.000000": 1096, "20.000000": 1096, "30.000000": 1096, "40.000000": 1112, "50.000000": 1112, "60.000000": 1112, "70.000000": 1128, "80.000000": 1128, "90.000000": 1128, "95.000000": 1144, "99.000000": 1400, "99.500000": 3152, "99.900000": 8160, "99.950000": 8512, "99.990000": 25728}}, "lat_ns": {"min": 251331, "max": 3748010, "mean": 278493.479924, "stddev": 33144.68021, "N": 17857}, "bw_min": 14100, "bw_max": 14396, "bw_agg": 99.966791, "bw_mean": 14278.0, "bw_dev": 129.099445, "bw_samples": 4, "iops_min": 3525, "iops_max": 3599, "iops_mean": 3569.5, "iops_stddev": 32.274861, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.32, "sys_cpu": 68.06, "ctx": 17856, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.212802}, "latency_us": {"2": 99.171193, "4": 0.173601, "10": 0.414403, "20": 0.0168, "50": 0.01, "100": 0.01, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:42:45.732217 2026-07-22 13:08:41.236732 +1187 50 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 62484480, "io_kbytes": 61020, "bw_bytes": 12494397, "bw": 12201, "iops": 3050.389922, "runtime": 5001, "total_ios": 15255, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 151023, "max": 800261, "mean": 166836.752016, "stddev": 21887.255948, "N": 15255}, "clat_ns": {"min": 922, "max": 15624396, "mean": 158950.911439, "stddev": 565295.300727, "N": 15255, "percentile": {"1.000000": 64768, "5.000000": 74240, "10.000000": 75264, "20.000000": 76288, "30.000000": 77312, "40.000000": 78336, "50.000000": 80384, "60.000000": 83456, "70.000000": 88576, "80.000000": 96768, "90.000000": 119296, "95.000000": 222208, "99.000000": 2023424, "99.500000": 5537792, "99.900000": 7766016, "99.950000": 7831552, "99.990000": 9764864}}, "lat_ns": {"min": 223479, "max": 15798272, "mean": 326217.043133, "stddev": 566324.933073, "N": 15255}, "bw_min": 9924, "bw_max": 12836, "bw_agg": 95.200945, "bw_mean": 11616.0, "bw_dev": 1222.382373, "bw_samples": 4, "iops_min": 2481, "iops_max": 3209, "iops_mean": 2904.0, "iops_stddev": 305.595593, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.38, "sys_cpu": 50.76, "ctx": 15228, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.019666}, "latency_us": {"2": 0.144215, "4": 0.0, "10": 0.01, "20": 0.0, "50": 0.01, "100": 82.687643, "250": 12.671255, "500": 1.297935, "750": 1.501147, "1000": 0.203212}, "latency_ms": {"2": 0.4392, "4": 0.393314, "10": 0.622747, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:42:51.752188 2026-07-22 13:08:41.236732 +1225 50 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 272MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260722-135553Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260722-135553Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-22 13:56:15.329618 2026-07-22 13:08:41.236732 +1188 50 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 61202432, "io_kbytes": 59768, "bw_bytes": 12238038, "bw": 11951, "iops": 2987.80244, "runtime": 5001, "total_ios": 14942, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4168, "max": 21240339, "mean": 167654.677821, "stddev": 242586.631848, "N": 14942}, "clat_ns": {"min": 1122, "max": 6614947, "mean": 164855.139272, "stddev": 255692.130227, "N": 14942, "percentile": {"1.000000": 68096, "5.000000": 75264, "10.000000": 76288, "20.000000": 77312, "30.000000": 78336, "40.000000": 82432, "50.000000": 88576, "60.000000": 92672, "70.000000": 96768, "80.000000": 109056, "90.000000": 505856, "95.000000": 528384, "99.000000": 790528, "99.500000": 1155072, "99.900000": 3850240, "99.950000": 4554752, "99.990000": 6586368}}, "lat_ns": {"min": 229620, "max": 21944440, "mean": 332908.348748, "stddev": 357613.348212, "N": 14942}, "bw_min": 11412, "bw_max": 12340, "bw_agg": 99.287026, "bw_mean": 11866.0, "bw_dev": 414.014492, "bw_samples": 4, "iops_min": 2853, "iops_max": 3085, "iops_mean": 2966.5, "iops_stddev": 103.503623, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.88, "sys_cpu": 49.52, "ctx": 14950, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.02677, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 75.2242, "250": 9.476643, "500": 3.299424, "750": 10.949003, "1000": 0.428323}, "latency_ms": {"2": 0.321242, "4": 0.194084, "10": 0.080311, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:43:32.510325 2026-07-22 13:08:41.236732 +1189 50 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 65662976, "io_kbytes": 64124, "bw_bytes": 13129969, "bw": 12822, "iops": 3205.558888, "runtime": 5001, "total_ios": 16031, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 162275, "max": 14348813, "mean": 308274.507454, "stddev": 149512.819081, "N": 16031}, "clat_ns": {"min": 932, "max": 134762, "mean": 1363.84636, "stddev": 4135.497318, "N": 16031, "percentile": {"1.000000": 1004, "5.000000": 1048, "10.000000": 1112, "20.000000": 1128, "30.000000": 1144, "40.000000": 1144, "50.000000": 1160, "60.000000": 1160, "70.000000": 1160, "80.000000": 1176, "90.000000": 1288, "95.000000": 1368, "99.000000": 1720, "99.500000": 8768, "99.900000": 101888, "99.950000": 111104, "99.990000": 134144}}, "lat_ns": {"min": 260780, "max": 14367658, "mean": 310087.523922, "stddev": 149586.810346, "N": 16031}, "bw_min": 12424, "bw_max": 13060, "bw_agg": 99.865582, "bw_mean": 12805.0, "bw_dev": 273.493449, "bw_samples": 4, "iops_min": 3106, "iops_max": 3265, "iops_mean": 3201.25, "iops_stddev": 68.373362, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.96, "sys_cpu": 68.92, "ctx": 16034, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.885784}, "latency_us": {"2": 98.284574, "4": 0.14971, "10": 0.405464, "20": 0.130996, "50": 0.01, "100": 0.018714, "250": 0.11852, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:44:19.090828 2026-07-22 13:08:41.236732 +1190 50 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.15}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 549453824, "io_kbytes": 536576, "bw_bytes": 106690062, "bw": 104189, "iops": 50.873786, "runtime": 5150, "total_ios": 262, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1172159, "max": 415819913, "mean": 19651035.354962, "stddev": 57430221.203551, "N": 262}, "clat_ns": {"min": 991, "max": 9849, "mean": 1844.251908, "stddev": 1340.621397, "N": 262, "percentile": {"1.000000": 1048, "5.000000": 1080, "10.000000": 1096, "20.000000": 1096, "30.000000": 1112, "40.000000": 1128, "50.000000": 1336, "60.000000": 1656, "70.000000": 1704, "80.000000": 1992, "90.000000": 3824, "95.000000": 4960, "99.000000": 7456, "99.500000": 8096, "99.900000": 9792, "99.950000": 9792, "99.990000": 9792}}, "lat_ns": {"min": 1173671, "max": 415827657, "mean": 19653849.419847, "stddev": 57431617.115069, "N": 262}, "bw_min": 32768, "bw_max": 348160, "bw_agg": 100.0, "bw_mean": 106888.8, "bw_dev": 136586.861342, "bw_samples": 5, "iops_min": 16, "iops_max": 170, "iops_mean": 52.0, "iops_stddev": 66.734549, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.31074, "sys_cpu": 0.524374, "ctx": 553, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.381679}, "latency_us": {"2": 79.770992, "4": 10.305344, "10": 9.541985, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:44:25.107724 2026-07-22 13:08:41.236732 +1191 50 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.03}, "metrics": {"read": {"io_bytes": 654311424, "io_kbytes": 638976, "bw_bytes": 130030092, "bw": 126982, "iops": 62.00318, "runtime": 5032, "total_ios": 312, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 900008, "max": 42497801, "mean": 10767317.778846, "stddev": 9785452.881534, "N": 312}, "clat_ns": {"min": 357620, "max": 27726886, "mean": 5354475.903846, "stddev": 5748813.198641, "N": 312, "percentile": {"1.000000": 374784, "5.000000": 536576, "10.000000": 593920, "20.000000": 823296, "30.000000": 913408, "40.000000": 1036288, "50.000000": 1613824, "60.000000": 5603328, "70.000000": 7831552, "80.000000": 11075584, "90.000000": 14090240, "95.000000": 16318464, "99.000000": 20054016, "99.500000": 21364736, "99.900000": 27656192, "99.950000": 27656192, "99.990000": 27656192}}, "lat_ns": {"min": 1453716, "max": 70225839, "mean": 16122778.801282, "stddev": 13491198.610529, "N": 312}, "bw_min": 73728, "bw_max": 182272, "bw_agg": 100.0, "bw_mean": 127349.4, "bw_dev": 50314.215743, "bw_samples": 5, "iops_min": 36, "iops_max": 89, "iops_mean": 62.0, "iops_stddev": 24.33105, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.159014, "sys_cpu": 2.842377, "ctx": 1250, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 4.487179, "750": 9.615385, "1000": 23.717949}, "latency_ms": {"2": 13.461538, "4": 4.807692, "10": 22.435897, "20": 19.871795, "50": 1.602564, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:44:31.437697 2026-07-22 13:08:41.236732 +1252 50 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 13:58:43' --until '2026-07-22 13:59:50' 0 OOM records 2026-07-22 13:58:43.102525 2026-07-22 13:59:50.081638 +1253 50 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 13:58:43' --until '2026-07-22 13:59:50' 0 systemd errors records 2026-07-22 13:58:43.102525 2026-07-22 13:59:50.081638 +1254 50 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 13:59:52.147198 2026-07-22 13:59:52.147203 +1255 50 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 13:59:51' --until '2026-07-22 13:59:51' 0 OOM records 2026-07-22 13:59:51.553785 2026-07-22 13:59:51.810459 +1192 50 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 520093696, "io_kbytes": 507904, "bw_bytes": 103728299, "bw": 101297, "iops": 49.461508, "runtime": 5014, "total_ios": 248, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1111405, "max": 62772770, "mean": 17280595.971774, "stddev": 15922419.908747, "N": 248}, "clat_ns": {"min": 124082, "max": 31130720, "mean": 2931399.354839, "stddev": 4470381.277056, "N": 248, "percentile": {"1.000000": 136192, "5.000000": 177152, "10.000000": 195584, "20.000000": 207872, "30.000000": 228352, "40.000000": 261120, "50.000000": 317440, "60.000000": 905216, "70.000000": 3620864, "80.000000": 5865472, "90.000000": 9502720, "95.000000": 12517376, "99.000000": 20054016, "99.500000": 22413312, "99.900000": 31064064, "99.950000": 31064064, "99.990000": 31064064}}, "lat_ns": {"min": 1549897, "max": 73820351, "mean": 20213155.951613, "stddev": 18386876.270168, "N": 248}, "bw_min": 92160, "bw_max": 110592, "bw_agg": 99.875449, "bw_mean": 101171.2, "bw_dev": 7327.147549, "bw_samples": 5, "iops_min": 45, "iops_max": 54, "iops_mean": 49.4, "iops_stddev": 3.577709, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 2.573309, "ctx": 1213, "majf": 0, "minf": 530, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 37.903226, "500": 15.322581, "750": 3.225806, "1000": 4.032258}, "latency_ms": {"2": 4.435484, "4": 6.451613, "10": 19.758065, "20": 8.064516, "50": 0.806452, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:45:26.230996 2026-07-22 13:08:41.236732 +1193 50 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 6.87}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 285212672, "io_kbytes": 278528, "bw_bytes": 41503590, "bw": 40530, "iops": 19.790454, "runtime": 6872, "total_ios": 136, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1491167, "max": 6435190410, "mean": 50519483.375, "stddev": 551633615.273742, "N": 136}, "clat_ns": {"min": 961, "max": 7705, "mean": 1357.897059, "stddev": 800.769577, "N": 136, "percentile": {"1.000000": 1004, "5.000000": 1112, "10.000000": 1128, "20.000000": 1128, "30.000000": 1144, "40.000000": 1144, "50.000000": 1160, "60.000000": 1176, "70.000000": 1208, "80.000000": 1384, "90.000000": 1688, "95.000000": 1880, "99.000000": 6496, "99.500000": 7712, "99.900000": 7712, "99.950000": 7712, "99.990000": 7712}}, "lat_ns": {"min": 1492719, "max": 6435237979, "mean": 50521666.205882, "stddev": 551637551.589341, "N": 136}, "bw_min": 276480, "bw_max": 276480, "bw_agg": 100.0, "bw_mean": 276480.0, "bw_dev": 0.0, "bw_samples": 1, "iops_min": 135, "iops_max": 135, "iops_mean": 135.0, "iops_stddev": 0.0, "iops_samples": 1}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.07277, "sys_cpu": 0.582157, "ctx": 545, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.735294}, "latency_us": {"2": 95.588235, "4": 1.470588, "10": 2.205882, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:46:06.586773 2026-07-22 13:08:41.236732 +1194 50 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 570425344, "io_kbytes": 557056, "bw_bytes": 114016658, "bw": 111344, "iops": 27.18369, "runtime": 5003, "total_ios": 136, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2441850, "max": 329230252, "mean": 36779658.713235, "stddev": 72097439.425183, "N": 136}, "clat_ns": {"min": 1053, "max": 16942, "mean": 2209.514706, "stddev": 1758.575497, "N": 136, "percentile": {"1.000000": 1064, "5.000000": 1080, "10.000000": 1096, "20.000000": 1240, "30.000000": 1416, "40.000000": 1656, "50.000000": 1736, "60.000000": 1912, "70.000000": 2256, "80.000000": 2672, "90.000000": 3984, "95.000000": 4512, "99.000000": 10304, "99.500000": 17024, "99.900000": 17024, "99.950000": 17024, "99.990000": 17024}}, "lat_ns": {"min": 2443573, "max": 329249899, "mean": 36783099.308824, "stddev": 72098973.191926, "N": 136}, "bw_min": 36827, "bw_max": 348160, "bw_agg": 100.0, "bw_mean": 126952.25, "bw_dev": 147964.828592, "bw_samples": 4, "iops_min": 8, "iops_max": 85, "iops_mean": 30.5, "iops_stddev": 36.482873, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.439824, "sys_cpu": 0.9996, "ctx": 680, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 63.970588, "4": 26.470588, "10": 8.088235, "20": 1.470588, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:46:14.709825 2026-07-22 13:08:41.236732 +1195 50 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.09}, "metrics": {"read": {"io_bytes": 499122176, "io_kbytes": 487424, "bw_bytes": 98059366, "bw": 95761, "iops": 23.379175, "runtime": 5090, "total_ios": 119, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2231305, "max": 117706848, "mean": 41271540.739496, "stddev": 26831065.394716, "N": 119}, "clat_ns": {"min": 104276, "max": 10712262, "mean": 1487014.428571, "stddev": 2365834.20732, "N": 119, "percentile": {"1.000000": 125440, "5.000000": 140288, "10.000000": 162816, "20.000000": 201728, "30.000000": 232448, "40.000000": 250880, "50.000000": 288768, "60.000000": 387072, "70.000000": 823296, "80.000000": 2899968, "90.000000": 5865472, "95.000000": 6717440, "99.000000": 10420224, "99.500000": 10682368, "99.900000": 10682368, "99.950000": 10682368, "99.990000": 10682368}}, "lat_ns": {"min": 2773793, "max": 121406447, "mean": 42760135.983193, "stddev": 27405055.288392, "N": 119}, "bw_min": 65536, "bw_max": 139264, "bw_agg": 100.0, "bw_mean": 96665.6, "bw_dev": 29049.853094, "bw_samples": 5, "iops_min": 16, "iops_max": 34, "iops_mean": 23.6, "iops_stddev": 7.092249, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 1.375516, "ctx": 714, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 39.495798, "500": 24.369748, "750": 4.201681, "1000": 6.722689}, "latency_ms": {"2": 3.361345, "4": 7.563025, "10": 12.605042, "20": 1.680672, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:46:20.838634 2026-07-22 13:08:41.236732 +1256 50 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 13:59:51' --until '2026-07-22 13:59:51' 0 systemd errors records 2026-07-22 13:59:51.553785 2026-07-22 13:59:51.810459 +1257 50 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 13:59:53.485163 2026-07-22 13:59:53.485166 +1258 50 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 13:59:52' --until '2026-07-22 13:59:53' 0 OOM records 2026-07-22 13:59:52.93789 2026-07-22 13:59:53.175381 +1259 50 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 13:59:52' --until '2026-07-22 13:59:53' 0 systemd errors records 2026-07-22 13:59:52.93789 2026-07-22 13:59:53.175381 +1196 50 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.04}, "metrics": {"read": {"io_bytes": 813694976, "io_kbytes": 794624, "bw_bytes": 161319384, "bw": 157538, "iops": 38.461538, "runtime": 5044, "total_ios": 194, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1365932, "max": 93305398, "mean": 19244636.324742, "stddev": 21204258.868786, "N": 194}, "clat_ns": {"min": 271048, "max": 33957724, "mean": 6745810.778351, "stddev": 8634709.051394, "N": 194, "percentile": {"1.000000": 514048, "5.000000": 634880, "10.000000": 667648, "20.000000": 708608, "30.000000": 741376, "40.000000": 790528, "50.000000": 888832, "60.000000": 2637824, "70.000000": 10420224, "80.000000": 14614528, "90.000000": 20316160, "95.000000": 24772608, "99.000000": 31588352, "99.500000": 33816576, "99.900000": 33816576, "99.950000": 33816576, "99.990000": 33816576}}, "lat_ns": {"min": 1906826, "max": 124953349, "mean": 25991700.417526, "stddev": 27821542.578527, "N": 194}, "bw_min": 122880, "bw_max": 196411, "bw_agg": 100.0, "bw_mean": 158066.2, "bw_dev": 26410.280275, "bw_samples": 5, "iops_min": 30, "iops_max": 47, "iops_mean": 38.4, "iops_stddev": 6.107373, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.059488, "sys_cpu": 2.954591, "ctx": 779, "majf": 0, "minf": 530, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.515464, "750": 31.958763, "1000": 23.71134}, "latency_ms": {"2": 3.608247, "4": 1.546392, "10": 7.731959, "20": 19.587629, "50": 11.340206, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:47:14.632014 2026-07-22 13:08:41.236732 +1197 50 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260722-134002Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.13}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 532676608, "io_kbytes": 520192, "bw_bytes": 103876093, "bw": 101441, "iops": 24.765991, "runtime": 5128, "total_ios": 127, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 2524736, "max": 338723127, "mean": 40365479.377953, "stddev": 68803000.80245, "N": 127}, "clat_ns": {"min": 1031, "max": 5500, "mean": 2079.590551, "stddev": 1138.27776, "N": 127, "percentile": {"1.000000": 1048, "5.000000": 1112, "10.000000": 1128, "20.000000": 1176, "30.000000": 1320, "40.000000": 1512, "50.000000": 1800, "60.000000": 1992, "70.000000": 2128, "80.000000": 2384, "90.000000": 4320, "95.000000": 4896, "99.000000": 5408, "99.500000": 5472, "99.900000": 5472, "99.950000": 5472, "99.990000": 5472}}, "lat_ns": {"min": 2526439, "max": 338730621, "mean": 40368752.086614, "stddev": 68804692.125491, "N": 127}, "bw_min": 28643, "bw_max": 339628, "bw_agg": 100.0, "bw_mean": 103125.6, "bw_dev": 132632.125084, "bw_samples": 5, "iops_min": 6, "iops_max": 82, "iops_mean": 24.4, "iops_stddev": 32.315631, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.507119, "sys_cpu": 0.819193, "ctx": 763, "majf": 0, "minf": 16, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 60.629921, "4": 29.133858, "10": 10.23622, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:48:02.730781 2026-07-22 13:08:41.236732 +1198 50 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_512b", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9752576, "io_kbytes": 9524, "bw_bytes": 1950125, "bw": 1904, "iops": 3808.838232, "runtime": 5001, "total_ios": 19048, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 154761, "max": 793559, "mean": 177634.341978, "stddev": 36189.810376, "N": 19048}, "clat_ns": {"min": 982, "max": 3722682, "mean": 82913.158022, "stddev": 47140.665358, "N": 19048, "percentile": {"1.000000": 1096, "5.000000": 1112, "10.000000": 1128, "20.000000": 85504, "30.000000": 87552, "40.000000": 88576, "50.000000": 89600, "60.000000": 91648, "70.000000": 94720, "80.000000": 98816, "90.000000": 103936, "95.000000": 111104, "99.000000": 130560, "99.500000": 138240, "99.900000": 248832, "99.950000": 411648, "99.990000": 2179072}}, "lat_ns": {"min": 237656, "max": 3888313, "mean": 260963.621535, "stddev": 38048.323991, "N": 19048}, "bw_min": 1862, "bw_max": 1940, "bw_agg": 99.872983, "bw_mean": 1902.25, "bw_dev": 32.003906, "bw_samples": 4, "iops_min": 3725, "iops_max": 3880, "iops_mean": 3804.75, "iops_stddev": 63.589176, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.96, "sys_cpu": 64.4, "ctx": 19055, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.026249}, "latency_us": {"2": 12.452751, "4": 0.0105, "10": 0.021, "20": 0.0, "50": 0.0, "100": 70.616338, "250": 16.773415, "500": 0.057749, "750": 0.0105, "1000": 0.01575}, "latency_ms": {"2": 0.01, "4": 0.0105, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:48:10.489635 2026-07-22 13:08:41.236732 +1199 50 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_512b", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 10304000, "io_kbytes": 10062, "bw_bytes": 2060387, "bw": 2012, "iops": 4024.195161, "runtime": 5001, "total_ios": 20125, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 154230, "max": 779041, "mean": 164915.866981, "stddev": 10779.44329, "N": 20125}, "clat_ns": {"min": 1041, "max": 6229504, "mean": 81651.685764, "stddev": 73889.462099, "N": 20125, "percentile": {"1.000000": 63232, "5.000000": 73216, "10.000000": 74240, "20.000000": 75264, "30.000000": 76288, "40.000000": 76288, "50.000000": 77312, "60.000000": 77312, "70.000000": 79360, "80.000000": 83456, "90.000000": 91648, "95.000000": 96768, "99.000000": 111104, "99.500000": 127488, "99.900000": 667648, "99.950000": 692224, "99.990000": 3915776}}, "lat_ns": {"min": 226996, "max": 6391098, "mean": 246977.209193, "stddev": 74815.923751, "N": 20125}, "bw_min": 1927, "bw_max": 2057, "bw_agg": 99.299403, "bw_mean": 1998.75, "bw_dev": 58.471503, "bw_samples": 4, "iops_min": 3855, "iops_max": 4114, "iops_mean": 3998.0, "iops_stddev": 116.410194, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.32, "sys_cpu": 67.86, "ctx": 20129, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.019876, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.01, "100": 96.904348, "250": 2.877019, "500": 0.079503, "750": 0.069565, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.014907, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:48:24.020379 2026-07-22 13:08:41.236732 +1260 51 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 5.26, "kernel_time": 1.159, "userspace_time": 14.333, "total_time": 20.753} 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1261 51 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:02:53.539729 2026-07-22 14:02:53.539733 +1262 51 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:02:52' --until '2026-07-22 14:02:53' 0 OOM records 2026-07-22 14:02:52.981815 2026-07-22 14:02:53.229439 +1263 51 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:02:52' --until '2026-07-22 14:02:53' 0 systemd errors records 2026-07-22 14:02:52.981815 2026-07-22 14:02:53.229439 +1200 50 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_512b", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 8956928, "io_kbytes": 8747, "bw_bytes": 1791027, "bw": 1749, "iops": 3498.10038, "runtime": 5001, "total_ios": 17494, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 155782, "max": 439183, "mean": 163702.204527, "stddev": 8156.869874, "N": 17494}, "clat_ns": {"min": 1202, "max": 6673327, "mean": 120007.430033, "stddev": 131135.178447, "N": 17494, "percentile": {"1.000000": 66048, "5.000000": 74240, "10.000000": 75264, "20.000000": 76288, "30.000000": 77312, "40.000000": 78336, "50.000000": 80384, "60.000000": 83456, "70.000000": 88576, "80.000000": 95744, "90.000000": 378880, "95.000000": 399360, "99.000000": 415744, "99.500000": 436224, "99.900000": 585728, "99.950000": 1908736, "99.990000": 4685824}}, "lat_ns": {"min": 225203, "max": 6834850, "mean": 284125.251, "stddev": 131611.914031, "N": 17494}, "bw_min": 1738, "bw_max": 1775, "bw_agg": 100.0, "bw_mean": 1759.0, "bw_dev": 15.811388, "bw_samples": 4, "iops_min": 3477, "iops_max": 3551, "iops_mean": 3519.0, "iops_stddev": 31.622777, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.58, "sys_cpu": 58.28, "ctx": 17502, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.017149, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.01, "100": 84.148851, "250": 4.561564, "500": 11.123814, "750": 0.080027, "1000": 0.01}, "latency_ms": {"2": 0.011432, "4": 0.034297, "10": 0.011432, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:49:07.879999 2026-07-22 13:08:41.236732 +1201 50 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_512b", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8135168, "io_kbytes": 7944, "bw_bytes": 1626708, "bw": 1588, "iops": 3177.164567, "runtime": 5001, "total_ios": 15889, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 161373, "max": 10213337, "mean": 309018.225187, "stddev": 94300.537582, "N": 15889}, "clat_ns": {"min": 922, "max": 168236, "mean": 3327.573667, "stddev": 15145.100995, "N": 15889, "percentile": {"1.000000": 972, "5.000000": 996, "10.000000": 1064, "20.000000": 1096, "30.000000": 1112, "40.000000": 1128, "50.000000": 1128, "60.000000": 1128, "70.000000": 1128, "80.000000": 1144, "90.000000": 1160, "95.000000": 1336, "99.000000": 105984, "99.500000": 114176, "99.900000": 138240, "99.950000": 146432, "99.990000": 160768}}, "lat_ns": {"min": 245340, "max": 10219248, "mean": 312853.112342, "stddev": 92548.293991, "N": 15889}, "bw_min": 1570, "bw_max": 1630, "bw_agg": 100.0, "bw_mean": 1596.25, "bw_dev": 24.958299, "bw_samples": 4, "iops_min": 3140, "iops_max": 3261, "iops_mean": 3193.25, "iops_stddev": 50.268446, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.9, "sys_cpu": 69.44, "ctx": 15890, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 5.217446}, "latency_us": {"2": 91.642016, "4": 0.125873, "10": 0.925168, "20": 0.11958, "50": 0.012587, "100": 0.459437, "250": 1.497892, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:49:48.515484 2026-07-22 13:08:41.236732 +1202 50 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4k", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 71028736, "io_kbytes": 69364, "bw_bytes": 14202906, "bw": 13870, "iops": 3467.506499, "runtime": 5001, "total_ios": 17341, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 158547, "max": 582702, "mean": 165568.174788, "stddev": 8243.768716, "N": 17341}, "clat_ns": {"min": 1273, "max": 2175100, "mean": 120715.233954, "stddev": 27370.937501, "N": 17341, "percentile": {"1.000000": 95744, "5.000000": 103936, "10.000000": 105984, "20.000000": 108032, "30.000000": 111104, "40.000000": 114176, "50.000000": 118272, "60.000000": 122368, "70.000000": 124416, "80.000000": 127488, "90.000000": 138240, "95.000000": 152576, "99.000000": 164864, "99.500000": 173056, "99.900000": 288768, "99.950000": 374784, "99.990000": 1859584}}, "lat_ns": {"min": 259195, "max": 2353955, "mean": 286732.061588, "stddev": 29786.603659, "N": 17341}, "bw_min": 13408, "bw_max": 14160, "bw_agg": 99.509551, "bw_mean": 13802.0, "bw_dev": 333.026525, "bw_samples": 4, "iops_min": 3352, "iops_max": 3540, "iops_mean": 3450.5, "iops_stddev": 83.256631, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.9, "sys_cpu": 58.02, "ctx": 17351, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 2.029871, "250": 97.831728, "500": 0.109567, "750": 0.0, "1000": 0.011533}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:49:54.531578 2026-07-22 13:08:41.236732 +1203 50 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4k", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 72544256, "io_kbytes": 70844, "bw_bytes": 14505950, "bw": 14165, "iops": 3541.491702, "runtime": 5001, "total_ios": 17711, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 151965, "max": 424115, "mean": 164801.675399, "stddev": 15041.278499, "N": 17711}, "clat_ns": {"min": 1042, "max": 10137535, "mean": 115548.31359, "stddev": 372264.15786, "N": 17711, "percentile": {"1.000000": 63232, "5.000000": 73216, "10.000000": 74240, "20.000000": 75264, "30.000000": 76288, "40.000000": 77312, "50.000000": 78336, "60.000000": 79360, "70.000000": 83456, "80.000000": 90624, "90.000000": 100864, "95.000000": 121344, "99.000000": 700416, "99.500000": 1990656, "99.900000": 7176192, "99.950000": 7897088, "99.990000": 9371648}}, "lat_ns": {"min": 226846, "max": 10320057, "mean": 280776.199593, "stddev": 373223.079267, "N": 17711}, "bw_min": 12080, "bw_max": 14856, "bw_agg": 96.611832, "bw_mean": 13686.0, "bw_dev": 1271.767274, "bw_samples": 4, "iops_min": 3020, "iops_max": 3714, "iops_mean": 3421.5, "iops_stddev": 317.941819, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.84, "sys_cpu": 59.76, "ctx": 17716, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.01, "100": 89.825532, "250": 8.215233, "500": 0.502513, "750": 0.643668, "1000": 0.062108}, "latency_ms": {"2": 0.254079, "4": 0.231495, "10": 0.248433, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:50:00.55341 2026-07-22 13:08:41.236732 +1264 51 loader systemd-analyze critical-chain [{"service_name": "cloud-init.service", "slow_time_s": 1.336}, {"service_name": "cloud-init-local.service", "slow_time_s": 2.245}, {"service_name": "wicked.service", "slow_time_s": 5.393}] 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1265 51 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:02:54.609339 2026-07-22 14:02:54.609343 +1266 51 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:02:53' --until '2026-07-22 14:02:54' 1 OOM records 2026-07-22 14:02:53.838221 2026-07-22 14:02:54.288697 +1204 50 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4k", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 72146944, "io_kbytes": 70456, "bw_bytes": 14426503, "bw": 14088, "iops": 3522.095581, "runtime": 5001, "total_ios": 17614, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 151945, "max": 527109, "mean": 161927.179119, "stddev": 10464.773599, "N": 17614}, "clat_ns": {"min": 912, "max": 6668878, "mean": 119644.913137, "stddev": 142224.717264, "N": 17614, "percentile": {"1.000000": 61184, "5.000000": 74240, "10.000000": 75264, "20.000000": 76288, "30.000000": 77312, "40.000000": 77312, "50.000000": 78336, "60.000000": 80384, "70.000000": 85504, "80.000000": 96768, "90.000000": 374784, "95.000000": 395264, "99.000000": 428032, "99.500000": 440320, "99.900000": 700416, "99.950000": 2605056, "99.990000": 6586368}}, "lat_ns": {"min": 222237, "max": 6826995, "mean": 282056.630464, "stddev": 142564.520155, "N": 17614}, "bw_min": 14100, "bw_max": 14420, "bw_agg": 100.0, "bw_mean": 14228.0, "bw_dev": 141.308174, "bw_samples": 4, "iops_min": 3525, "iops_max": 3605, "iops_mean": 3557.0, "iops_stddev": 35.327043, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.82, "sys_cpu": 60.02, "ctx": 17437, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.08516}, "latency_us": {"2": 0.437152, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 81.940502, "250": 6.069036, "500": 11.229704, "750": 0.141933, "1000": 0.022709}, "latency_ms": {"2": 0.011355, "4": 0.045418, "10": 0.017032, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:50:48.144119 2026-07-22 13:08:41.236732 +1205 50 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4k", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 59424768, "io_kbytes": 58032, "bw_bytes": 11882577, "bw": 11604, "iops": 2901.019796, "runtime": 5001, "total_ios": 14508, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 155883, "max": 34781899, "mean": 178968.602013, "stddev": 339038.275968, "N": 14508}, "clat_ns": {"min": 51056, "max": 191415619, "mean": 163338.541563, "stddev": 1781190.453825, "N": 14508, "percentile": {"1.000000": 107008, "5.000000": 113152, "10.000000": 117248, "20.000000": 122368, "30.000000": 127488, "40.000000": 134144, "50.000000": 138240, "60.000000": 144384, "70.000000": 148480, "80.000000": 154624, "90.000000": 164864, "95.000000": 175104, "99.000000": 222208, "99.500000": 257024, "99.900000": 428032, "99.950000": 2375680, "99.990000": 95944704}}, "lat_ns": {"min": 261891, "max": 204831493, "mean": 342751.20885, "stddev": 1907495.950079, "N": 14508}, "bw_min": 9436, "bw_max": 12788, "bw_agg": 100.0, "bw_mean": 11669.0, "bw_dev": 1521.747679, "bw_samples": 4, "iops_min": 2359, "iops_max": 3197, "iops_mean": 2917.25, "iops_stddev": 380.43692, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.56, "sys_cpu": 50.9, "ctx": 14524, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.234353, "250": 99.159085, "500": 0.516956, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.020678, "4": 0.020678, "10": 0.013785, "20": 0.01, "50": 0.0, "100": 0.01, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:51:34.234134 2026-07-22 13:08:41.236732 +1206 50 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_2m", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.36}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 534773760, "io_kbytes": 522240, "bw_bytes": 99771223, "bw": 97432, "iops": 47.574627, "runtime": 5360, "total_ios": 255, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 365075, "max": 309988800, "mean": 12770024.807843, "stddev": 37829175.515372, "N": 255}, "clat_ns": {"min": 218901, "max": 406247580, "mean": 8242834.066667, "stddev": 38629131.168268, "N": 255, "percentile": {"1.000000": 230400, "5.000000": 242688, "10.000000": 259072, "20.000000": 292864, "30.000000": 321536, "40.000000": 358400, "50.000000": 391168, "60.000000": 436224, "70.000000": 497664, "80.000000": 602112, "90.000000": 765952, "95.000000": 50069504, "99.000000": 204472320, "99.500000": 291504128, "99.900000": 404750336, "99.950000": 404750336, "99.990000": 404750336}}, "lat_ns": {"min": 991219, "max": 406700369, "mean": 21013994.756863, "stddev": 52524204.191785, "N": 255}, "bw_min": 22528, "bw_max": 339968, "bw_agg": 100.0, "bw_mean": 104029.2, "bw_dev": 133325.012954, "bw_samples": 5, "iops_min": 11, "iops_max": 166, "iops_mean": 50.6, "iops_stddev": 65.209662, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 1.772719, "ctx": 503, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 8.627451, "500": 61.568627, "750": 19.215686, "1000": 2.352941}, "latency_ms": {"2": 1.176471, "4": 0.392157, "10": 0.0, "20": 0.0, "50": 1.960784, "100": 1.960784, "250": 1.960784, "500": 0.784314, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:51:40.249419 2026-07-22 13:08:41.236732 +1207 50 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_2m", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.02}, "metrics": {"read": {"io_bytes": 618659840, "io_kbytes": 604160, "bw_bytes": 123288130, "bw": 120398, "iops": 58.788362, "runtime": 5018, "total_ios": 295, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 890150, "max": 42849831, "mean": 9750986.471186, "stddev": 10298650.31559, "N": 295}, "clat_ns": {"min": 572604, "max": 34024850, "mean": 7252388.454237, "stddev": 8400111.313452, "N": 295, "percentile": {"1.000000": 602112, "5.000000": 643072, "10.000000": 684032, "20.000000": 782336, "30.000000": 913408, "40.000000": 987136, "50.000000": 1695744, "60.000000": 5865472, "70.000000": 11337728, "80.000000": 14745600, "90.000000": 20578304, "95.000000": 24510464, "99.000000": 30539776, "99.500000": 30801920, "99.900000": 33816576, "99.950000": 33816576, "99.990000": 33816576}}, "lat_ns": {"min": 1503941, "max": 76875763, "mean": 17004429.186441, "stddev": 16421522.226152, "N": 295}, "bw_min": 112640, "bw_max": 135168, "bw_agg": 100.0, "bw_mean": 120422.4, "bw_dev": 9649.536196, "bw_samples": 5, "iops_min": 55, "iops_max": 66, "iops_mean": 58.8, "iops_stddev": 4.711688, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.079729, "sys_cpu": 3.348615, "ctx": 1180, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 16.949153, "1000": 25.084746}, "latency_ms": {"2": 9.830508, "4": 4.745763, "10": 10.508475, "20": 22.033898, "50": 10.847458, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:51:46.895719 2026-07-22 13:08:41.236732 +1267 51 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:02:53' --until '2026-07-22 14:02:54' 0 systemd errors records 2026-07-22 14:02:53.838221 2026-07-22 14:02:54.288697 +1268 51 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:02:55.470138 2026-07-22 14:02:55.470143 +1269 51 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:02:54' --until '2026-07-22 14:02:55' 1 OOM records 2026-07-22 14:02:54.91074 2026-07-22 14:02:55.157741 +1270 51 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:02:54' --until '2026-07-22 14:02:55' 0 systemd errors records 2026-07-22 14:02:54.91074 2026-07-22 14:02:55.157741 +1271 51 loader /usr/bin/perf bench --format default --repeat 3 sched messaging {"tool": "perf", "test_type": {"benchmark": "sched/messaging"}, "time": {"duration_sec": 0.125}, "metrics": {}} 2026-07-22 14:07:05.325294 2026-07-22 14:07:05.931249 +1272 51 loader /usr/bin/perf bench --format default --repeat 3 sched messaging --thread {"tool": "perf", "test_type": {"benchmark": "sched/messaging"}, "time": {"duration_sec": 0.087}, "metrics": {}} 2026-07-22 14:07:05.936519 2026-07-22 14:07:06.173148 +1208 50 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_2m", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 767557632, "io_kbytes": 749568, "bw_bytes": 153143980, "bw": 149554, "iops": 73.024741, "runtime": 5012, "total_ios": 366, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 708780, "max": 53745116, "mean": 7890741.994536, "stddev": 9461340.862564, "N": 366}, "clat_ns": {"min": 216617, "max": 34928133, "mean": 5798206.953552, "stddev": 6817692.988143, "N": 366, "percentile": {"1.000000": 226304, "5.000000": 280576, "10.000000": 716800, "20.000000": 913408, "30.000000": 970752, "40.000000": 1028096, "50.000000": 1662976, "60.000000": 4882432, "70.000000": 8093696, "80.000000": 11206656, "90.000000": 15269888, "95.000000": 18481152, "99.000000": 32374784, "99.500000": 33816576, "99.900000": 34865152, "99.950000": 34865152, "99.990000": 34865152}}, "lat_ns": {"min": 1385278, "max": 73310093, "mean": 13689951.188525, "stddev": 14157107.284399, "N": 366}, "bw_min": 112640, "bw_max": 178176, "bw_agg": 99.966121, "bw_mean": 149504.0, "bw_dev": 24872.873577, "bw_samples": 5, "iops_min": 55, "iops_max": 87, "iops_mean": 73.0, "iops_stddev": 12.144958, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 3.851527, "ctx": 1135, "majf": 0, "minf": 529, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 2.73224, "500": 3.825137, "750": 4.918033, "1000": 24.043716}, "latency_ms": {"2": 15.846995, "4": 4.098361, "10": 22.404372, "20": 18.306011, "50": 3.825137, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:52:53.039834 2026-07-22 13:08:41.236732 +1209 50 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_2m", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "2m"}}, "time": {"duration_sec": 11.96}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 503316480, "io_kbytes": 491520, "bw_bytes": 42086836, "bw": 41100, "iops": 20.068568, "runtime": 11959, "total_ios": 240, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1032887, "max": 186398519, "mean": 15679288.5875, "stddev": 37449094.155169, "N": 240}, "clat_ns": {"min": 142758, "max": 7581854582, "mean": 34142159.183333, "stddev": 489405552.329927, "N": 240, "percentile": {"1.000000": 152576, "5.000000": 166912, "10.000000": 175104, "20.000000": 187392, "30.000000": 203776, "40.000000": 218112, "50.000000": 248832, "60.000000": 296960, "70.000000": 337920, "80.000000": 374784, "90.000000": 428032, "95.000000": 552960, "99.000000": 81264640, "99.500000": 139460608, "99.900000": 7549747200, "99.950000": 7549747200, "99.990000": 7549747200}}, "lat_ns": {"min": 1230558, "max": 7752037315, "mean": 49822307.3625, "stddev": 500662110.960014, "N": 240}, "bw_min": 20480, "bw_max": 321536, "bw_agg": 100.0, "bw_mean": 97894.4, "bw_dev": 125742.863769, "bw_samples": 5, "iops_min": 10, "iops_max": 157, "iops_mean": 47.8, "iops_stddev": 61.397883, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.100351, "sys_cpu": 1.087138, "ctx": 721, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 50.416667, "500": 43.75, "750": 0.833333, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 3.333333, "100": 0.833333, "250": 0.416667, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.416667}}} 2026-07-22 13:53:33.62271 2026-07-22 13:08:41.236732 +1210 50 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "write_4m", "detailed": {"size": "1365MB", "rw": "write", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.04}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 557842432, "io_kbytes": 544768, "bw_bytes": 110748944, "bw": 108153, "iops": 26.404606, "runtime": 5037, "total_ios": 133, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1687335, "max": 218760378, "mean": 28158392.338346, "stddev": 50659358.026338, "N": 133}, "clat_ns": {"min": 202760, "max": 123821656, "mean": 9703671.406015, "stddev": 22448218.491659, "N": 133, "percentile": {"1.000000": 203776, "5.000000": 218112, "10.000000": 374784, "20.000000": 602112, "30.000000": 634880, "40.000000": 675840, "50.000000": 765952, "60.000000": 913408, "70.000000": 1036288, "80.000000": 1171456, "90.000000": 41156608, "95.000000": 57933824, "99.000000": 91750400, "99.500000": 124256256, "99.900000": 124256256, "99.950000": 124256256, "99.990000": 124256256}}, "lat_ns": {"min": 2255831, "max": 243412978, "mean": 37863328.639098, "stddev": 56907190.837926, "N": 133}, "bw_min": 45056, "bw_max": 339628, "bw_agg": 99.919313, "bw_mean": 108066.4, "bw_dev": 129523.80092, "bw_samples": 5, "iops_min": 11, "iops_max": 82, "iops_mean": 26.2, "iops_stddev": 31.212177, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.218427, "sys_cpu": 1.66799, "ctx": 546, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 6.015038, "500": 4.511278, "750": 37.593985, "1000": 20.300752}, "latency_ms": {"2": 14.285714, "4": 0.0, "10": 0.0, "20": 0.0, "50": 9.774436, "100": 6.766917, "250": 0.75188, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:53:46.655258 2026-07-22 13:08:41.236732 +1211 50 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "read_4m", "detailed": {"size": "1365MB", "rw": "read", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 746586112, "io_kbytes": 729088, "bw_bytes": 149287364, "bw": 145788, "iops": 35.592881, "runtime": 5001, "total_ios": 178, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1262548, "max": 104802623, "mean": 23075809.539326, "stddev": 23999897.394018, "N": 178}, "clat_ns": {"min": 169027, "max": 32734037, "mean": 5013320.191011, "stddev": 6863032.501719, "N": 178, "percentile": {"1.000000": 168960, "5.000000": 214016, "10.000000": 248832, "20.000000": 610304, "30.000000": 872448, "40.000000": 937984, "50.000000": 1028096, "60.000000": 2506752, "70.000000": 5734400, "80.000000": 10158080, "90.000000": 14614528, "95.000000": 20054016, "99.000000": 29753344, "99.500000": 32636928, "99.900000": 32636928, "99.950000": 32636928, "99.990000": 32636928}}, "lat_ns": {"min": 1877842, "max": 126021913, "mean": 28090425.382022, "stddev": 28042009.806231, "N": 178}, "bw_min": 98304, "bw_max": 196608, "bw_agg": 100.0, "bw_mean": 146432.0, "bw_dev": 40462.039757, "bw_samples": 4, "iops_min": 24, "iops_max": 48, "iops_mean": 35.75, "iops_stddev": 9.878428, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 2.56, "ctx": 938, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 10.11236, "500": 5.05618, "750": 10.11236, "1000": 23.595506}, "latency_ms": {"2": 8.988764, "4": 7.865169, "10": 14.044944, "20": 15.730337, "50": 4.494382, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:53:52.671541 2026-07-22 13:08:41.236732 +1273 51 loader /usr/bin/perf bench --format default --repeat 3 sched pipe {"tool": "perf", "test_type": {"benchmark": "sched/pipe"}, "time": {"duration_sec": 13.111}, "metrics": {"usecs_per_op": 13.111183, "ops_per_sec": 76270}} 2026-07-22 14:07:06.178955 2026-07-22 14:07:19.411312 +1274 51 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:07:19.733245 2026-07-22 14:07:19.733248 +1275 51 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:02:56' --until '2026-07-22 14:07:19' 0 OOM records 2026-07-22 14:02:56.443507 2026-07-22 14:07:19.423789 +1276 51 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:02:56' --until '2026-07-22 14:07:19' 0 systemd errors records 2026-07-22 14:02:56.443507 2026-07-22 14:07:19.423789 +1212 50 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randread_4m", "detailed": {"size": "1365MB", "rw": "randread", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.01}, "metrics": {"read": {"io_bytes": 662700032, "io_kbytes": 647168, "bw_bytes": 132117231, "bw": 129020, "iops": 31.499203, "runtime": 5016, "total_ios": 158, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1960096, "max": 97410768, "mean": 25154709.734177, "stddev": 21005994.169107, "N": 158}, "clat_ns": {"min": 706225, "max": 27556698, "mean": 6579677.708861, "stddev": 6565572.709846, "N": 158, "percentile": {"1.000000": 724992, "5.000000": 888832, "10.000000": 937984, "20.000000": 978944, "30.000000": 1056768, "40.000000": 1204224, "50.000000": 4423680, "60.000000": 7569408, "70.000000": 8847360, "80.000000": 12648448, "90.000000": 16056320, "95.000000": 20840448, "99.000000": 23724032, "99.500000": 27656192, "99.900000": 27656192, "99.950000": 27656192, "99.990000": 27656192}}, "lat_ns": {"min": 2667053, "max": 121095352, "mean": 31735847.259494, "stddev": 24177172.880033, "N": 158}, "bw_min": 106496, "bw_max": 147456, "bw_agg": 99.684753, "bw_mean": 128614.4, "bw_dev": 17759.832792, "bw_samples": 5, "iops_min": 26, "iops_max": 36, "iops_mean": 31.4, "iops_stddev": 4.335897, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 1.754736, "ctx": 791, "majf": 0, "minf": 530, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 1.265823, "1000": 20.886076}, "latency_ms": {"2": 20.886076, "4": 5.696203, "10": 22.151899, "20": 23.417722, "50": 5.696203, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:54:47.468821 2026-07-22 13:08:41.236732 +1213 50 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1365MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260722-134810Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "randwrite_4m", "detailed": {"size": "1365MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4m"}}, "time": {"duration_sec": 5.13}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 524288000, "io_kbytes": 512000, "bw_bytes": 102220315, "bw": 99824, "iops": 24.371222, "runtime": 5129, "total_ios": 125, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1246899, "max": 569674803, "mean": 31661749.88, "stddev": 73481312.577783, "N": 125}, "clat_ns": {"min": 153017, "max": 148604931, "mean": 9356358.376, "stddev": 28439497.312448, "N": 125, "percentile": {"1.000000": 156672, "5.000000": 164864, "10.000000": 183296, "20.000000": 216064, "30.000000": 288768, "40.000000": 358400, "50.000000": 436224, "60.000000": 684032, "70.000000": 790528, "80.000000": 978944, "90.000000": 31850496, "95.000000": 86507520, "99.000000": 128450560, "99.500000": 147849216, "99.900000": 147849216, "99.950000": 147849216, "99.990000": 147849216}}, "lat_ns": {"min": 1890807, "max": 570977326, "mean": 41019615.848, "stddev": 76878755.482875, "N": 125}, "bw_min": 34393, "bw_max": 331776, "bw_agg": 100.0, "bw_mean": 115082.75, "bw_dev": 144595.8211, "bw_samples": 4, "iops_min": 8, "iops_max": 81, "iops_mean": 27.75, "iops_stddev": 35.537539, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.0, "sys_cpu": 1.696568, "ctx": 445, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 25.6, "500": 27.2, "750": 12.0, "1000": 16.0}, "latency_ms": {"2": 8.0, "4": 0.0, "10": 0.8, "20": 0.0, "50": 3.2, "100": 3.2, "250": 4.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:55:34.758437 2026-07-22 13:08:41.236732 +1214 50 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 13:55:50.50071 2026-07-22 13:55:50.500714 +1215 50 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 13:31:44' --until '2026-07-22 13:55:41' 0 OOM records 2026-07-22 13:31:44.16172 2026-07-22 13:55:41.563249 +1216 50 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 13:31:44' --until '2026-07-22 13:55:41' 0 systemd errors records 2026-07-22 13:31:44.16172 2026-07-22 13:55:41.563249 +1217 50 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 272MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260722-135553Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260722-135553Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-22 13:55:53.507246 2026-07-22 13:08:41.236732 +1218 50 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 272MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260722-135553Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260722-135553Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260722-135553Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260722-135553Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260722-135553Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-22 13:55:53.50476 2026-07-22 13:08:41.236732 +1219 50 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 272MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260722-135553Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 15 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260722-135553Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260722-135553Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260722-135553Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260722-135553Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-22 13:55:53.508516 2026-07-22 13:08:41.236732 +1220 50 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 272MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260722-135553Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260722-135553Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {}, "time": {}, "metrics": {}} 2026-07-22 13:55:59.70715 2026-07-22 13:08:41.236732 +1226 50 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 272MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260722-135553Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260722-135553Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260722-135553Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260722-135553Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260722-135553Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_512b", "detailed": {"size": "272MB", "rw": "randread", "ioengine": "libaio", "bs": "512b"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 5146112, "io_kbytes": 5025, "bw_bytes": 367553, "bw": 358, "iops": 717.877294, "runtime": 14001, "total_ios": 10051, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 3757, "max": 6312799395, "mean": 1193261.48035, "stddev": 63022036.464825, "N": 10051}, "clat_ns": {"min": 1233, "max": 142772221, "mean": 197470.641727, "stddev": 1658891.490454, "N": 10051, "percentile": {"1.000000": 72192, "5.000000": 75264, "10.000000": 77312, "20.000000": 84480, "30.000000": 88576, "40.000000": 91648, "50.000000": 93696, "60.000000": 96768, "70.000000": 103936, "80.000000": 177152, "90.000000": 395264, "95.000000": 407552, "99.000000": 618496, "99.500000": 1384448, "99.900000": 6520832, "99.950000": 17956864, "99.990000": 64749568}}, "lat_ns": {"min": 226976, "max": 6313602071, "mean": 1391140.504925, "stddev": 63050105.295961, "N": 10051}, "bw_min": 19, "bw_max": 1338, "bw_agg": 100.0, "bw_mean": 543.375, "bw_dev": 416.696511, "bw_samples": 8, "iops_min": 38, "iops_max": 2676, "iops_mean": 1087.125, "iops_stddev": 833.498725, "iops_samples": 8}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.564286, "sys_cpu": 12.85, "ctx": 21513, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.019899, "100": 66.351607, "250": 14.884091, "500": 17.122674, "750": 0.716347, "1000": 0.159188}, "latency_ms": {"2": 0.338275, "4": 0.198985, "10": 0.119391, "20": 0.029848, "50": 0.029848, "100": 0.01, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:56:31.454577 2026-07-22 13:08:41.236732 +1227 50 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 272MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260722-135553Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260722-135553Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260722-135553Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_256k", "detailed": {"size": "272MB", "rw": "read", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 14.39}, "metrics": {"read": {"io_bytes": 4064542720, "io_kbytes": 3969280, "bw_bytes": 282416809, "bw": 275797, "iops": 1077.33463, "runtime": 14392, "total_ios": 15505, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 10259, "max": 6525358543, "mean": 791400.653273, "stddev": 52407243.365499, "N": 15505}, "clat_ns": {"min": 1172, "max": 21433782, "mean": 134857.793357, "stddev": 421457.210053, "N": 15505, "percentile": {"1.000000": 89600, "5.000000": 95744, "10.000000": 97792, "20.000000": 100864, "30.000000": 103936, "40.000000": 105984, "50.000000": 108032, "60.000000": 110080, "70.000000": 113152, "80.000000": 117248, "90.000000": 126464, "95.000000": 138240, "99.000000": 305152, "99.500000": 366592, "99.900000": 6717440, "99.950000": 7176192, "99.990000": 20578304}}, "lat_ns": {"min": 282419, "max": 6526027227, "mean": 926650.200064, "stddev": 52413408.895678, "N": 15505}, "bw_min": 367616, "bw_max": 734208, "bw_agg": 100.0, "bw_mean": 496020.625, "bw_dev": 118508.697223, "bw_samples": 8, "iops_min": 1436, "iops_max": 2868, "iops_mean": 1937.5, "iops_stddev": 462.97763, "iops_samples": 8}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.847752, "sys_cpu": 22.479327, "ctx": 22643, "majf": 0, "minf": 85, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.01, "100": 15.820703, "250": 82.534666, "500": 1.251209, "750": 0.032248, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.070945, "10": 0.245082, "20": 0.01, "50": 0.012899, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:56:39.46594 2026-07-22 13:08:41.236732 +1228 50 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 272MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260722-135553Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 14 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260722-135553Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260722-135553Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260722-135553Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260722-135553Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_4k", "detailed": {"size": "272MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 14.0}, "metrics": {"read": {"io_bytes": 229068800, "io_kbytes": 223700, "bw_bytes": 16360888, "bw": 15977, "iops": 3994.357546, "runtime": 14001, "total_ios": 55925, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 8996, "max": 21477624, "mean": 164713.460474, "stddev": 130307.471538, "N": 55925}, "clat_ns": {"min": 921, "max": 5210654, "mean": 83518.592007, "stddev": 32579.464344, "N": 55925, "percentile": {"1.000000": 65280, "5.000000": 74240, "10.000000": 75264, "20.000000": 76288, "30.000000": 77312, "40.000000": 77312, "50.000000": 78336, "60.000000": 80384, "70.000000": 84480, "80.000000": 91648, "90.000000": 97792, "95.000000": 102912, "99.000000": 121344, "99.500000": 126464, "99.900000": 168960, "99.950000": 238592, "99.990000": 798720}}, "lat_ns": {"min": 229401, "max": 21778428, "mean": 248660.41713, "stddev": 135281.03611, "N": 55925}, "bw_min": 15124, "bw_max": 16388, "bw_agg": 100.0, "bw_mean": 16012.538462, "bw_dev": 313.586409, "bw_samples": 13, "iops_min": 3781, "iops_max": 4097, "iops_mean": 4003.076923, "iops_stddev": 78.346944, "iops_samples": 13}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.214286, "sys_cpu": 66.307143, "ctx": 55827, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.010729}, "latency_us": {"2": 0.200268, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.01, "100": 92.920876, "250": 6.819848, "500": 0.033974, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:56:53.796383 2026-07-22 13:08:41.236732 +1229 50 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 13:57:16.94399 2026-07-22 13:57:16.943995 +1230 50 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 13:55:52' --until '2026-07-22 13:57:16' 50 OOM records 2026-07-22 13:55:52.585268 2026-07-22 13:57:16.432971 +1231 50 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 13:55:52' --until '2026-07-22 13:57:16' 0 systemd errors records 2026-07-22 13:55:52.585268 2026-07-22 13:57:16.432971 +1232 50 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260722-135718Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6550454272, "io_kbytes": 6396928, "bw_bytes": 1309828888, "bw": 1279129, "iops": 1249.15017, "runtime": 5001, "total_ios": 6247, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 567083, "max": 3695482, "mean": 623161.887626, "stddev": 69643.783393, "N": 6247}, "clat_ns": {"min": 1242, "max": 2314812, "mean": 175061.808868, "stddev": 53147.869983, "N": 6247, "percentile": {"1.000000": 138240, "5.000000": 146432, "10.000000": 150528, "20.000000": 156672, "30.000000": 160768, "40.000000": 166912, "50.000000": 171008, "60.000000": 175104, "70.000000": 179200, "80.000000": 185344, "90.000000": 193536, "95.000000": 201728, "99.000000": 301056, "99.500000": 346112, "99.900000": 888832, "99.950000": 1253376, "99.990000": 2310144}}, "lat_ns": {"min": 722515, "max": 3872794, "mean": 798729.551785, "stddev": 99215.966047, "N": 6247}, "bw_min": 1245184, "bw_max": 1302528, "bw_agg": 100.0, "bw_mean": 1283584.0, "bw_dev": 25979.480724, "bw_samples": 4, "iops_min": 1216, "iops_max": 1272, "iops_mean": 1253.5, "iops_stddev": 25.370587, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.94, "sys_cpu": 29.3, "ctx": 12497, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.032015, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.016008, "250": 97.967024, "500": 1.808868, "750": 0.016008, "1000": 0.080038}, "latency_ms": {"2": 0.064031, "4": 0.016008, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:57:18.573345 2026-07-22 13:08:41.236732 +1233 50 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260722-135718Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1669857280, "io_kbytes": 1630720, "bw_bytes": 333904675, "bw": 326078, "iops": 1273.745251, "runtime": 5001, "total_ios": 6370, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 60153, "max": 738564991, "mean": 332046.354317, "stddev": 9258852.473258, "N": 6370}, "clat_ns": {"min": 103965, "max": 1909626625, "mean": 450830.613187, "stddev": 23924665.720055, "N": 6370, "percentile": {"1.000000": 119296, "5.000000": 126464, "10.000000": 130560, "20.000000": 134144, "30.000000": 136192, "40.000000": 140288, "50.000000": 142336, "60.000000": 146432, "70.000000": 150528, "80.000000": 154624, "90.000000": 168960, "95.000000": 205824, "99.000000": 280576, "99.500000": 350208, "99.900000": 839680, "99.950000": 2039808, "99.990000": 1904214016}}, "lat_ns": {"min": 322726, "max": 1909691698, "mean": 783317.358399, "stddev": 25651539.449182, "N": 6370}, "bw_min": 22272, "bw_max": 705536, "bw_agg": 92.195204, "bw_mean": 300629.333333, "bw_dev": 358780.537027, "bw_samples": 3, "iops_min": 87, "iops_max": 2756, "iops_mean": 1174.333333, "iops_stddev": 1401.486473, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.48, "sys_cpu": 26.46, "ctx": 6379, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 98.634223, "500": 1.083203, "750": 0.125589, "1000": 0.062794}, "latency_ms": {"2": 0.031397, "4": 0.047096, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.015699, ">=2000": 0.0}}} 2026-07-22 13:57:24.798799 2026-07-22 13:08:41.236732 +1234 50 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260722-135718Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260722-135718Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_64k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 5.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 893845504, "io_kbytes": 872896, "bw_bytes": 178733354, "bw": 174544, "iops": 2727.254549, "runtime": 5001, "total_ios": 13639, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 159699, "max": 1168712, "mean": 174473.402669, "stddev": 24137.205792, "N": 13639}, "clat_ns": {"min": 1844, "max": 118345845, "mean": 190031.600264, "stddev": 1619583.300881, "N": 13639, "percentile": {"1.000000": 81408, "5.000000": 87552, "10.000000": 90624, "20.000000": 93696, "30.000000": 96768, "40.000000": 99840, "50.000000": 103936, "60.000000": 107008, "70.000000": 112128, "80.000000": 123392, "90.000000": 142336, "95.000000": 177152, "99.000000": 1368064, "99.500000": 2277376, "99.900000": 11730944, "99.950000": 26607616, "99.990000": 98041856}}, "lat_ns": {"min": 245670, "max": 118678720, "mean": 364957.789281, "stddev": 1623142.420343, "N": 13639}, "bw_min": 64768, "bw_max": 236352, "bw_agg": 91.456443, "bw_mean": 159632.0, "bw_dev": 73558.738579, "bw_samples": 4, "iops_min": 1012, "iops_max": 3693, "iops_mean": 2494.25, "iops_stddev": 1149.35529, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.5, "sys_cpu": 48.84, "ctx": 13646, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 39.665665, "250": 57.218271, "500": 0.681868, "750": 0.021996, "1000": 0.058655}, "latency_ms": {"2": 1.803651, "4": 0.256617, "10": 0.183298, "20": 0.03666, "50": 0.03666, "100": 0.021996, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:57:30.921125 2026-07-22 13:08:41.236732 +1235 50 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260722-135718Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260722-135718Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260722-135718Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260722-135718Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260722-135718Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_1M", "detailed": {"size": "100MB", "rw": "read", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 9406775296, "io_kbytes": 9186304, "bw_bytes": 1567534626, "bw": 1530795, "iops": 1494.917514, "runtime": 6001, "total_ios": 8971, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 506039, "max": 1205220, "mean": 558886.436964, "stddev": 28609.650191, "N": 8971}, "clat_ns": {"min": 57769, "max": 1774007, "mean": 107886.956192, "stddev": 27440.628102, "N": 8971, "percentile": {"1.000000": 77312, "5.000000": 84480, "10.000000": 87552, "20.000000": 91648, "30.000000": 95744, "40.000000": 99840, "50.000000": 104960, "60.000000": 110080, "70.000000": 117248, "80.000000": 124416, "90.000000": 132096, "95.000000": 136192, "99.000000": 150528, "99.500000": 158720, "99.900000": 197632, "99.950000": 325632, "99.990000": 1777664}}, "lat_ns": {"min": 611257, "max": 2342764, "mean": 667320.221491, "stddev": 37668.224034, "N": 8971}, "bw_min": 1512448, "bw_max": 1540096, "bw_agg": 99.978734, "bw_mean": 1530470.4, "bw_dev": 10754.437819, "bw_samples": 5, "iops_min": 1477, "iops_max": 1504, "iops_mean": 1494.6, "iops_stddev": 10.502381, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.866667, "sys_cpu": 36.166667, "ctx": 17948, "majf": 0, "minf": 275, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 39.884071, "250": 60.060194, "500": 0.022294, "750": 0.011147, "1000": 0.011147}, "latency_ms": {"2": 0.011147, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:57:37.043316 2026-07-22 13:08:41.236732 +1236 50 loader /usr/bin/fio --name seq_read_64k --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260722-135718Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260722-135718Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260722-135718Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260722-135718Z/read/bs_64k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260722-135718Z/read/bs_64k/read-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_read_64k", "detailed": {"size": "100MB", "rw": "read", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 1565720576, "io_kbytes": 1529024, "bw_bytes": 260909944, "bw": 254794, "iops": 3981.169805, "runtime": 6001, "total_ios": 23891, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 157646, "max": 563827, "mean": 167232.882424, "stddev": 7571.310814, "N": 23891}, "clat_ns": {"min": 1062, "max": 375184, "mean": 82023.197983, "stddev": 9746.503504, "N": 23891, "percentile": {"1.000000": 64256, "5.000000": 74240, "10.000000": 75264, "20.000000": 77312, "30.000000": 78336, "40.000000": 79360, "50.000000": 80384, "60.000000": 81408, "70.000000": 83456, "80.000000": 85504, "90.000000": 89600, "95.000000": 96768, "99.000000": 113152, "99.500000": 118272, "99.900000": 183296, "99.950000": 222208, "99.990000": 301056}}, "lat_ns": {"min": 234761, "max": 923302, "mean": 249690.405718, "stddev": 13680.613292, "N": 23891}, "bw_min": 251328, "bw_max": 257600, "bw_agg": 99.874853, "bw_mean": 254476.8, "bw_dev": 2541.29164, "bw_samples": 5, "iops_min": 3927, "iops_max": 4025, "iops_mean": 3976.2, "iops_stddev": 39.707682, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.466667, "sys_cpu": 67.616667, "ctx": 23899, "majf": 0, "minf": 37, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.01, "100": 96.375204, "250": 3.578754, "500": 0.033485, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:57:48.869821 2026-07-22 13:08:41.236732 +1237 50 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260722-135718Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_64k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1400307712, "io_kbytes": 1367488, "bw_bytes": 233345727, "bw": 227876, "iops": 3560.573238, "runtime": 6001, "total_ios": 21367, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 12494, "max": 1279781, "mean": 169904.944494, "stddev": 14994.588358, "N": 21367}, "clat_ns": {"min": 1202, "max": 8932755, "mean": 108741.010671, "stddev": 75964.366107, "N": 21367, "percentile": {"1.000000": 83456, "5.000000": 89600, "10.000000": 93696, "20.000000": 97792, "30.000000": 100864, "40.000000": 102912, "50.000000": 105984, "60.000000": 108032, "70.000000": 111104, "80.000000": 115200, "90.000000": 123392, "95.000000": 134144, "99.000000": 154624, "99.500000": 164864, "99.900000": 284672, "99.950000": 634880, "99.990000": 2375680}}, "lat_ns": {"min": 248156, "max": 9116740, "mean": 279043.163383, "stddev": 77131.536557, "N": 21367}, "bw_min": 220451, "bw_max": 235264, "bw_agg": 100.0, "bw_mean": 227923.8, "bw_dev": 5565.319056, "bw_samples": 5, "iops_min": 3444, "iops_max": 3676, "iops_mean": 3561.2, "iops_stddev": 87.141838, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 4.033333, "sys_cpu": 59.933333, "ctx": 21386, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 27.8888, "250": 71.961436, "500": 0.088922, "750": 0.01, "1000": 0.01872}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:57:58.492192 2026-07-22 13:08:41.236732 +1238 50 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260722-135718Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_16k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 6.11}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 96452608, "io_kbytes": 94192, "bw_bytes": 15773116, "bw": 15403, "iops": 962.714636, "runtime": 6115, "total_ios": 5887, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 9738, "max": 21560770, "mean": 175215.930695, "stddev": 396017.875428, "N": 5887}, "clat_ns": {"min": 73427, "max": 2306178669, "mean": 861195.29132, "stddev": 39761149.087158, "N": 5887, "percentile": {"1.000000": 100864, "5.000000": 107008, "10.000000": 110080, "20.000000": 113152, "30.000000": 115200, "40.000000": 118272, "50.000000": 122368, "60.000000": 126464, "70.000000": 132096, "80.000000": 142336, "90.000000": 152576, "95.000000": 166912, "99.000000": 248832, "99.500000": 305152, "99.900000": 987136, "99.950000": 1417216, "99.990000": 2298478592}}, "lat_ns": {"min": 261600, "max": 2306344100, "mean": 1036810.779854, "stddev": 39761957.618309, "N": 5887}, "bw_min": 128, "bw_max": 49584, "bw_agg": 100.0, "bw_mean": 31392.0, "bw_dev": 27196.173849, "bw_samples": 3, "iops_min": 8, "iops_max": 3099, "iops_mean": 1962.0, "iops_stddev": 1699.760866, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 0.670592, "sys_cpu": 16.404972, "ctx": 5898, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.713436, "250": 98.318329, "500": 0.764396, "750": 0.067946, "1000": 0.05096}, "latency_ms": {"2": 0.05096, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.016987, ">=2000": 0.016987}}} 2026-07-22 13:58:05.512336 2026-07-22 13:08:41.236732 +1239 50 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260722-135718Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260722-135718Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 61591552, "io_kbytes": 60148, "bw_bytes": 10263548, "bw": 10022, "iops": 2505.749042, "runtime": 6001, "total_ios": 15037, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 157867, "max": 1449118, "mean": 165936.552238, "stddev": 19354.421618, "N": 15037}, "clat_ns": {"min": 1382, "max": 1627060459, "mean": 230890.144111, "stddev": 13267731.024583, "N": 15037, "percentile": {"1.000000": 95744, "5.000000": 103936, "10.000000": 105984, "20.000000": 108032, "30.000000": 110080, "40.000000": 112128, "50.000000": 114176, "60.000000": 118272, "70.000000": 124416, "80.000000": 134144, "90.000000": 142336, "95.000000": 150528, "99.000000": 179200, "99.500000": 224256, "99.900000": 1028096, "99.950000": 1597440, "99.990000": 5472256}}, "lat_ns": {"min": 259046, "max": 1627223465, "mean": 397258.665957, "stddev": 13267723.70757, "N": 15037}, "bw_min": 5848, "bw_max": 13908, "bw_agg": 100.0, "bw_mean": 11764.5, "bw_dev": 3950.935206, "bw_samples": 4, "iops_min": 1462, "iops_max": 3477, "iops_mean": 2941.0, "iops_stddev": 987.664248, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.016667, "sys_cpu": 41.85, "ctx": 15053, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 1.975128, "250": 97.645807, "500": 0.186207, "750": 0.039902, "1000": 0.039902}, "latency_ms": {"2": 0.073153, "4": 0.019951, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.01, ">=2000": 0.0}}} 2026-07-22 13:58:12.839259 2026-07-22 13:08:41.236732 +1240 50 loader /usr/bin/fio --name rand_read_16k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260722-135718Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260722-135718Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260722-135718Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260722-135718Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260722-135718Z/randread/bs_16k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_16k", "detailed": {"size": "100MB", "rw": "randread", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 382631936, "io_kbytes": 373664, "bw_bytes": 63761362, "bw": 62266, "iops": 3891.684719, "runtime": 6001, "total_ios": 23354, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 157166, "max": 195681169, "mean": 173193.978291, "stddev": 1279413.901407, "N": 23354}, "clat_ns": {"min": 1012, "max": 527459, "mean": 81619.923696, "stddev": 11118.379438, "N": 23354, "percentile": {"1.000000": 67072, "5.000000": 74240, "10.000000": 75264, "20.000000": 76288, "30.000000": 77312, "40.000000": 78336, "50.000000": 78336, "60.000000": 79360, "70.000000": 81408, "80.000000": 84480, "90.000000": 93696, "95.000000": 98816, "99.000000": 115200, "99.500000": 127488, "99.900000": 181248, "99.950000": 248832, "99.990000": 354304}}, "lat_ns": {"min": 230272, "max": 195867509, "mean": 255222.742956, "stddev": 1280162.333791, "N": 23354}, "bw_min": 51292, "bw_max": 64640, "bw_agg": 99.291831, "bw_mean": 61826.0, "bw_dev": 5891.046045, "bw_samples": 5, "iops_min": 3205, "iops_max": 4040, "iops_mean": 3863.6, "iops_stddev": 368.31549, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 2.633333, "sys_cpu": 68.533333, "ctx": 23332, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.064229, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.01, "100": 95.692387, "250": 4.187719, "500": 0.042819, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:58:19.858789 2026-07-22 13:08:41.236732 +1241 50 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260722-135718Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 6 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260722-135718Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260722-135718Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260722-135718Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260722-135718Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_read_4k", "detailed": {"size": "100MB", "rw": "randread", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 6.0}, "metrics": {"read": {"io_bytes": 99422208, "io_kbytes": 97092, "bw_bytes": 16567606, "bw": 16179, "iops": 4044.825862, "runtime": 6001, "total_ios": 24273, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 8676, "max": 580989, "mean": 164078.806493, "stddev": 8516.658676, "N": 24273}, "clat_ns": {"min": 962, "max": 5608539, "mean": 81079.222964, "stddev": 37347.211429, "N": 24273, "percentile": {"1.000000": 62720, "5.000000": 74240, "10.000000": 74240, "20.000000": 75264, "30.000000": 76288, "40.000000": 76288, "50.000000": 77312, "60.000000": 78336, "70.000000": 81408, "80.000000": 84480, "90.000000": 94720, "95.000000": 97792, "99.000000": 115200, "99.500000": 122368, "99.900000": 177152, "99.950000": 207872, "99.990000": 325632}}, "lat_ns": {"min": 227797, "max": 5617366, "mean": 245549.296791, "stddev": 38019.661132, "N": 24273}, "bw_min": 15856, "bw_max": 16304, "bw_agg": 100.0, "bw_mean": 16181.6, "bw_dev": 187.30937, "bw_samples": 5, "iops_min": 3964, "iops_max": 4076, "iops_mean": 4045.4, "iops_stddev": 46.827342, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.8, "sys_cpu": 68.25, "ctx": 24275, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.01}, "latency_us": {"2": 0.032958, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.012359, "100": 96.205661, "250": 3.724303, "500": 0.012359, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:58:29.695688 2026-07-22 13:08:41.236732 +1242 50 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 13:58:42.127796 2026-07-22 13:58:42.127802 +1243 50 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 13:57:18' --until '2026-07-22 13:58:41' 0 OOM records 2026-07-22 13:57:18.009403 2026-07-22 13:58:41.817728 +1244 50 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 13:57:18' --until '2026-07-22 13:58:41' 0 systemd errors records 2026-07-22 13:57:18.009403 2026-07-22 13:58:41.817728 +1245 50 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260722-135843Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_1M", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "1M"}}, "time": {"duration_sec": 9.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 11737759744, "io_kbytes": 11462656, "bw_bytes": 1304050632, "bw": 1273486, "iops": 1243.639596, "runtime": 9001, "total_ios": 11194, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 456846, "max": 45145227, "mean": 611926.224495, "stddev": 424399.991141, "N": 11194}, "clat_ns": {"min": 1233, "max": 4967657, "mean": 189984.480793, "stddev": 70149.608601, "N": 11194, "percentile": {"1.000000": 152576, "5.000000": 160768, "10.000000": 166912, "20.000000": 171008, "30.000000": 175104, "40.000000": 179200, "50.000000": 185344, "60.000000": 189440, "70.000000": 193536, "80.000000": 199680, "90.000000": 209920, "95.000000": 226304, "99.000000": 284672, "99.500000": 370688, "99.900000": 618496, "99.950000": 929792, "99.990000": 3588096}}, "lat_ns": {"min": 699141, "max": 46408105, "mean": 802358.725389, "stddev": 441693.165117, "N": 11194}, "bw_min": 1215488, "bw_max": 1335296, "bw_agg": 100.0, "bw_mean": 1283456.0, "bw_dev": 34651.84832, "bw_samples": 8, "iops_min": 1187, "iops_max": 1304, "iops_mean": 1253.375, "iops_stddev": 33.839696, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.944444, "sys_cpu": 28.222222, "ctx": 22395, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.017867, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 98.168662, "500": 1.545471, "750": 0.196534, "1000": 0.0268}, "latency_ms": {"2": 0.017867, "4": 0.017867, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:58:43.830635 2026-07-22 13:08:41.236732 +1246 50 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260722-135843Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_256k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "256k"}}, "time": {"duration_sec": 10.61}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 3436183552, "io_kbytes": 3355648, "bw_bytes": 323832207, "bw": 316242, "iops": 1235.321836, "runtime": 10611, "total_ios": 13108, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 193332, "max": 5883074551, "mean": 655547.28105, "stddev": 51383168.871713, "N": 13108}, "clat_ns": {"min": 1062, "max": 3285222, "mean": 151800.137092, "stddev": 38756.614494, "N": 13108, "percentile": {"1.000000": 124416, "5.000000": 132096, "10.000000": 134144, "20.000000": 138240, "30.000000": 142336, "40.000000": 144384, "50.000000": 146432, "60.000000": 150528, "70.000000": 154624, "80.000000": 158720, "90.000000": 168960, "95.000000": 181248, "99.000000": 242688, "99.500000": 309248, "99.900000": 493568, "99.950000": 675840, "99.990000": 823296}}, "lat_ns": {"min": 320160, "max": 5883398649, "mean": 807779.79852, "stddev": 51384687.837058, "N": 13108}, "bw_min": 526336, "bw_max": 713216, "bw_agg": 100.0, "bw_mean": 671078.4, "bw_dev": 81380.141145, "bw_samples": 5, "iops_min": 2056, "iops_max": 2786, "iops_mean": 2621.4, "iops_stddev": 317.891176, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.31951, "sys_cpu": 25.475966, "ctx": 13114, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 99.069271, "500": 0.823924, "750": 0.061031, "1000": 0.030516}, "latency_ms": {"2": 0.0, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:58:54.657004 2026-07-22 13:08:41.236732 +1277 51 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 216.45}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 5567, "real_time_secs": 12.0, "usr_time_secs": 0.14, "sys_time_secs": 2.07, "bogo_ops_s_real_time": 463.76, "bogo_ops_s_usr_sys_time": 2519.56, "cpu_used_per_instance": 18.41, "rss_max_kb": 1840, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 750114, "real_time_secs": 12.0, "usr_time_secs": 0.6, "sys_time_secs": 1.92, "bogo_ops_s_real_time": 62506.77, "bogo_ops_s_usr_sys_time": 298296.15, "cpu_used_per_instance": 20.95, "rss_max_kb": 2096, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 2911634, "real_time_secs": 12.0, "usr_time_secs": 0.34, "sys_time_secs": 1.95, "bogo_ops_s_real_time": 242623.35, "bogo_ops_s_usr_sys_time": 1273599.32, "cpu_used_per_instance": 19.05, "rss_max_kb": 2096, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 3368558, "real_time_secs": 12.0, "usr_time_secs": 0.51, "sys_time_secs": 1.77, "bogo_ops_s_real_time": 280616.61, "bogo_ops_s_usr_sys_time": 1477950.46, "cpu_used_per_instance": 18.99, "rss_max_kb": 4280, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 3061392, "real_time_secs": 12.0, "usr_time_secs": 0.29, "sys_time_secs": 1.76, "bogo_ops_s_real_time": 255045.26, "bogo_ops_s_usr_sys_time": 1489692.95, "cpu_used_per_instance": 17.12, "rss_max_kb": 1840, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 171, "real_time_secs": 12.01, "usr_time_secs": 0.09, "sys_time_secs": 1.24, "bogo_ops_s_real_time": 14.24, "bogo_ops_s_usr_sys_time": 128.93, "cpu_used_per_instance": 11.04, "rss_max_kb": 263856, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 139, "real_time_secs": 12.0, "usr_time_secs": 0.02, "sys_time_secs": 0.45, "bogo_ops_s_real_time": 11.58, "bogo_ops_s_usr_sys_time": 293.69, "cpu_used_per_instance": 3.94, "rss_max_kb": 67564, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 8045954, "real_time_secs": 12.0, "usr_time_secs": 2.47, "sys_time_secs": 0.12, "bogo_ops_s_real_time": 670356.81, "bogo_ops_s_usr_sys_time": 3106166.97, "cpu_used_per_instance": 21.58, "rss_max_kb": 1840, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 762224, "real_time_secs": 12.0, "usr_time_secs": 0.25, "sys_time_secs": 2.01, "bogo_ops_s_real_time": 63511.1, "bogo_ops_s_usr_sys_time": 337475.57, "cpu_used_per_instance": 18.82, "rss_max_kb": 1840, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 171650, "real_time_secs": 24.02, "usr_time_secs": 0.63, "sys_time_secs": 3.0, "bogo_ops_s_real_time": 7146.16, "bogo_ops_s_usr_sys_time": 47173.26, "cpu_used_per_instance": 15.15, "rss_max_kb": 1840, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 3890754, "real_time_secs": 12.0, "usr_time_secs": 2.39, "sys_time_secs": 0.11, "bogo_ops_s_real_time": 324225.96, "bogo_ops_s_usr_sys_time": 1555679.95, "cpu_used_per_instance": 20.84, "rss_max_kb": 3888, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 9058887, "real_time_secs": 12.01, "usr_time_secs": 2.74, "sys_time_secs": 19.52, "bogo_ops_s_real_time": 754371.44, "bogo_ops_s_usr_sys_time": 406955.05, "cpu_used_per_instance": 185.37, "rss_max_kb": 1840, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 1059826, "real_time_secs": 12.0, "usr_time_secs": 0.49, "sys_time_secs": 1.53, "bogo_ops_s_real_time": 88318.23, "bogo_ops_s_usr_sys_time": 524929.84, "cpu_used_per_instance": 16.82, "rss_max_kb": 1840, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 13, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:07:21.25176 2026-07-22 13:08:41.236732 +1247 50 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260722-135843Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260722-135843Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "seq_write_64k", "detailed": {"size": "100MB", "rw": "write", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 9.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2079653888, "io_kbytes": 2030912, "bw_bytes": 231046982, "bw": 225631, "iops": 3525.497167, "runtime": 9001, "total_ios": 31733, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 160211, "max": 9370316, "mean": 168359.52469, "stddev": 58103.771983, "N": 31733}, "clat_ns": {"min": 1113, "max": 10744704, "mean": 113335.502159, "stddev": 99454.455717, "N": 31733, "percentile": {"1.000000": 88576, "5.000000": 94720, "10.000000": 96768, "20.000000": 100864, "30.000000": 103936, "40.000000": 105984, "50.000000": 108032, "60.000000": 111104, "70.000000": 114176, "80.000000": 120320, "90.000000": 130560, "95.000000": 140288, "99.000000": 160768, "99.500000": 168960, "99.900000": 468992, "99.950000": 1089536, "99.990000": 3522560}}, "lat_ns": {"min": 250289, "max": 10922317, "mean": 282071.636845, "stddev": 116232.634656, "N": 31733}, "bw_min": 214848, "bw_max": 233664, "bw_agg": 100.0, "bw_mean": 226120.0, "bw_dev": 6457.110898, "bw_samples": 8, "iops_min": 3357, "iops_max": 3651, "iops_mean": 3533.125, "iops_stddev": 100.892358, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.255556, "sys_cpu": 59.233333, "ctx": 31749, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.012605, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 17.347871, "250": 82.478808, "500": 0.069328, "750": 0.028362, "1000": 0.01}, "latency_ms": {"2": 0.037816, "4": 0.012605, "10": 0.01, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:59:06.487871 2026-07-22 13:08:41.236732 +1248 50 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260722-135843Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_64k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "64k"}}, "time": {"duration_sec": 10.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1862074368, "io_kbytes": 1818432, "bw_bytes": 186188817, "bw": 181825, "iops": 2841.015898, "runtime": 10001, "total_ios": 28413, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 14957, "max": 3322752, "mean": 171340.803717, "stddev": 39173.750169, "N": 28413}, "clat_ns": {"min": 1132, "max": 217714527, "mean": 178325.82237, "stddev": 2473494.747431, "N": 28413, "percentile": {"1.000000": 92672, "5.000000": 99840, "10.000000": 101888, "20.000000": 103936, "30.000000": 105984, "40.000000": 108032, "50.000000": 110080, "60.000000": 113152, "70.000000": 117248, "80.000000": 124416, "90.000000": 138240, "95.000000": 154624, "99.000000": 224256, "99.500000": 264192, "99.900000": 8978432, "99.950000": 44302336, "99.990000": 137363456}}, "lat_ns": {"min": 249999, "max": 217888463, "mean": 350101.280294, "stddev": 2474056.533832, "N": 28413}, "bw_min": 145152, "bw_max": 228928, "bw_agg": 99.127174, "bw_mean": 180238.222222, "bw_dev": 26860.674534, "bw_samples": 9, "iops_min": 2268, "iops_max": 3577, "iops_mean": 2816.222222, "iops_stddev": 419.69804, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 3.07, "sys_cpu": 48.4, "ctx": 28431, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 5.821279, "250": 93.510013, "500": 0.492732, "750": 0.010559, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.042234, "20": 0.028156, "50": 0.028156, "100": 0.017598, "250": 0.021117, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}}} 2026-07-22 13:59:16.513048 2026-07-22 13:08:41.236732 +1249 50 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260722-135843Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_16k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "16k"}}, "time": {"duration_sec": 10.0}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 369639424, "io_kbytes": 360976, "bw_bytes": 36960246, "bw": 36093, "iops": 2255.874413, "runtime": 10001, "total_ios": 22561, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 9698, "max": 1626705042, "mean": 245979.947343, "stddev": 10849366.71911, "N": 22561}, "clat_ns": {"min": 1252, "max": 1236233103, "mean": 195055.316608, "stddev": 9491170.938478, "N": 22561, "percentile": {"1.000000": 78336, "5.000000": 87552, "10.000000": 88576, "20.000000": 89600, "30.000000": 90624, "40.000000": 92672, "50.000000": 94720, "60.000000": 102912, "70.000000": 111104, "80.000000": 120320, "90.000000": 142336, "95.000000": 162816, "99.000000": 218112, "99.500000": 280576, "99.900000": 675840, "99.950000": 1187840, "99.990000": 2506752}}, "lat_ns": {"min": 239309, "max": 1626975119, "mean": 441438.2132, "stddev": 14414939.730773, "N": 22561}, "bw_min": 25616, "bw_max": 61072, "bw_agg": 100.0, "bw_mean": 42772.571429, "bw_dev": 16820.895486, "bw_samples": 7, "iops_min": 1601, "iops_max": 3817, "iops_mean": 2673.285714, "iops_stddev": 1051.305968, "iops_samples": 7}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.96, "sys_cpu": 37.87, "ctx": 22598, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.01, "4": 0.0, "10": 0.01, "20": 0.0, "50": 0.0, "100": 57.342316, "250": 41.988387, "500": 0.478702, "750": 0.084216, "1000": 0.026595}, "latency_ms": {"2": 0.044324, "4": 0.013297, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.01, "1000": 0.0, "2000": 0.01, ">=2000": 0.0}}} 2026-07-22 13:59:27.541724 2026-07-22 13:08:41.236732 +1250 50 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260722-135843Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 10 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260722-135843Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"tool": "fio", "test_type": {"name": "rand_write_4k", "detailed": {"size": "100MB", "rw": "randwrite", "ioengine": "libaio", "bs": "4k"}}, "time": {"duration_sec": 10.25}, "metrics": {"read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 78680064, "io_kbytes": 76836, "bw_bytes": 7673109, "bw": 7493, "iops": 1873.31773, "runtime": 10254, "total_ios": 19209, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 9528, "max": 21664586, "mean": 166933.300901, "stddev": 156154.676443, "N": 19209}, "clat_ns": {"min": 1222, "max": 2485253160, "mean": 364693.72466, "stddev": 23734517.388758, "N": 19209, "percentile": {"1.000000": 96768, "5.000000": 104960, "10.000000": 107008, "20.000000": 109056, "30.000000": 111104, "40.000000": 113152, "50.000000": 115200, "60.000000": 117248, "70.000000": 122368, "80.000000": 132096, "90.000000": 140288, "95.000000": 148480, "99.000000": 183296, "99.500000": 226304, "99.900000": 1236992, "99.950000": 1433600, "99.990000": 2164260864}}, "lat_ns": {"min": 262081, "max": 2485480416, "mean": 532037.92186, "stddev": 23735355.442547, "N": 19209}, "bw_min": 39, "bw_max": 14116, "bw_agg": 100.0, "bw_mean": 9603.875, "bw_dev": 6077.711892, "bw_samples": 8, "iops_min": 9, "iops_max": 3529, "iops_mean": 2400.875, "iops_stddev": 1519.596604, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "usr_cpu": 1.345948, "sys_cpu": 31.532234, "ctx": 19217, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.010412, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 1.577386, "250": 98.021761, "500": 0.171794, "750": 0.052059, "1000": 0.046853}, "latency_ms": {"2": 0.083294, "4": 0.015618, "10": 0.010412, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.010412}}} 2026-07-22 13:59:38.565645 2026-07-22 13:08:41.236732 +1251 50 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 13:59:50.391751 2026-07-22 13:59:50.391756 +1295 52 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:12:21.968428 2026-07-22 14:12:21.968432 +1278 51 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 2 --syscall-method all --mq 2 --pipe 2 --sem 2 --sem-sysv 2 --shm 2 --shm-sysv 2 --verify --dekker 2 --fifo 2 --futex 2 --peterson 2 --pipeherd 2 --sigq 2 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 216.58}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 340, "real_time_secs": 12.03, "usr_time_secs": 0.05, "sys_time_secs": 0.53, "bogo_ops_s_real_time": 28.27, "bogo_ops_s_usr_sys_time": 595.85, "cpu_used_per_instance": 2.37, "rss_max_kb": 2020, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 256123, "real_time_secs": 12.01, "usr_time_secs": 0.13, "sys_time_secs": 0.53, "bogo_ops_s_real_time": 21326.16, "bogo_ops_s_usr_sys_time": 385017.68, "cpu_used_per_instance": 2.77, "rss_max_kb": 3996, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 136875, "real_time_secs": 12.02, "usr_time_secs": 0.07, "sys_time_secs": 0.42, "bogo_ops_s_real_time": 11386.12, "bogo_ops_s_usr_sys_time": 277475.95, "cpu_used_per_instance": 2.05, "rss_max_kb": 2148, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 551780, "real_time_secs": 12.01, "usr_time_secs": 0.11, "sys_time_secs": 0.46, "bogo_ops_s_real_time": 45957.09, "bogo_ops_s_usr_sys_time": 966140.1, "cpu_used_per_instance": 2.38, "rss_max_kb": 6372, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 167280, "real_time_secs": 12.0, "usr_time_secs": 0.05, "sys_time_secs": 0.37, "bogo_ops_s_real_time": 13936.47, "bogo_ops_s_usr_sys_time": 394383.2, "cpu_used_per_instance": 1.77, "rss_max_kb": 1892, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 117, "real_time_secs": 12.01, "usr_time_secs": 0.03, "sys_time_secs": 0.42, "bogo_ops_s_real_time": 9.74, "bogo_ops_s_usr_sys_time": 264.58, "cpu_used_per_instance": 1.84, "rss_max_kb": 132880, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 40, "real_time_secs": 12.02, "usr_time_secs": 0.02, "sys_time_secs": 0.11, "bogo_ops_s_real_time": 3.33, "bogo_ops_s_usr_sys_time": 301.57, "cpu_used_per_instance": 0.55, "rss_max_kb": 34844, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 2442162, "real_time_secs": 12.02, "usr_time_secs": 0.54, "sys_time_secs": 0.08, "bogo_ops_s_real_time": 203167.68, "bogo_ops_s_usr_sys_time": 3933939.33, "cpu_used_per_instance": 2.58, "rss_max_kb": 1892, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 402612, "real_time_secs": 12.01, "usr_time_secs": 0.09, "sys_time_secs": 0.81, "bogo_ops_s_real_time": 33524.86, "bogo_ops_s_usr_sys_time": 447679.44, "cpu_used_per_instance": 3.74, "rss_max_kb": 1892, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 12316, "real_time_secs": 24.03, "usr_time_secs": 0.18, "sys_time_secs": 0.86, "bogo_ops_s_real_time": 512.61, "bogo_ops_s_usr_sys_time": 11890.13, "cpu_used_per_instance": 2.16, "rss_max_kb": 1892, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1015894, "real_time_secs": 12.0, "usr_time_secs": 0.75, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 84641.98, "bogo_ops_s_usr_sys_time": 1299363.04, "cpu_used_per_instance": 3.26, "rss_max_kb": 3984, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 20807400, "real_time_secs": 12.01, "usr_time_secs": 5.05, "sys_time_secs": 36.19, "bogo_ops_s_real_time": 1732411.07, "bogo_ops_s_usr_sys_time": 504550.48, "cpu_used_per_instance": 171.68, "rss_max_kb": 1892, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 250304, "real_time_secs": 12.01, "usr_time_secs": 0.15, "sys_time_secs": 0.37, "bogo_ops_s_real_time": 20842.08, "bogo_ops_s_usr_sys_time": 482803.18, "cpu_used_per_instance": 2.16, "rss_max_kb": 1892, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 26, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:07:33.603518 2026-07-22 13:08:41.236732 +1279 51 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 3 --syscall-method all --mq 3 --pipe 3 --sem 3 --sem-sysv 3 --shm 3 --shm-sysv 3 --verify --dekker 3 --fifo 3 --futex 3 --peterson 3 --pipeherd 3 --sigq 3 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 217.34}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 810, "real_time_secs": 12.07, "usr_time_secs": 0.07, "sys_time_secs": 0.56, "bogo_ops_s_real_time": 67.12, "bogo_ops_s_usr_sys_time": 1286.88, "cpu_used_per_instance": 1.74, "rss_max_kb": 1976, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 262496, "real_time_secs": 12.04, "usr_time_secs": 0.15, "sys_time_secs": 0.47, "bogo_ops_s_real_time": 21798.75, "bogo_ops_s_usr_sys_time": 427867.04, "cpu_used_per_instance": 1.7, "rss_max_kb": 4000, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 307854, "real_time_secs": 12.02, "usr_time_secs": 0.08, "sys_time_secs": 0.52, "bogo_ops_s_real_time": 25611.01, "bogo_ops_s_usr_sys_time": 512315.55, "cpu_used_per_instance": 1.67, "rss_max_kb": 1976, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 674702, "real_time_secs": 12.06, "usr_time_secs": 0.14, "sys_time_secs": 0.46, "bogo_ops_s_real_time": 55944.21, "bogo_ops_s_usr_sys_time": 1129643.21, "cpu_used_per_instance": 1.65, "rss_max_kb": 6328, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 235644, "real_time_secs": 12.01, "usr_time_secs": 0.07, "sys_time_secs": 0.35, "bogo_ops_s_real_time": 19615.85, "bogo_ops_s_usr_sys_time": 560712.71, "cpu_used_per_instance": 1.17, "rss_max_kb": 1848, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 146, "real_time_secs": 12.01, "usr_time_secs": 0.06, "sys_time_secs": 0.29, "bogo_ops_s_real_time": 12.16, "bogo_ops_s_usr_sys_time": 412.54, "cpu_used_per_instance": 0.98, "rss_max_kb": 89016, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 169, "real_time_secs": 12.0, "usr_time_secs": 0.06, "sys_time_secs": 0.43, "bogo_ops_s_real_time": 14.08, "bogo_ops_s_usr_sys_time": 348.4, "cpu_used_per_instance": 1.35, "rss_max_kb": 18424, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 1983180, "real_time_secs": 12.05, "usr_time_secs": 0.66, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 164563.45, "bogo_ops_s_usr_sys_time": 2981727.86, "cpu_used_per_instance": 1.84, "rss_max_kb": 1848, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 197380, "real_time_secs": 12.0, "usr_time_secs": 0.02, "sys_time_secs": 0.15, "bogo_ops_s_real_time": 16446.42, "bogo_ops_s_usr_sys_time": 1174657.21, "cpu_used_per_instance": 0.47, "rss_max_kb": 1848, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 26620, "real_time_secs": 24.05, "usr_time_secs": 0.35, "sys_time_secs": 0.85, "bogo_ops_s_real_time": 1106.87, "bogo_ops_s_usr_sys_time": 22118.8, "cpu_used_per_instance": 1.67, "rss_max_kb": 1848, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 881522, "real_time_secs": 12.04, "usr_time_secs": 0.7, "sys_time_secs": 0.0, "bogo_ops_s_real_time": 73206.78, "bogo_ops_s_usr_sys_time": 1265728.96, "cpu_used_per_instance": 1.93, "rss_max_kb": 3988, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 41258614, "real_time_secs": 12.04, "usr_time_secs": 5.32, "sys_time_secs": 36.6, "bogo_ops_s_real_time": 3427294.77, "bogo_ops_s_usr_sys_time": 984138.17, "cpu_used_per_instance": 116.08, "rss_max_kb": 1848, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 269369, "real_time_secs": 12.01, "usr_time_secs": 0.11, "sys_time_secs": 0.46, "bogo_ops_s_real_time": 22420.93, "bogo_ops_s_usr_sys_time": 477049.74, "cpu_used_per_instance": 1.57, "rss_max_kb": 1848, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 39, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:07:45.823518 2026-07-22 13:08:41.236732 +1280 51 loader /usr/bin/stress-ng --timeout 12 --cpu-method all --vm-method all --sock 4 --syscall-method all --mq 4 --pipe 4 --sem 4 --sem-sysv 4 --shm 4 --shm-sysv 4 --verify --dekker 4 --fifo 4 --futex 4 --peterson 4 --pipeherd 4 --sigq 4 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 217.56}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 1031, "real_time_secs": 12.07, "usr_time_secs": 0.06, "sys_time_secs": 0.69, "bogo_ops_s_real_time": 85.41, "bogo_ops_s_usr_sys_time": 1368.56, "cpu_used_per_instance": 1.56, "rss_max_kb": 2096, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 250690, "real_time_secs": 12.06, "usr_time_secs": 0.14, "sys_time_secs": 0.59, "bogo_ops_s_real_time": 20789.89, "bogo_ops_s_usr_sys_time": 341174.63, "cpu_used_per_instance": 1.52, "rss_max_kb": 4000, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 335424, "real_time_secs": 12.07, "usr_time_secs": 0.14, "sys_time_secs": 0.67, "bogo_ops_s_real_time": 27793.69, "bogo_ops_s_usr_sys_time": 411923.05, "cpu_used_per_instance": 1.69, "rss_max_kb": 2096, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 559896, "real_time_secs": 12.05, "usr_time_secs": 0.18, "sys_time_secs": 0.4, "bogo_ops_s_real_time": 46480.52, "bogo_ops_s_usr_sys_time": 961536.55, "cpu_used_per_instance": 1.21, "rss_max_kb": 6320, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 256117, "real_time_secs": 12.01, "usr_time_secs": 0.11, "sys_time_secs": 0.44, "bogo_ops_s_real_time": 21322.82, "bogo_ops_s_usr_sys_time": 462153.23, "cpu_used_per_instance": 1.15, "rss_max_kb": 1840, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 262, "real_time_secs": 12.0, "usr_time_secs": 0.05, "sys_time_secs": 0.43, "bogo_ops_s_real_time": 21.83, "bogo_ops_s_usr_sys_time": 549.89, "cpu_used_per_instance": 0.99, "rss_max_kb": 67376, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 132, "real_time_secs": 12.02, "usr_time_secs": 0.05, "sys_time_secs": 0.34, "bogo_ops_s_real_time": 10.98, "bogo_ops_s_usr_sys_time": 337.58, "cpu_used_per_instance": 0.81, "rss_max_kb": 18416, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 2719198, "real_time_secs": 12.05, "usr_time_secs": 0.79, "sys_time_secs": 0.02, "bogo_ops_s_real_time": 225723.75, "bogo_ops_s_usr_sys_time": 3348378.39, "cpu_used_per_instance": 1.69, "rss_max_kb": 1840, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 514302, "real_time_secs": 12.02, "usr_time_secs": 0.04, "sys_time_secs": 0.46, "bogo_ops_s_real_time": 42789.41, "bogo_ops_s_usr_sys_time": 1025186.03, "cpu_used_per_instance": 1.04, "rss_max_kb": 1840, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 13804, "real_time_secs": 24.07, "usr_time_secs": 0.26, "sys_time_secs": 0.83, "bogo_ops_s_real_time": 573.58, "bogo_ops_s_usr_sys_time": 12684.66, "cpu_used_per_instance": 1.13, "rss_max_kb": 1840, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 580197, "real_time_secs": 12.05, "usr_time_secs": 0.79, "sys_time_secs": 0.02, "bogo_ops_s_real_time": 48138.39, "bogo_ops_s_usr_sys_time": 709134.71, "cpu_used_per_instance": 1.7, "rss_max_kb": 3988, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 45115816, "real_time_secs": 12.05, "usr_time_secs": 5.34, "sys_time_secs": 35.35, "bogo_ops_s_real_time": 3744218.73, "bogo_ops_s_usr_sys_time": 1108670.06, "cpu_used_per_instance": 84.43, "rss_max_kb": 1840, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 447809, "real_time_secs": 12.04, "usr_time_secs": 0.23, "sys_time_secs": 0.58, "bogo_ops_s_real_time": 37186.07, "bogo_ops_s_usr_sys_time": 551398.6, "cpu_used_per_instance": 1.69, "rss_max_kb": 1840, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 52, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:07:58.349796 2026-07-22 13:08:41.236732 +1281 51 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:08:11.180136 2026-07-22 14:08:11.180139 +1282 51 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:07:20' --until '2026-07-22 14:08:10' 0 OOM records 2026-07-22 14:07:20.690546 2026-07-22 14:08:10.868846 +1283 51 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:07:20' --until '2026-07-22 14:08:10' 0 systemd errors records 2026-07-22 14:07:20.690546 2026-07-22 14:08:10.868846 +1284 52 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 5.26, "kernel_time": 1.159, "userspace_time": 14.333, "total_time": 20.753} 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1285 52 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:11:13.320477 2026-07-22 14:11:13.320482 +1286 52 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:11:12' --until '2026-07-22 14:11:13' 0 OOM records 2026-07-22 14:11:12.754207 2026-07-22 14:11:13.010506 +1287 52 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:11:12' --until '2026-07-22 14:11:13' 0 systemd errors records 2026-07-22 14:11:12.754207 2026-07-22 14:11:13.010506 +1288 52 loader systemd-analyze critical-chain [{"service_name": "cloud-init.service", "slow_time_s": 1.336}, {"service_name": "cloud-init-local.service", "slow_time_s": 2.245}, {"service_name": "wicked.service", "slow_time_s": 5.393}] 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1289 52 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:11:14.368127 2026-07-22 14:11:14.368132 +1290 52 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:11:13' --until '2026-07-22 14:11:14' 1 OOM records 2026-07-22 14:11:13.614828 2026-07-22 14:11:14.05668 +1291 52 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:11:13' --until '2026-07-22 14:11:14' 0 systemd errors records 2026-07-22 14:11:13.614828 2026-07-22 14:11:14.05668 +1292 52 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics --vm-populate {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 197.07}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 4345847, "real_time_secs": 33.16, "usr_time_secs": 55.34, "sys_time_secs": 10.1, "bogo_ops_s_real_time": 131039.06, "bogo_ops_s_usr_sys_time": 66409.91, "cpu_used_per_instance": 49.33, "rss_max_kb": 264792, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 66, "real_time_secs": 33.18, "usr_time_secs": 7.07, "sys_time_secs": 58.22, "bogo_ops_s_real_time": 1.99, "bogo_ops_s_usr_sys_time": 1.01, "cpu_used_per_instance": 49.19, "rss_max_kb": 238728, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:11:14.79431 2026-07-22 13:08:41.236732 +1293 52 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --memrate 0 --memrate-rd-mbs 500 --memrate-wr-mbs 1000 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "memrate"}, "time": {"duration_sec": 58.53}, "metrics": {"0": {"bogo_ops": 12, "real_time_secs": 33.01, "usr_time_secs": 24.98, "sys_time_secs": 0.54, "bogo_ops_s_real_time": 0.36, "bogo_ops_s_usr_sys_time": 0.47, "cpu_used_per_instance": 19.33, "rss_max_kb": 263692, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:11:48.342381 2026-07-22 13:08:41.236732 +1294 52 loader null 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1298 52 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 25% --mmap 4 --mmap-bytes 25% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 196.69}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 4137744, "real_time_secs": 33.03, "usr_time_secs": 53.3, "sys_time_secs": 11.87, "bogo_ops_s_real_time": 125284.74, "bogo_ops_s_usr_sys_time": 63497.34, "cpu_used_per_instance": 49.33, "rss_max_kb": 201036, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 85, "real_time_secs": 33.13, "usr_time_secs": 6.82, "sys_time_secs": 58.54, "bogo_ops_s_real_time": 2.57, "bogo_ops_s_usr_sys_time": 1.3, "cpu_used_per_instance": 49.33, "rss_max_kb": 181724, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:12:23.495043 2026-07-22 13:08:41.236732 +1299 52 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 195.41}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 4580104, "real_time_secs": 33.08, "usr_time_secs": 54.99, "sys_time_secs": 9.94, "bogo_ops_s_real_time": 138465.6, "bogo_ops_s_usr_sys_time": 70541.39, "cpu_used_per_instance": 49.07, "rss_max_kb": 283744, "top10_slowest": null}, "1": {"stressor": "mmap", "bogo_ops": 60, "real_time_secs": 33.13, "usr_time_secs": 6.9, "sys_time_secs": 57.37, "bogo_ops_s_real_time": 1.81, "bogo_ops_s_usr_sys_time": 0.93, "cpu_used_per_instance": 48.5, "rss_max_kb": 253944, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:12:56.847979 2026-07-22 13:08:41.236732 +1300 52 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 4M --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 38.51}, "metrics": {"0": {"bogo_ops": 3072, "real_time_secs": 37.82, "usr_time_secs": 0.64, "sys_time_secs": 0.05, "bogo_ops_s_real_time": 81.24, "bogo_ops_s_usr_sys_time": 4483.81, "cpu_used_per_instance": 0.0, "rss_max_kb": 2120, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:13:30.301623 2026-07-22 13:08:41.236732 +1301 52 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 1G --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 38.25}, "metrics": {"0": {"bogo_ops": 872448, "real_time_secs": 37.47, "usr_time_secs": 0.72, "sys_time_secs": 0.06, "bogo_ops_s_real_time": 23283.19, "bogo_ops_s_usr_sys_time": 1117308.36, "cpu_used_per_instance": 0.0, "rss_max_kb": 2100, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:14:12.541579 2026-07-22 13:08:41.236732 +1302 52 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "mmaphuge"}, "time": {"duration_sec": 976.9}, "metrics": {"0": {"bogo_ops": 1237, "real_time_secs": 82.49, "usr_time_secs": 1.3, "sys_time_secs": 893.11, "bogo_ops_s_real_time": 14.99, "bogo_ops_s_usr_sys_time": 1.38, "cpu_used_per_instance": 1.09, "rss_max_kb": 126096, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:14:54.7805 2026-07-22 13:08:41.236732 +1303 52 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 542 --vm-method all --vm-bytes 70% --syscall-method all --verify --metrics {"tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 75.2}, "metrics": {"0": {"bogo_ops": 1657502, "real_time_secs": 37.89, "usr_time_secs": 35.9, "sys_time_secs": 1.41, "bogo_ops_s_real_time": 43749.96, "bogo_ops_s_usr_sys_time": 44430.39, "cpu_used_per_instance": 0.18, "rss_max_kb": 7164, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 542, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:19:40.40273 2026-07-22 13:08:41.236732 +1304 52 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:20:21.315983 2026-07-22 14:20:21.315988 +1305 52 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:12:22' --until '2026-07-22 14:20:20' 37 OOM records 2026-07-22 14:12:22.931555 2026-07-22 14:20:20.804976 +1306 52 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:12:22' --until '2026-07-22 14:20:20' 1 systemd errors records 2026-07-22 14:12:22.931555 2026-07-22 14:20:20.804976 +1307 52 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 95% --syscall-method all --verify --metrics {"pgscan_time_sec": 6.0, "tool": "stress-ng", "test_type": {"stressor": "vm"}, "time": {"duration_sec": 162.26}, "metrics": {"0": {"bogo_ops": 7020738, "real_time_secs": 33.09, "usr_time_secs": 92.43, "sys_time_secs": 36.74, "bogo_ops_s_real_time": 212194.58, "bogo_ops_s_usr_sys_time": 54353.36, "cpu_used_per_instance": 97.6, "rss_max_kb": 756360, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:20:22.628228 2026-07-22 13:08:41.236732 +1308 52 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:20:56.697264 2026-07-22 14:20:56.697268 +1309 52 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:20:22' --until '2026-07-22 14:20:56' 20 OOM records 2026-07-22 14:20:22.275838 2026-07-22 14:20:56.079205 +1310 52 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:20:22' --until '2026-07-22 14:20:56' 0 systemd errors records 2026-07-22 14:20:22.275838 2026-07-22 14:20:56.079205 +1311 53 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 5.26, "kernel_time": 1.159, "userspace_time": 14.333, "total_time": 20.753} 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1312 53 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:23:55.345647 2026-07-22 14:23:55.345652 +1313 53 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:23:54' --until '2026-07-22 14:23:55' 0 OOM records 2026-07-22 14:23:54.80023 2026-07-22 14:23:55.034949 +1314 53 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:23:54' --until '2026-07-22 14:23:55' 0 systemd errors records 2026-07-22 14:23:54.80023 2026-07-22 14:23:55.034949 +1315 53 loader systemd-analyze critical-chain [{"service_name": "cloud-init.service", "slow_time_s": 1.336}, {"service_name": "cloud-init-local.service", "slow_time_s": 2.245}, {"service_name": "wicked.service", "slow_time_s": 5.393}] 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1316 53 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:23:56.396546 2026-07-22 14:23:56.396551 +1317 53 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:23:55' --until '2026-07-22 14:23:56' 1 OOM records 2026-07-22 14:23:55.642733 2026-07-22 14:23:56.085141 +1318 53 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:23:55' --until '2026-07-22 14:23:56' 0 systemd errors records 2026-07-22 14:23:55.642733 2026-07-22 14:23:56.085141 +1319 53 loader /usr/bin/iperf3 --time 50 --port 5201 --client 10.5.0.13 --version4 --json {"tool": "iperf3", "test_type": {"protocol": "TCP"}, "time": {"duration_sec": 50.0}, "metrics": {"client": {"start": {"connected": [{"socket": 5, "local_host": "10.5.0.11", "local_port": 34436, "remote_host": "10.5.0.13", "remote_port": 5201}], "version": "iperf 3.18", "system_info": "Linux 7d4f7032471a 6.17.0-40-generic #40~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Jun 23 16:48:12 UTC 2 x86_64", "timestamp": {"time": "Wed, 22 Jul 2026 14:24:00 GMT", "timesecs": 1784730240}, "connecting_to": {"host": "10.5.0.13", "port": 5201}, "cookie": "53ipuonrd4djlyx7naeegtv7j54lmrbnkidz", "tcp_mss_default": 1448, "target_bitrate": 0, "fq_rate": 0, "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.000606, "seconds": 1.0006059408187866, "bytes": 463863808, "bits_per_second": 3708663233.56365, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 164864, "rtt": 126, "rttvar": 110, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 0, "end": 1.000606, "seconds": 1.0006059408187866, "bytes": 463863808, "bits_per_second": 3708663233.56365, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 1.000606, "end": 2.001029, "seconds": 1.0004229545593262, "bytes": 445382656, "bits_per_second": 3561554872.128543, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 2048, "rtt": 112, "rttvar": 108, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 1.000606, "end": 2.001029, "seconds": 1.0004229545593262, "bytes": 445382656, "bits_per_second": 3561554872.128543, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 2.001029, "end": 3.000602, "seconds": 0.999572992324829, "bytes": 459407360, "bits_per_second": 3676828914.16664, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 71680, "rtt": 113, "rttvar": 56, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 2.001029, "end": 3.000602, "seconds": 0.999572992324829, "bytes": 459407360, "bits_per_second": 3676828914.16664, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 3.000602, "end": 4.00103, "seconds": 1.0004279613494873, "bytes": 462028800, "bits_per_second": 3694649232.928394, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 2048, "rtt": 113, "rttvar": 77, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 3.000602, "end": 4.00103, "seconds": 1.0004279613494873, "bytes": 462028800, "bits_per_second": 3694649232.928394, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 4.00103, "end": 5.000589, "seconds": 0.999558985233307, "bytes": 457703424, "bits_per_second": 3663242936.2288613, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 141, "rttvar": 107, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 4.00103, "end": 5.000589, "seconds": 0.999558985233307, "bytes": 457703424, "bits_per_second": 3663242936.2288613, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 5.000589, "end": 6.000588, "seconds": 0.9999989867210388, "bytes": 451674112, "bits_per_second": 3613396557.37871, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 152, "rttvar": 120, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 5.000589, "end": 6.000588, "seconds": 0.9999989867210388, "bytes": 451674112, "bits_per_second": 3613396557.37871, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 6.000588, "end": 7.000604, "seconds": 1.0000159740448, "bytes": 448659456, "bits_per_second": 3589218313.665861, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 164864, "rtt": 149, "rttvar": 84, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 6.000588, "end": 7.000604, "seconds": 1.0000159740448, "bytes": 448659456, "bits_per_second": 3589218313.665861, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 7.000604, "end": 8.001029, "seconds": 1.0004249811172485, "bytes": 454295552, "bits_per_second": 3632820535.8699026, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 2048, "rtt": 136, "rttvar": 80, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 7.000604, "end": 8.001029, "seconds": 1.0004249811172485, "bytes": 454295552, "bits_per_second": 3632820535.8699026, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 8.001029, "end": 9.000592, "seconds": 0.999562978744507, "bytes": 456261632, "bits_per_second": 3651688921.677222, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 61440, "rtt": 123, "rttvar": 114, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 8.001029, "end": 9.000592, "seconds": 0.999562978744507, "bytes": 456261632, "bits_per_second": 3651688921.677222, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 9.000592, "end": 10.001029, "seconds": 1.0004370212554932, "bytes": 461897728, "bits_per_second": 3693567656.42554, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 2048, "rtt": 121, "rttvar": 86, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 9.000592, "end": 10.001029, "seconds": 1.0004370212554932, "bytes": 461897728, "bits_per_second": 3693567656.42554, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 10.001029, "end": 11.000592, "seconds": 0.999562978744507, "bytes": 458489856, "bits_per_second": 3669522507.333215, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 164864, "rtt": 126, "rttvar": 72, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 10.001029, "end": 11.000592, "seconds": 0.999562978744507, "bytes": 458489856, "bits_per_second": 3669522507.333215, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 11.000592, "end": 12.001029, "seconds": 1.0004370212554932, "bytes": 457179136, "bits_per_second": 3655835410.21915, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 164864, "rtt": 136, "rttvar": 85, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 11.000592, "end": 12.001029, "seconds": 1.0004370212554932, "bytes": 457179136, "bits_per_second": 3655835410.21915, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 12.001029, "end": 13.001029, "seconds": 1, "bytes": 459931648, "bits_per_second": 3679453184, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 61440, "rtt": 139, "rttvar": 88, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 12.001029, "end": 13.001029, "seconds": 1, "bytes": 459931648, "bits_per_second": 3679453184, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 13.001029, "end": 14.000601, "seconds": 0.999571979045868, "bytes": 447610880, "bits_per_second": 3582420390.9938555, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 67584, "rtt": 90, "rttvar": 76, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 13.001029, "end": 14.000601, "seconds": 0.999571979045868, "bytes": 447610880, "bits_per_second": 3582420390.9938555, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 14.000601, "end": 15.000589, "seconds": 0.9999880194664, "bytes": 450363392, "bits_per_second": 3602950301.267143, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 133120, "rtt": 167, "rttvar": 116, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 14.000601, "end": 15.000589, "seconds": 0.9999880194664, "bytes": 450363392, "bits_per_second": 3602950301.267143, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 15.000589, "end": 16.00103, "seconds": 1.0004409551620483, "bytes": 439222272, "bits_per_second": 3512229440.2980022, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 110, "rttvar": 119, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 15.000589, "end": 16.00103, "seconds": 1.0004409551620483, "bytes": 439222272, "bits_per_second": 3512229440.2980022, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 16.00103, "end": 17.000108, "seconds": 0.9990779757499695, "bytes": 444596224, "bits_per_second": 3560052246.502651, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 67584, "rtt": 152, "rttvar": 98, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 16.00103, "end": 17.000108, "seconds": 0.9990779757499695, "bytes": 444596224, "bits_per_second": 3560052246.502651, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 17.000108, "end": 18.001031, "seconds": 1.0009230375289917, "bytes": 415367168, "bits_per_second": 3319872976.651066, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 67584, "rtt": 129, "rttvar": 121, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 17.000108, "end": 18.001031, "seconds": 1.0009230375289917, "bytes": 415367168, "bits_per_second": 3319872976.651066, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 18.001031, "end": 19.001029, "seconds": 0.9999979734420776, "bytes": 423493632, "bits_per_second": 3387955921.888914, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 77824, "rtt": 139, "rttvar": 100, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 18.001031, "end": 19.001029, "seconds": 0.9999979734420776, "bytes": 423493632, "bits_per_second": 3387955921.888914, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 19.001029, "end": 20.000601, "seconds": 0.999571979045868, "bytes": 416677888, "bits_per_second": 3334850489.88857, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 67584, "rtt": 181, "rttvar": 135, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 19.001029, "end": 20.000601, "seconds": 0.999571979045868, "bytes": 416677888, "bits_per_second": 3334850489.88857, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 20.000601, "end": 21.000671, "seconds": 1.0000699758529663, "bytes": 430440448, "bits_per_second": 3443282637.3604465, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 170, "rttvar": 111, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 20.000601, "end": 21.000671, "seconds": 1.0000699758529663, "bytes": 430440448, "bits_per_second": 3443282637.3604465, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 21.000671, "end": 22.001017, "seconds": 1.0003459453582764, "bytes": 422445056, "bits_per_second": 3378391709.069808, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 142, "rttvar": 70, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 21.000671, "end": 22.001017, "seconds": 1.0003459453582764, "bytes": 422445056, "bits_per_second": 3378391709.069808, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 22.001017, "end": 23.001029, "seconds": 1.0000120401382446, "bytes": 423886848, "bits_per_second": 3391053955.241584, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 67584, "rtt": 129, "rttvar": 118, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 22.001017, "end": 23.001029, "seconds": 1.0000120401382446, "bytes": 423886848, "bits_per_second": 3391053955.241584, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 23.001029, "end": 24.000535, "seconds": 0.9995059967041016, "bytes": 425328640, "bits_per_second": 3404310860.785491, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 204800, "rtt": 139, "rttvar": 112, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 23.001029, "end": 24.000535, "seconds": 0.9995059967041016, "bytes": 425328640, "bits_per_second": 3404310860.785491, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 24.000535, "end": 25.000603, "seconds": 1.000067949295044, "bytes": 446431232, "bits_per_second": 3571207194.9886446, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 163, "rttvar": 98, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 24.000535, "end": 25.000603, "seconds": 1.000067949295044, "bytes": 446431232, "bits_per_second": 3571207194.9886446, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 25.000603, "end": 26.00103, "seconds": 1.000427007675171, "bytes": 419168256, "bits_per_second": 3351914754.673236, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 67584, "rtt": 138, "rttvar": 87, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 25.000603, "end": 26.00103, "seconds": 1.000427007675171, "bytes": 419168256, "bits_per_second": 3351914754.673236, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 26.00103, "end": 27.000601, "seconds": 0.9995710253715515, "bytes": 422576128, "bits_per_second": 3382059841.864054, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 154, "rttvar": 84, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 26.00103, "end": 27.000601, "seconds": 0.9995710253715515, "bytes": 422576128, "bits_per_second": 3382059841.864054, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 27.000601, "end": 28.000603, "seconds": 1.0000020265579224, "bytes": 419561472, "bits_per_second": 3356484973.888785, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 67584, "rtt": 152, "rttvar": 111, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 27.000601, "end": 28.000603, "seconds": 1.0000020265579224, "bytes": 419561472, "bits_per_second": 3356484973.888785, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 28.000603, "end": 29.00059, "seconds": 0.999987006187439, "bytes": 440270848, "bits_per_second": 3522212550.9696875, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 138240, "rtt": 132, "rttvar": 97, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 28.000603, "end": 29.00059, "seconds": 0.999987006187439, "bytes": 440270848, "bits_per_second": 3522212550.9696875, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 29.00059, "end": 30.000598, "seconds": 1.0000079870224, "bytes": 443809792, "bits_per_second": 3550449978.4764924, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 1024, "rtt": 72, "rttvar": 81, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 29.00059, "end": 30.000598, "seconds": 1.0000079870224, "bytes": 443809792, "bits_per_second": 3550449978.4764924, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 30.000598, "end": 31.000585, "seconds": 0.999987006187439, "bytes": 453378048, "bits_per_second": 3627071513.487392, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 1024, "rtt": 125, "rttvar": 105, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 30.000598, "end": 31.000585, "seconds": 0.999987006187439, "bytes": 453378048, "bits_per_second": 3627071513.487392, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 31.000585, "end": 32.000688, "seconds": 1.0001029968261719, "bytes": 457965568, "bits_per_second": 3663347230.862056, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 130, "rttvar": 114, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 31.000585, "end": 32.000688, "seconds": 1.0001029968261719, "bytes": 457965568, "bits_per_second": 3663347230.862056, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 32.000688, "end": 33.001022, "seconds": 1.0003340244293213, "bytes": 445382656, "bits_per_second": 3561871495.9062643, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 66560, "rtt": 112, "rttvar": 130, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 32.000688, "end": 33.001022, "seconds": 1.0003340244293213, "bytes": 445382656, "bits_per_second": 3561871495.9062643, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 33.001022, "end": 34.00102, "seconds": 0.9999979734420776, "bytes": 420347904, "bits_per_second": 3362790046.88881, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 210944, "rtt": 105, "rttvar": 119, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 33.001022, "end": 34.00102, "seconds": 0.9999979734420776, "bytes": 420347904, "bits_per_second": 3362790046.88881, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 34.00102, "end": 35.001024, "seconds": 1.0000040531158447, "bytes": 423886848, "bits_per_second": 3391081039.555708, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 76800, "rtt": 140, "rttvar": 115, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 34.00102, "end": 35.001024, "seconds": 1.0000040531158447, "bytes": 423886848, "bits_per_second": 3391081039.555708, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 35.001024, "end": 36.001023, "seconds": 0.9999989867210388, "bytes": 440139776, "bits_per_second": 3521121775.8786154, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 133, "rttvar": 109, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 35.001024, "end": 36.001023, "seconds": 0.9999989867210388, "bytes": 440139776, "bits_per_second": 3521121775.8786154, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 36.001023, "end": 37.00102, "seconds": 0.9999970197677612, "bytes": 455868416, "bits_per_second": 3646958196.7823915, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 135, "rttvar": 104, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 36.001023, "end": 37.00102, "seconds": 0.9999970197677612, "bytes": 455868416, "bits_per_second": 3646958196.7823915, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 37.00102, "end": 38.000608, "seconds": 0.9995880126953125, "bytes": 429785088, "bits_per_second": 3439697815.832084, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 144, "rttvar": 108, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 37.00102, "end": 38.000608, "seconds": 0.9995880126953125, "bytes": 429785088, "bits_per_second": 3439697815.832084, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 38.000608, "end": 39.001029, "seconds": 1.0004210472106934, "bytes": 425197568, "bits_per_second": 3400148920.780963, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 143, "rttvar": 89, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 38.000608, "end": 39.001029, "seconds": 1.0004210472106934, "bytes": 425197568, "bits_per_second": 3400148920.780963, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 39.001029, "end": 40.000591, "seconds": 0.9995620250701904, "bytes": 451149824, "bits_per_second": 3610780023.127187, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 128, "rttvar": 99, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 39.001029, "end": 40.000591, "seconds": 0.9995620250701904, "bytes": 451149824, "bits_per_second": 3610780023.127187, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 40.000591, "end": 41.000602, "seconds": 1.0000109672546387, "bytes": 457048064, "bits_per_second": 3656344411.9397874, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 67584, "rtt": 138, "rttvar": 105, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 40.000591, "end": 41.000602, "seconds": 1.0000109672546387, "bytes": 457048064, "bits_per_second": 3656344411.9397874, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 41.000602, "end": 42.000592, "seconds": 0.9999899864196777, "bytes": 434765824, "bits_per_second": 3478161420.8487616, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 121, "rttvar": 123, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 41.000602, "end": 42.000592, "seconds": 0.9999899864196777, "bytes": 434765824, "bits_per_second": 3478161420.8487616, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 42.000592, "end": 43.000589, "seconds": 0.9999970197677612, "bytes": 440532992, "bits_per_second": 3524274439.156302, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 67584, "rtt": 165, "rttvar": 132, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 42.000592, "end": 43.000589, "seconds": 0.9999970197677612, "bytes": 440532992, "bits_per_second": 3524274439.156302, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 43.000589, "end": 44.00029, "seconds": 0.9997010231018066, "bytes": 437780480, "bits_per_second": 3503291243.149345, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 146, "rttvar": 124, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 43.000589, "end": 44.00029, "seconds": 0.9997010231018066, "bytes": 437780480, "bits_per_second": 3503291243.149345, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 44.00029, "end": 45.000598, "seconds": 1.0003080368041992, "bytes": 448921600, "bits_per_second": 3590266865.668477, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 210944, "rtt": 151, "rttvar": 107, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 44.00029, "end": 45.000598, "seconds": 1.0003080368041992, "bytes": 448921600, "bits_per_second": 3590266865.668477, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 45.000598, "end": 46.000591, "seconds": 0.9999930262565613, "bytes": 449839104, "bits_per_second": 3598737928.675018, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 0, "rtt": 145, "rttvar": 139, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 45.000598, "end": 46.000591, "seconds": 0.9999930262565613, "bytes": 449839104, "bits_per_second": 3598737928.675018, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 46.000591, "end": 47.000593, "seconds": 1.0000020265579224, "bytes": 459800576, "bits_per_second": 3678397153.515107, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 210944, "rtt": 131, "rttvar": 82, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 46.000591, "end": 47.000593, "seconds": 1.0000020265579224, "bytes": 459800576, "bits_per_second": 3678397153.515107, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 47.000593, "end": 48.000602, "seconds": 1.0000089406967163, "bytes": 443154432, "bits_per_second": 3545203759.40839, "retransmits": 0, "snd_cwnd": 427160, "snd_wnd": 134144, "rtt": 134, "rttvar": 114, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 47.000593, "end": 48.000602, "seconds": 1.0000089406967163, "bytes": 443154432, "bits_per_second": 3545203759.40839, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 48.000602, "end": 49.001032, "seconds": 1.00042998790741, "bytes": 427425792, "bits_per_second": 3417936664.5659447, "retransmits": 0, "snd_cwnd": 693592, "snd_wnd": 0, "rtt": 118, "rttvar": 128, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 48.000602, "end": 49.001032, "seconds": 1.00042998790741, "bytes": 427425792, "bits_per_second": 3417936664.5659447, "retransmits": 0, "omitted": false, "sender": true}}, {"streams": [{"socket": 5, "start": 49.001032, "end": 50.006543, "seconds": 1.0055110454559326, "bytes": 429916160, "bits_per_second": 3420478865.491221, "retransmits": 0, "snd_cwnd": 693592, "snd_wnd": 263168, "rtt": 142, "rttvar": 130, "pmtu": 1500, "omitted": false, "sender": true}], "sum": {"start": 49.001032, "end": 50.006543, "seconds": 1.0055110454559326, "bytes": 429916160, "bits_per_second": 3420478865.491221, "retransmits": 0, "omitted": false, "sender": true}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 50.006543, "seconds": 50.006543, "bytes": 22101360640, "bits_per_second": 3535755013.4989333, "retransmits": 0, "max_snd_cwnd": 693592, "max_snd_wnd": 263168, "max_rtt": 181, "min_rtt": 72, "mean_rtt": 134, "sender": true}, "receiver": {"socket": 5, "start": 0, "end": 50.009176, "seconds": 50.006543, "bytes": 22099132416, "bits_per_second": 3535212404.3795485, "sender": true}}], "sum_sent": {"start": 0, "end": 50.006543, "seconds": 50.006543, "bytes": 22101360640, "bits_per_second": 3535755013.4989333, "retransmits": 0, "sender": true}, "sum_received": {"start": 0, "end": 50.009176, "seconds": 50.009176, "bytes": 22099132416, "bits_per_second": 3535212404.3795485, "sender": true}, "cpu_utilization_percent": {"host_total": 5.933088649746407, "host_user": 0.16820514280029025, "host_system": 5.764881508310865, "remote_total": 43.0561330586274, "remote_user": 0.4273060595823734, "remote_system": 42.6288249994191}, "sender_tcp_congestion": "cubic", "receiver_tcp_congestion": "cubic"}}, "server": {"start": {"connected": [{"socket": 5, "local_host": "10.0.2.15", "local_port": 5201, "remote_host": "10.5.0.11", "remote_port": 34436}], "version": "iperf 3.19.1", "system_info": "Linux localhost 6.4.0-150600.23.125-default #1 SMP PREEMPT_DYNAMIC Tue Jul 14 08:35:02 UTC 2026 (1f4f2bb) x86_64", "sock_bufsize": 0, "sndbuf_actual": 16384, "rcvbuf_actual": 131072, "timestamp": {"time": "Wed, 22 Jul 2026 14:23:59 GMT", "timesecs": 1784730239}, "accepted_connection": {"host": "10.5.0.11", "port": 34434}, "cookie": "53ipuonrd4djlyx7naeegtv7j54lmrbnkidz", "tcp_mss_default": 0, "target_bitrate": 0, "fq_rate": 0, "test_start": {"protocol": "TCP", "num_streams": 1, "blksize": 131072, "omit": 0, "duration": 50, "bytes": 0, "blocks": 0, "reverse": 0, "tos": 0, "target_bitrate": 0, "bidir": 0, "fqrate": 0, "interval": 1}}, "intervals": [{"streams": [{"socket": 5, "start": 0, "end": 1.001573, "seconds": 1.0015729665756226, "bytes": 459276288, "bits_per_second": 3668439970.54166, "omitted": false, "sender": false}], "sum": {"start": 0, "end": 1.001573, "seconds": 1.0015729665756226, "bytes": 459276288, "bits_per_second": 3668439970.54166, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 1.001573, "end": 2.000439, "seconds": 0.9988660216331482, "bytes": 444596224, "bits_per_second": 3560807670.8672833, "omitted": false, "sender": false}], "sum": {"start": 1.001573, "end": 2.000439, "seconds": 0.9988660216331482, "bytes": 444596224, "bits_per_second": 3560807670.8672833, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 2.000439, "end": 3.001064, "seconds": 1.0006250143051147, "bytes": 460455936, "bits_per_second": 3681346593.7168417, "omitted": false, "sender": false}], "sum": {"start": 2.000439, "end": 3.001064, "seconds": 1.0006250143051147, "bytes": 460455936, "bits_per_second": 3681346593.7168417, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 3.001064, "end": 4.001034, "seconds": 0.999970018863678, "bytes": 461504512, "bits_per_second": 3692146790.7562547, "omitted": false, "sender": false}], "sum": {"start": 3.001064, "end": 4.001034, "seconds": 0.999970018863678, "bytes": 461504512, "bits_per_second": 3692146790.7562547, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 4.001034, "end": 5.001035, "seconds": 1.0000009536743164, "bytes": 458227712, "bits_per_second": 3665818200.003334, "omitted": false, "sender": false}], "sum": {"start": 4.001034, "end": 5.001035, "seconds": 1.0000009536743164, "bytes": 458227712, "bits_per_second": 3665818200.003334, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 5.001035, "end": 6.001087, "seconds": 1.0000519752502441, "bytes": 451280896, "bits_per_second": 3610059534.2523108, "omitted": false, "sender": false}], "sum": {"start": 5.001035, "end": 6.001087, "seconds": 1.0000519752502441, "bytes": 451280896, "bits_per_second": 3610059534.2523108, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 6.001087, "end": 7.00108, "seconds": 0.9999930262565613, "bytes": 449052672, "bits_per_second": 3592446428.7997117, "omitted": false, "sender": false}], "sum": {"start": 6.001087, "end": 7.00108, "seconds": 0.9999930262565613, "bytes": 449052672, "bits_per_second": 3592446428.7997117, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 7.00108, "end": 8.001064, "seconds": 0.9999840259552002, "bytes": 453378048, "bits_per_second": 3627082323.175523, "omitted": false, "sender": false}], "sum": {"start": 7.00108, "end": 8.001064, "seconds": 0.9999840259552002, "bytes": 453378048, "bits_per_second": 3627082323.175523, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 8.001064, "end": 9.001069, "seconds": 1.0000050067901611, "bytes": 457310208, "bits_per_second": 3658463346.84171, "omitted": false, "sender": false}], "sum": {"start": 8.001064, "end": 9.001069, "seconds": 1.0000050067901611, "bytes": 457310208, "bits_per_second": 3658463346.84171, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 9.001069, "end": 10.001058, "seconds": 0.9999889731407166, "bytes": 460849152, "bits_per_second": 3686833870.198288, "omitted": false, "sender": false}], "sum": {"start": 9.001069, "end": 10.001058, "seconds": 0.9999889731407166, "bytes": 460849152, "bits_per_second": 3686833870.198288, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 10.001058, "end": 11.001065, "seconds": 1.0000070333480835, "bytes": 459014144, "bits_per_second": 3672087324.93165, "omitted": false, "sender": false}], "sum": {"start": 10.001058, "end": 11.001065, "seconds": 1.0000070333480835, "bytes": 459014144, "bits_per_second": 3672087324.93165, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 11.001065, "end": 12.00107, "seconds": 1.0000050067901611, "bytes": 456916992, "bits_per_second": 3655317634.5916314, "omitted": false, "sender": false}], "sum": {"start": 11.001065, "end": 12.00107, "seconds": 1.0000050067901611, "bytes": 456916992, "bits_per_second": 3655317634.5916314, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 12.00107, "end": 13.001071, "seconds": 1.0000009536743164, "bytes": 459931648, "bits_per_second": 3679449675.0033464, "omitted": false, "sender": false}], "sum": {"start": 12.00107, "end": 13.001071, "seconds": 1.0000009536743164, "bytes": 459931648, "bits_per_second": 3679449675.0033464, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 13.001071, "end": 14.001066, "seconds": 0.999994993209839, "bytes": 448659456, "bits_per_second": 3589293618.8399763, "omitted": false, "sender": false}], "sum": {"start": 13.001071, "end": 14.001066, "seconds": 0.999994993209839, "bytes": 448659456, "bits_per_second": 3589293618.8399763, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 14.001066, "end": 15.001059, "seconds": 0.9999930262565613, "bytes": 449445888, "bits_per_second": 3595592178.737365, "omitted": false, "sender": false}], "sum": {"start": 14.001066, "end": 15.001059, "seconds": 0.9999930262565613, "bytes": 449445888, "bits_per_second": 3595592178.737365, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 15.001059, "end": 16.001059, "seconds": 1, "bytes": 439877632, "bits_per_second": 3519021056, "omitted": false, "sender": false}], "sum": {"start": 15.001059, "end": 16.001059, "seconds": 1, "bytes": 439877632, "bits_per_second": 3519021056, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 16.001059, "end": 17.000354, "seconds": 0.9992949962615967, "bytes": 444465152, "bits_per_second": 3558229781.297913, "omitted": false, "sender": false}], "sum": {"start": 16.001059, "end": 17.000354, "seconds": 0.9992949962615967, "bytes": 444465152, "bits_per_second": 3558229781.297913, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 17.000354, "end": 18.001063, "seconds": 1.000709056854248, "bytes": 415105024, "bits_per_second": 3318487195.908007, "omitted": false, "sender": false}], "sum": {"start": 17.000354, "end": 18.001063, "seconds": 1.000709056854248, "bytes": 415105024, "bits_per_second": 3318487195.908007, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 18.001063, "end": 19.001059, "seconds": 0.9999960064888, "bytes": 423886848, "bits_per_second": 3391108326.429082, "omitted": false, "sender": false}], "sum": {"start": 18.001063, "end": 19.001059, "seconds": 0.9999960064888, "bytes": 423886848, "bits_per_second": 3391108326.429082, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 19.001059, "end": 20.001063, "seconds": 1.0000040531158447, "bytes": 416940032, "bits_per_second": 3335506736.804795, "omitted": false, "sender": false}], "sum": {"start": 19.001059, "end": 20.001063, "seconds": 1.0000040531158447, "bytes": 416940032, "bits_per_second": 3335506736.804795, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 20.001063, "end": 21.001046, "seconds": 0.999983012676239, "bytes": 430047232, "bits_per_second": 3440436299.805304, "omitted": false, "sender": false}], "sum": {"start": 20.001063, "end": 21.001046, "seconds": 0.999983012676239, "bytes": 430047232, "bits_per_second": 3440436299.805304, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 21.001046, "end": 22.001043, "seconds": 0.9999970197677612, "bytes": 422051840, "bits_per_second": 3376424782.529989, "omitted": false, "sender": false}], "sum": {"start": 21.001046, "end": 22.001043, "seconds": 0.9999970197677612, "bytes": 422051840, "bits_per_second": 3376424782.529989, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 22.001043, "end": 23.001065, "seconds": 1.000022053718567, "bytes": 424280064, "bits_per_second": 3394165658.0258083, "omitted": false, "sender": false}], "sum": {"start": 22.001043, "end": 23.001065, "seconds": 1.000022053718567, "bytes": 424280064, "bits_per_second": 3394165658.0258083, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 23.001065, "end": 24.001067, "seconds": 1.0000020265579224, "bytes": 425852928, "bits_per_second": 3406816519.8889914, "omitted": false, "sender": false}], "sum": {"start": 23.001065, "end": 24.001067, "seconds": 1.0000020265579224, "bytes": 425852928, "bits_per_second": 3406816519.8889914, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 24.001067, "end": 25.001067, "seconds": 1, "bytes": 445906944, "bits_per_second": 3567255552, "omitted": false, "sender": false}], "sum": {"start": 24.001067, "end": 25.001067, "seconds": 1, "bytes": 445906944, "bits_per_second": 3567255552, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 25.001067, "end": 26.001066, "seconds": 0.9999989867210388, "bytes": 419299328, "bits_per_second": 3354398022.940944, "omitted": false, "sender": false}], "sum": {"start": 25.001067, "end": 26.001066, "seconds": 0.9999989867210388, "bytes": 419299328, "bits_per_second": 3354398022.940944, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 26.001066, "end": 27.001066, "seconds": 1, "bytes": 422969344, "bits_per_second": 3383754752, "omitted": false, "sender": false}], "sum": {"start": 26.001066, "end": 27.001066, "seconds": 1, "bytes": 422969344, "bits_per_second": 3383754752, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 27.001066, "end": 28.001061, "seconds": 0.999994993209839, "bytes": 418906112, "bits_per_second": 3351265675.084009, "omitted": false, "sender": false}], "sum": {"start": 27.001066, "end": 28.001061, "seconds": 0.999994993209839, "bytes": 418906112, "bits_per_second": 3351265675.084009, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 28.001061, "end": 29.001066, "seconds": 1.0000050067901611, "bytes": 440664064, "bits_per_second": 3525294861.5883718, "omitted": false, "sender": false}], "sum": {"start": 28.001061, "end": 29.001066, "seconds": 1.0000050067901611, "bytes": 440664064, "bits_per_second": 3525294861.5883718, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 29.001066, "end": 30.000358, "seconds": 0.999292016029358, "bytes": 443809792, "bits_per_second": 3552993798.65724, "omitted": false, "sender": false}], "sum": {"start": 29.001066, "end": 30.000358, "seconds": 0.999292016029358, "bytes": 443809792, "bits_per_second": 3552993798.65724, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 30.000358, "end": 31.001043, "seconds": 1.0006849765777588, "bytes": 453640192, "bits_per_second": 3626637374.3425508, "omitted": false, "sender": false}], "sum": {"start": 30.000358, "end": 31.001043, "seconds": 1.0006849765777588, "bytes": 453640192, "bits_per_second": 3626637374.3425508, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 31.001043, "end": 32.001051, "seconds": 1.0000079870224, "bytes": 457572352, "bits_per_second": 3660549579.1085157, "omitted": false, "sender": false}], "sum": {"start": 31.001043, "end": 32.001051, "seconds": 1.0000079870224, "bytes": 457572352, "bits_per_second": 3660549579.1085157, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 32.001051, "end": 33.001065, "seconds": 1.0000139474868774, "bytes": 445251584, "bits_per_second": 3561962991.5679173, "omitted": false, "sender": false}], "sum": {"start": 32.001051, "end": 33.001065, "seconds": 1.0000139474868774, "bytes": 445251584, "bits_per_second": 3561962991.5679173, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 33.001065, "end": 34.001066, "seconds": 1.0000009536743164, "bytes": 421003264, "bits_per_second": 3368022900.003063, "omitted": false, "sender": false}], "sum": {"start": 33.001065, "end": 34.001066, "seconds": 1.0000009536743164, "bytes": 421003264, "bits_per_second": 3368022900.003063, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 34.001066, "end": 35.001064, "seconds": 0.9999979734420776, "bytes": 423624704, "bits_per_second": 3389004500.0139184, "omitted": false, "sender": false}], "sum": {"start": 34.001066, "end": 35.001064, "seconds": 0.9999979734420776, "bytes": 423624704, "bits_per_second": 3389004500.0139184, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 35.001064, "end": 36.001063, "seconds": 0.9999989867210388, "bytes": 440401920, "bits_per_second": 3523218930.0036173, "omitted": false, "sender": false}], "sum": {"start": 35.001064, "end": 36.001063, "seconds": 0.9999989867210388, "bytes": 440401920, "bits_per_second": 3523218930.0036173, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 36.001063, "end": 37.001071, "seconds": 1.0000079870224, "bytes": 455213056, "bits_per_second": 3641675361.8573117, "omitted": false, "sender": false}], "sum": {"start": 36.001063, "end": 37.001071, "seconds": 1.0000079870224, "bytes": 455213056, "bits_per_second": 3641675361.8573117, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 37.001071, "end": 38.001063, "seconds": 0.9999920129776, "bytes": 429916160, "bits_per_second": 3439356750.219405, "omitted": false, "sender": false}], "sum": {"start": 37.001071, "end": 38.001063, "seconds": 0.9999920129776, "bytes": 429916160, "bits_per_second": 3439356750.219405, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 38.001063, "end": 39.001051, "seconds": 0.9999880194664, "bytes": 425459712, "bits_per_second": 3403718474.3635464, "omitted": false, "sender": false}], "sum": {"start": 38.001063, "end": 39.001051, "seconds": 0.9999880194664, "bytes": 425459712, "bits_per_second": 3403718474.3635464, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 39.001051, "end": 40.001051, "seconds": 1, "bytes": 451018752, "bits_per_second": 3608150016, "omitted": false, "sender": false}], "sum": {"start": 39.001051, "end": 40.001051, "seconds": 1, "bytes": 451018752, "bits_per_second": 3608150016, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 40.001051, "end": 41.001056, "seconds": 1.0000050067901611, "bytes": 457048064, "bits_per_second": 3656366205.3416576, "omitted": false, "sender": false}], "sum": {"start": 40.001051, "end": 41.001056, "seconds": 1.0000050067901611, "bytes": 457048064, "bits_per_second": 3656366205.3416576, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 41.001056, "end": 42.001051, "seconds": 0.999994993209839, "bytes": 434896896, "bits_per_second": 3479192587.5872164, "omitted": false, "sender": false}], "sum": {"start": 41.001056, "end": 42.001051, "seconds": 0.999994993209839, "bytes": 434896896, "bits_per_second": 3479192587.5872164, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 42.001051, "end": 43.001066, "seconds": 1.0000150203704834, "bytes": 440795136, "bits_per_second": 3526308121.5455756, "omitted": false, "sender": false}], "sum": {"start": 42.001051, "end": 43.001066, "seconds": 1.0000150203704834, "bytes": 440795136, "bits_per_second": 3526308121.5455756, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 43.001066, "end": 44.001057, "seconds": 0.999990999698639, "bytes": 438042624, "bits_per_second": 3504372532.408873, "omitted": false, "sender": false}], "sum": {"start": 43.001066, "end": 44.001057, "seconds": 0.999990999698639, "bytes": 438042624, "bits_per_second": 3504372532.408873, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 44.001057, "end": 45.00106, "seconds": 1.0000029802322388, "bytes": 448790528, "bits_per_second": 3590313524.0318885, "omitted": false, "sender": false}], "sum": {"start": 44.001057, "end": 45.00106, "seconds": 1.0000029802322388, "bytes": 448790528, "bits_per_second": 3590313524.0318885, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 45.00106, "end": 46.001062, "seconds": 1.0000020265579224, "bytes": 449970176, "bits_per_second": 3599754112.889784, "omitted": false, "sender": false}], "sum": {"start": 45.00106, "end": 46.001062, "seconds": 1.0000020265579224, "bytes": 449970176, "bits_per_second": 3599754112.889784, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 46.001062, "end": 47.001044, "seconds": 0.9999819993972778, "bytes": 460455936, "bits_per_second": 3683713797.068603, "omitted": false, "sender": false}], "sum": {"start": 46.001062, "end": 47.001044, "seconds": 0.9999819993972778, "bytes": 460455936, "bits_per_second": 3683713797.068603, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 47.001044, "end": 48.001078, "seconds": 1.000033974647522, "bytes": 442630144, "bits_per_second": 3540920850.4622025, "omitted": false, "sender": false}], "sum": {"start": 47.001044, "end": 48.001078, "seconds": 1.000033974647522, "bytes": 442630144, "bits_per_second": 3540920850.4622025, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 48.001078, "end": 49.000382, "seconds": 0.9993039965629578, "bytes": 425459712, "bits_per_second": 3406048317.3355975, "omitted": false, "sender": false}], "sum": {"start": 48.001078, "end": 49.000382, "seconds": 0.9993039965629578, "bytes": 425459712, "bits_per_second": 3406048317.3355975, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 49.000382, "end": 50.001514, "seconds": 1.0011320114135742, "bytes": 429916160, "bits_per_second": 3435440322.344453, "omitted": false, "sender": false}], "sum": {"start": 49.000382, "end": 50.001514, "seconds": 1.0011320114135742, "bytes": 429916160, "bits_per_second": 3435440322.344453, "omitted": false, "sender": false}}, {"streams": [{"socket": 5, "start": 50.001514, "end": 50.009176, "seconds": 0.007662000134587288, "bytes": 3014656, "bits_per_second": 3147643901.90122, "omitted": false, "sender": false}], "sum": {"start": 50.001514, "end": 50.009176, "seconds": 0.007662000134587288, "bytes": 3014656, "bits_per_second": 3147643901.90122, "omitted": false, "sender": false}}], "end": {"streams": [{"sender": {"socket": 5, "start": 0, "end": 50.009176, "seconds": 50.009176, "bytes": 0, "bits_per_second": 0, "sender": false}, "receiver": {"socket": 5, "start": 0, "end": 50.009176, "seconds": 50.009176, "bytes": 22099132416, "bits_per_second": 3535212404.3795485, "sender": false}}], "sum_sent": {"start": 0, "end": 50.009176, "seconds": 50.009176, "bytes": 0, "bits_per_second": 0, "sender": false}, "sum_received": {"start": 0, "end": 50.009176, "seconds": 50.009176, "bytes": 22099132416, "bits_per_second": 3535212404.3795485, "sender": false}, "cpu_utilization_percent": {"host_total": 43.0561330586274, "host_user": 0.4273060595823734, "host_system": 42.6288249994191, "remote_total": 0, "remote_user": 0, "remote_system": 0}, "receiver_tcp_congestion": "cubic"}}}} 2026-07-22 14:23:56.905332 2026-07-22 13:08:41.236732 +1332 53 loader /usr/bin/stress-ng --timeout 50 --cpu-method all --vm-method all --sock 0 --sock-ops 1000 --netdev 0 --syscall-method all --verify --metrics --udp 0 {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 298.48}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 1000, "real_time_secs": 0.35, "usr_time_secs": 0.02, "sys_time_secs": 0.54, "bogo_ops_s_real_time": 2842.7, "bogo_ops_s_usr_sys_time": 1794.75, "cpu_used_per_instance": 39.6, "rss_max_kb": 2112, "top10_slowest": null}, "1": {"stressor": "netdev", "bogo_ops": 20911168, "real_time_secs": 50.0, "usr_time_secs": 11.29, "sys_time_secs": 59.62, "bogo_ops_s_real_time": 418219.13, "bogo_ops_s_usr_sys_time": 294865.07, "cpu_used_per_instance": 35.46, "rss_max_kb": 1984, "top10_slowest": null}, "2": {"stressor": "udp", "bogo_ops": 27412002, "real_time_secs": 50.0, "usr_time_secs": 16.5, "sys_time_secs": 110.16, "bogo_ops_s_real_time": 548238.71, "bogo_ops_s_usr_sys_time": 216416.69, "cpu_used_per_instance": 63.33, "rss_max_kb": 1984, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 12, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:26:35.847027 2026-07-22 13:08:41.236732 +1333 53 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:27:26.407207 2026-07-22 14:27:26.40721 +1334 53 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:26:35' --until '2026-07-22 14:27:26' 0 OOM records 2026-07-22 14:26:35.601904 2026-07-22 14:27:26.096216 +1335 53 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:26:35' --until '2026-07-22 14:27:26' 0 systemd errors records 2026-07-22 14:26:35.601904 2026-07-22 14:27:26.096216 +1336 54 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 5.26, "kernel_time": 1.159, "userspace_time": 14.333, "total_time": 20.753} 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1337 54 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:30:25.569174 2026-07-22 14:30:25.569178 +1338 54 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:30:25' --until '2026-07-22 14:30:25' 0 OOM records 2026-07-22 14:30:25.016622 2026-07-22 14:30:25.257312 +1339 54 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:30:25' --until '2026-07-22 14:30:25' 0 systemd errors records 2026-07-22 14:30:25.016622 2026-07-22 14:30:25.257312 +1340 54 loader systemd-analyze critical-chain [{"service_name": "cloud-init.service", "slow_time_s": 1.336}, {"service_name": "cloud-init-local.service", "slow_time_s": 2.245}, {"service_name": "wicked.service", "slow_time_s": 5.393}] 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1341 54 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:30:26.612412 2026-07-22 14:30:26.612417 +1342 54 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:30:25' --until '2026-07-22 14:30:26' 1 OOM records 2026-07-22 14:30:25.864549 2026-07-22 14:30:26.302518 +1343 54 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:30:25' --until '2026-07-22 14:30:26' 0 systemd errors records 2026-07-22 14:30:25.864549 2026-07-22 14:30:26.302518 +1344 54 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 34.47}, "metrics": {"0": {"bogo_ops": 7056, "real_time_secs": 33.68, "usr_time_secs": 0.22, "sys_time_secs": 0.57, "bogo_ops_s_real_time": 209.51, "bogo_ops_s_usr_sys_time": 9016.98, "cpu_used_per_instance": 0.58, "rss_max_kb": 4364, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:30:27.054887 2026-07-22 13:08:41.236732 +1345 54 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:31:02.581201 2026-07-22 14:31:02.581203 +1346 54 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:30:26' --until '2026-07-22 14:31:02' 1 OOM records 2026-07-22 14:30:26.908344 2026-07-22 14:31:02.271353 +1347 54 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:30:26' --until '2026-07-22 14:31:02' 0 systemd errors records 2026-07-22 14:30:26.908344 2026-07-22 14:31:02.271353 +1348 54 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:31:04.112441 2026-07-22 14:31:04.112446 +1349 54 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:31:03' --until '2026-07-22 14:31:03' 0 OOM records 2026-07-22 14:31:03.458118 2026-07-22 14:31:03.802004 +1350 54 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:31:03' --until '2026-07-22 14:31:03' 0 systemd errors records 2026-07-22 14:31:03.458118 2026-07-22 14:31:03.802004 +1351 54 loader null 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1352 54 loader null 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1353 54 loader null 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1354 54 loader null 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1355 54 loader null 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1356 54 loader null 2026-07-22 13:08:41.236726 2026-07-22 13:08:41.236732 +1357 54 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:32:05.569446 2026-07-22 14:32:05.569449 +1358 54 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:31:04' --until '2026-07-22 14:32:05' 0 OOM records 2026-07-22 14:31:04.885356 2026-07-22 14:32:05.258695 +1359 54 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:31:04' --until '2026-07-22 14:32:05' 0 systemd errors records 2026-07-22 14:31:04.885356 2026-07-22 14:32:05.258695 +1360 54 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 0 --vm-method all --vm-bytes 95% --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 195.69}, "metrics": {"0": {"stressor": "vm", "bogo_ops": 6731217, "real_time_secs": 33.06, "usr_time_secs": 88.38, "sys_time_secs": 35.42, "bogo_ops_s_real_time": 203617.61, "bogo_ops_s_usr_sys_time": 54374.89, "cpu_used_per_instance": 93.62, "rss_max_kb": 753016, "top10_slowest": null}, "1": {"stressor": "syscall", "bogo_ops": 36162, "real_time_secs": 33.37, "usr_time_secs": 1.65, "sys_time_secs": 3.81, "bogo_ops_s_real_time": 1083.53, "bogo_ops_s_usr_sys_time": 6623.1, "cpu_used_per_instance": 4.09, "rss_max_kb": 5524, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:32:07.001912 2026-07-22 13:08:41.236732 +1361 54 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:32:41.768232 2026-07-22 14:32:41.768237 +1362 54 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:32:06' --until '2026-07-22 14:32:41' 15 OOM records 2026-07-22 14:32:06.754679 2026-07-22 14:32:41.256651 +1363 54 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:32:06' --until '2026-07-22 14:32:41' 0 systemd errors records 2026-07-22 14:32:06.754679 2026-07-22 14:32:41.256651 +1364 54 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/perf bench --format default --repeat 1 syscall all {"tool": "stress-ng", "test_type": {"stressor": "syscall"}, "time": {"duration_sec": 33.88}, "metrics": {"0": {"bogo_ops": 2352, "real_time_secs": 33.78, "usr_time_secs": 0.04, "sys_time_secs": 0.06, "bogo_ops_s_real_time": 69.63, "bogo_ops_s_usr_sys_time": 23631.3, "cpu_used_per_instance": 0.07, "rss_max_kb": 3456, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}}, "perf_metrics": {"tool": "perf", "test_type": {"benchmark": "syscall/basic"}, "time": {"duration_sec": 0.578}, "metrics": {"usecs_per_op": 0.057888, "ops_per_sec": 17274826}}} 2026-07-22 14:32:43.06363 2026-07-22 14:33:23.065601 +1365 54 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:33:23.380958 2026-07-22 14:33:23.380962 +1366 54 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:32:42' --until '2026-07-22 14:33:23' 0 OOM records 2026-07-22 14:32:42.705765 2026-07-22 14:33:23.069859 +1367 54 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:32:42' --until '2026-07-22 14:33:23' 0 systemd errors records 2026-07-22 14:32:42.705765 2026-07-22 14:33:23.069859 +1368 54 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 144.64}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 836, "real_time_secs": 8.01, "usr_time_secs": 0.12, "sys_time_secs": 1.37, "bogo_ops_s_real_time": 104.43, "bogo_ops_s_usr_sys_time": 560.5, "cpu_used_per_instance": 18.63, "rss_max_kb": 1840, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 435506, "real_time_secs": 8.0, "usr_time_secs": 0.33, "sys_time_secs": 1.05, "bogo_ops_s_real_time": 54432.65, "bogo_ops_s_usr_sys_time": 316763.89, "cpu_used_per_instance": 17.18, "rss_max_kb": 3892, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 1498064, "real_time_secs": 8.0, "usr_time_secs": 0.26, "sys_time_secs": 1.31, "bogo_ops_s_real_time": 187231.7, "bogo_ops_s_usr_sys_time": 951071.43, "cpu_used_per_instance": 19.69, "rss_max_kb": 1968, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 2315613, "real_time_secs": 8.0, "usr_time_secs": 0.32, "sys_time_secs": 1.28, "bogo_ops_s_real_time": 289394.87, "bogo_ops_s_usr_sys_time": 1446674.03, "cpu_used_per_instance": 20.0, "rss_max_kb": 6320, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 2552929, "real_time_secs": 8.0, "usr_time_secs": 0.23, "sys_time_secs": 1.37, "bogo_ops_s_real_time": 319104.37, "bogo_ops_s_usr_sys_time": 1596391.79, "cpu_used_per_instance": 19.99, "rss_max_kb": 1840, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 112, "real_time_secs": 8.02, "usr_time_secs": 0.07, "sys_time_secs": 0.71, "bogo_ops_s_real_time": 13.96, "bogo_ops_s_usr_sys_time": 144.43, "cpu_used_per_instance": 9.66, "rss_max_kb": 263944, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 86, "real_time_secs": 8.01, "usr_time_secs": 0.01, "sys_time_secs": 0.28, "bogo_ops_s_real_time": 10.73, "bogo_ops_s_usr_sys_time": 290.8, "cpu_used_per_instance": 3.69, "rss_max_kb": 67392, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 5668106, "real_time_secs": 8.01, "usr_time_secs": 1.54, "sys_time_secs": 0.07, "bogo_ops_s_real_time": 707917.54, "bogo_ops_s_usr_sys_time": 3521842.41, "cpu_used_per_instance": 20.1, "rss_max_kb": 1840, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 1024459, "real_time_secs": 8.01, "usr_time_secs": 0.27, "sys_time_secs": 1.84, "bogo_ops_s_real_time": 127960.4, "bogo_ops_s_usr_sys_time": 486744.76, "cpu_used_per_instance": 26.29, "rss_max_kb": 1712, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 172114, "real_time_secs": 16.0, "usr_time_secs": 0.48, "sys_time_secs": 2.02, "bogo_ops_s_real_time": 10756.98, "bogo_ops_s_usr_sys_time": 69039.21, "cpu_used_per_instance": 15.58, "rss_max_kb": 1840, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 3289510, "real_time_secs": 8.01, "usr_time_secs": 1.2, "sys_time_secs": 0.4, "bogo_ops_s_real_time": 410811.45, "bogo_ops_s_usr_sys_time": 2046952.51, "cpu_used_per_instance": 20.07, "rss_max_kb": 3760, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 6320063, "real_time_secs": 8.01, "usr_time_secs": 1.68, "sys_time_secs": 13.03, "bogo_ops_s_real_time": 789128.21, "bogo_ops_s_usr_sys_time": 429740.59, "cpu_used_per_instance": 183.63, "rss_max_kb": 1712, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 426386, "real_time_secs": 8.0, "usr_time_secs": 0.29, "sys_time_secs": 1.03, "bogo_ops_s_real_time": 53295.35, "bogo_ops_s_usr_sys_time": 322924.29, "cpu_used_per_instance": 16.5, "rss_max_kb": 1840, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 13, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:33:24.716295 2026-07-22 13:08:41.236732 +1369 54 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 2 --syscall-method all --mq 2 --pipe 2 --sem 2 --sem-sysv 2 --shm 2 --shm-sysv 2 --verify --dekker 2 --fifo 2 --futex 2 --peterson 2 --pipeherd 2 --sigq 2 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 145.45}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 525, "real_time_secs": 8.02, "usr_time_secs": 0.01, "sys_time_secs": 0.28, "bogo_ops_s_real_time": 65.47, "bogo_ops_s_usr_sys_time": 1822.82, "cpu_used_per_instance": 1.8, "rss_max_kb": 1968, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 125774, "real_time_secs": 8.02, "usr_time_secs": 0.09, "sys_time_secs": 0.26, "bogo_ops_s_real_time": 15686.77, "bogo_ops_s_usr_sys_time": 363523.38, "cpu_used_per_instance": 2.16, "rss_max_kb": 3864, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 123089, "real_time_secs": 8.02, "usr_time_secs": 0.02, "sys_time_secs": 0.22, "bogo_ops_s_real_time": 15343.89, "bogo_ops_s_usr_sys_time": 513234.37, "cpu_used_per_instance": 1.49, "rss_max_kb": 1968, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 377809, "real_time_secs": 8.01, "usr_time_secs": 0.09, "sys_time_secs": 0.28, "bogo_ops_s_real_time": 47146.73, "bogo_ops_s_usr_sys_time": 1035643.6, "cpu_used_per_instance": 2.28, "rss_max_kb": 6192, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 171851, "real_time_secs": 8.02, "usr_time_secs": 0.05, "sys_time_secs": 0.27, "bogo_ops_s_real_time": 21417.5, "bogo_ops_s_usr_sys_time": 530700.79, "cpu_used_per_instance": 2.02, "rss_max_kb": 1840, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 40, "real_time_secs": 8.02, "usr_time_secs": 0.01, "sys_time_secs": 0.15, "bogo_ops_s_real_time": 4.99, "bogo_ops_s_usr_sys_time": 255.11, "cpu_used_per_instance": 0.98, "rss_max_kb": 2096, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 37, "real_time_secs": 8.02, "usr_time_secs": 0.01, "sys_time_secs": 0.13, "bogo_ops_s_real_time": 4.62, "bogo_ops_s_usr_sys_time": 275.71, "cpu_used_per_instance": 0.84, "rss_max_kb": 34644, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 1427553, "real_time_secs": 8.02, "usr_time_secs": 0.31, "sys_time_secs": 0.05, "bogo_ops_s_real_time": 178074.43, "bogo_ops_s_usr_sys_time": 3900471.32, "cpu_used_per_instance": 2.28, "rss_max_kb": 1840, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 226214, "real_time_secs": 8.01, "usr_time_secs": 0.03, "sys_time_secs": 0.34, "bogo_ops_s_real_time": 28243.77, "bogo_ops_s_usr_sys_time": 599112.25, "cpu_used_per_instance": 2.36, "rss_max_kb": 1712, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 177598, "real_time_secs": 16.01, "usr_time_secs": 0.23, "sys_time_secs": 1.42, "bogo_ops_s_real_time": 11096.02, "bogo_ops_s_usr_sys_time": 107638.61, "cpu_used_per_instance": 5.15, "rss_max_kb": 1840, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 469086, "real_time_secs": 8.01, "usr_time_secs": 0.37, "sys_time_secs": 0.06, "bogo_ops_s_real_time": 58568.56, "bogo_ops_s_usr_sys_time": 1101009.03, "cpu_used_per_instance": 2.66, "rss_max_kb": 3860, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 14558436, "real_time_secs": 8.01, "usr_time_secs": 3.29, "sys_time_secs": 24.91, "bogo_ops_s_real_time": 1816923.64, "bogo_ops_s_usr_sys_time": 516157.85, "cpu_used_per_instance": 176.0, "rss_max_kb": 1840, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 225527, "real_time_secs": 8.01, "usr_time_secs": 0.07, "sys_time_secs": 0.3, "bogo_ops_s_real_time": 28163.36, "bogo_ops_s_usr_sys_time": 614360.98, "cpu_used_per_instance": 2.29, "rss_max_kb": 1712, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 26, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:33:32.938626 2026-07-22 13:08:41.236732 +1370 54 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 3 --syscall-method all --mq 3 --pipe 3 --sem 3 --sem-sysv 3 --shm 3 --shm-sysv 3 --verify --dekker 3 --fifo 3 --futex 3 --peterson 3 --pipeherd 3 --sigq 3 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 145.87}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 773, "real_time_secs": 8.06, "usr_time_secs": 0.03, "sys_time_secs": 0.37, "bogo_ops_s_real_time": 95.95, "bogo_ops_s_usr_sys_time": 1926.05, "cpu_used_per_instance": 1.66, "rss_max_kb": 3552, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 162913, "real_time_secs": 8.05, "usr_time_secs": 0.12, "sys_time_secs": 0.27, "bogo_ops_s_real_time": 20239.8, "bogo_ops_s_usr_sys_time": 411440.1, "cpu_used_per_instance": 1.64, "rss_max_kb": 3952, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 168100, "real_time_secs": 8.03, "usr_time_secs": 0.04, "sys_time_secs": 0.31, "bogo_ops_s_real_time": 20922.21, "bogo_ops_s_usr_sys_time": 481161.43, "cpu_used_per_instance": 1.45, "rss_max_kb": 2148, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 636748, "real_time_secs": 8.03, "usr_time_secs": 0.18, "sys_time_secs": 0.32, "bogo_ops_s_real_time": 79255.11, "bogo_ops_s_usr_sys_time": 1269529.99, "cpu_used_per_instance": 2.08, "rss_max_kb": 6372, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 141019, "real_time_secs": 8.0, "usr_time_secs": 0.04, "sys_time_secs": 0.26, "bogo_ops_s_real_time": 17619.36, "bogo_ops_s_usr_sys_time": 474077.19, "cpu_used_per_instance": 1.24, "rss_max_kb": 1892, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 112, "real_time_secs": 8.05, "usr_time_secs": 0.01, "sys_time_secs": 0.27, "bogo_ops_s_real_time": 13.91, "bogo_ops_s_usr_sys_time": 400.09, "cpu_used_per_instance": 1.16, "rss_max_kb": 89060, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 32, "real_time_secs": 8.07, "usr_time_secs": 0.02, "sys_time_secs": 0.08, "bogo_ops_s_real_time": 3.97, "bogo_ops_s_usr_sys_time": 316.01, "cpu_used_per_instance": 0.42, "rss_max_kb": 18468, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 1530669, "real_time_secs": 8.08, "usr_time_secs": 0.44, "sys_time_secs": 0.0, "bogo_ops_s_real_time": 189415.42, "bogo_ops_s_usr_sys_time": 3470676.53, "cpu_used_per_instance": 1.82, "rss_max_kb": 1892, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 453481, "real_time_secs": 8.01, "usr_time_secs": 0.08, "sys_time_secs": 0.38, "bogo_ops_s_real_time": 56635.85, "bogo_ops_s_usr_sys_time": 993260.44, "cpu_used_per_instance": 1.9, "rss_max_kb": 1892, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 149524, "real_time_secs": 16.07, "usr_time_secs": 0.35, "sys_time_secs": 1.21, "bogo_ops_s_real_time": 9306.55, "bogo_ops_s_usr_sys_time": 95946.88, "cpu_used_per_instance": 3.23, "rss_max_kb": 1892, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 1657085, "real_time_secs": 8.07, "usr_time_secs": 0.52, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 205336.2, "bogo_ops_s_usr_sys_time": 3138430.45, "cpu_used_per_instance": 2.18, "rss_max_kb": 1892, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 26241149, "real_time_secs": 8.03, "usr_time_secs": 3.46, "sys_time_secs": 24.2, "bogo_ops_s_real_time": 3266417.98, "bogo_ops_s_usr_sys_time": 948872.44, "cpu_used_per_instance": 114.75, "rss_max_kb": 1892, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 207806, "real_time_secs": 8.02, "usr_time_secs": 0.06, "sys_time_secs": 0.27, "bogo_ops_s_real_time": 25924.13, "bogo_ops_s_usr_sys_time": 623740.47, "cpu_used_per_instance": 1.39, "rss_max_kb": 1892, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 39, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:33:41.456069 2026-07-22 13:08:41.236732 +1371 54 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 4 --syscall-method all --mq 4 --pipe 4 --sem 4 --sem-sysv 4 --shm 4 --shm-sysv 4 --verify --dekker 4 --fifo 4 --futex 4 --peterson 4 --pipeherd 4 --sigq 4 --metrics {"tool": "stress-ng", "test_type": {"stressor": "mixed"}, "time": {"duration_sec": 145.64}, "metrics": {"0": {"stressor": "sock", "bogo_ops": 900, "real_time_secs": 8.07, "usr_time_secs": 0.05, "sys_time_secs": 0.44, "bogo_ops_s_real_time": 111.46, "bogo_ops_s_usr_sys_time": 1817.57, "cpu_used_per_instance": 1.53, "rss_max_kb": 2096, "top10_slowest": null}, "1": {"stressor": "mq", "bogo_ops": 222113, "real_time_secs": 8.07, "usr_time_secs": 0.11, "sys_time_secs": 0.41, "bogo_ops_s_real_time": 27521.27, "bogo_ops_s_usr_sys_time": 420912.5, "cpu_used_per_instance": 1.63, "rss_max_kb": 3900, "top10_slowest": null}, "2": {"stressor": "pipe", "bogo_ops": 373284, "real_time_secs": 8.02, "usr_time_secs": 0.06, "sys_time_secs": 0.39, "bogo_ops_s_real_time": 46531.43, "bogo_ops_s_usr_sys_time": 824962.54, "cpu_used_per_instance": 1.41, "rss_max_kb": 2096, "top10_slowest": null}, "3": {"stressor": "sem", "bogo_ops": 409243, "real_time_secs": 8.05, "usr_time_secs": 0.18, "sys_time_secs": 0.3, "bogo_ops_s_real_time": 50826.82, "bogo_ops_s_usr_sys_time": 847736.29, "cpu_used_per_instance": 1.5, "rss_max_kb": 6192, "top10_slowest": null}, "4": {"stressor": "sem-sysv", "bogo_ops": 230879, "real_time_secs": 8.03, "usr_time_secs": 0.08, "sys_time_secs": 0.36, "bogo_ops_s_real_time": 28758.22, "bogo_ops_s_usr_sys_time": 528563.09, "cpu_used_per_instance": 1.36, "rss_max_kb": 1840, "top10_slowest": null}, "5": {"stressor": "shm", "bogo_ops": 287, "real_time_secs": 8.0, "usr_time_secs": 0.05, "sys_time_secs": 0.47, "bogo_ops_s_real_time": 35.86, "bogo_ops_s_usr_sys_time": 551.22, "cpu_used_per_instance": 1.63, "rss_max_kb": 67344, "top10_slowest": null}, "6": {"stressor": "shm-sysv", "bogo_ops": 48, "real_time_secs": 8.04, "usr_time_secs": 0.04, "sys_time_secs": 0.13, "bogo_ops_s_real_time": 5.97, "bogo_ops_s_usr_sys_time": 295.44, "cpu_used_per_instance": 0.51, "rss_max_kb": 18416, "top10_slowest": null}, "7": {"stressor": "dekker", "bogo_ops": 2240775, "real_time_secs": 8.09, "usr_time_secs": 0.52, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 277080.51, "bogo_ops_s_usr_sys_time": 4181400.7, "cpu_used_per_instance": 1.66, "rss_max_kb": 1840, "top10_slowest": null}, "8": {"stressor": "fifo", "bogo_ops": 502936, "real_time_secs": 8.01, "usr_time_secs": 0.05, "sys_time_secs": 0.44, "bogo_ops_s_real_time": 62827.62, "bogo_ops_s_usr_sys_time": 1038615.39, "cpu_used_per_instance": 1.51, "rss_max_kb": 1968, "top10_slowest": null}, "9": {"stressor": "futex", "bogo_ops": 11788, "real_time_secs": 16.08, "usr_time_secs": 0.16, "sys_time_secs": 0.71, "bogo_ops_s_real_time": 733.27, "bogo_ops_s_usr_sys_time": 13647.89, "cpu_used_per_instance": 1.34, "rss_max_kb": 1968, "top10_slowest": null}, "10": {"stressor": "peterson", "bogo_ops": 667074, "real_time_secs": 8.05, "usr_time_secs": 0.53, "sys_time_secs": 0.02, "bogo_ops_s_real_time": 82864.87, "bogo_ops_s_usr_sys_time": 1220374.89, "cpu_used_per_instance": 1.7, "rss_max_kb": 3984, "top10_slowest": null}, "11": {"stressor": "pipeherd", "bogo_ops": 31606230, "real_time_secs": 8.06, "usr_time_secs": 3.54, "sys_time_secs": 23.52, "bogo_ops_s_real_time": 3919549.82, "bogo_ops_s_usr_sys_time": 1167904.64, "cpu_used_per_instance": 83.9, "rss_max_kb": 1968, "top10_slowest": null}, "12": {"stressor": "sigq", "bogo_ops": 316035, "real_time_secs": 8.02, "usr_time_secs": 0.09, "sys_time_secs": 0.39, "bogo_ops_s_real_time": 39397.63, "bogo_ops_s_usr_sys_time": 661322.96, "cpu_used_per_instance": 1.49, "rss_max_kb": 1968, "top10_slowest": null}, "summary": {"skipped": -1, "passed": 52, "failed": -1, "metrics_untrustworthy": -1}}} 2026-07-22 14:33:50.172996 2026-07-22 13:08:41.236732 +1372 54 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-07-22 14:33:59.10221 2026-07-22 14:33:59.102214 +1373 54 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-07-22 14:33:24' --until '2026-07-22 14:33:58' 0 OOM records 2026-07-22 14:33:24.269511 2026-07-22 14:33:58.791427 +1374 54 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-07-22 14:33:24' --until '2026-07-22 14:33:58' 0 systemd errors records 2026-07-22 14:33:24.269511 2026-07-22 14:33:58.791427 +\. + + +-- +-- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.auth_group_id_seq', 1, false); + + +-- +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 1, false); + + +-- +-- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.auth_permission_id_seq', 32, true); + + +-- +-- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.auth_user_groups_id_seq', 1, false); + + +-- +-- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.auth_user_id_seq', 1, false); + + +-- +-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.auth_user_user_permissions_id_seq', 1, false); + + +-- +-- Name: configuration_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.configuration_config_id_seq', 19, true); + + +-- +-- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.django_admin_log_id_seq', 1, false); + + +-- +-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.django_content_type_id_seq', 8, true); + + +-- +-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.django_migrations_id_seq', 38, true); + + +-- +-- Name: experiment_experiment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.experiment_experiment_id_seq', 54, true); + + +-- +-- Name: tests_interface_distribution_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.tests_interface_distribution_id_seq', 155, true); + + +-- +-- Name: util_run_result_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user +-- + +SELECT pg_catalog.setval('public.util_run_result_id_seq', 1374, true); + + +-- +-- Name: auth_group auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_group + ADD CONSTRAINT auth_group_name_key UNIQUE (name); + + +-- +-- Name: auth_group_permissions auth_group_permissions_group_id_permission_id_0cd325b0_uniq; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissions_group_id_permission_id_0cd325b0_uniq UNIQUE (group_id, permission_id); + + +-- +-- Name: auth_group_permissions auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_group auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_group + ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_permission auth_permission_content_type_id_codename_01ab375a_uniq; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_permission + ADD CONSTRAINT auth_permission_content_type_id_codename_01ab375a_uniq UNIQUE (content_type_id, codename); + + +-- +-- Name: auth_permission auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_permission + ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_groups auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_groups auth_user_groups_user_id_group_id_94350c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_user_id_group_id_94350c0c_uniq UNIQUE (user_id, group_id); + + +-- +-- Name: auth_user auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_user + ADD CONSTRAINT auth_user_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_user_permissions auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permissions_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_permission_id_14a6b632_uniq; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permissions_user_id_permission_id_14a6b632_uniq UNIQUE (user_id, permission_id); + + +-- +-- Name: auth_user auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_user + ADD CONSTRAINT auth_user_username_key UNIQUE (username); + + +-- +-- Name: configuration configuration_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.configuration + ADD CONSTRAINT configuration_pkey PRIMARY KEY (config_id); + + +-- +-- Name: django_admin_log django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.django_admin_log + ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id); + + +-- +-- Name: django_content_type django_content_type_app_label_model_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.django_content_type + ADD CONSTRAINT django_content_type_app_label_model_76bd3d3b_uniq UNIQUE (app_label, model); + + +-- +-- Name: django_content_type django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.django_content_type + ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id); + + +-- +-- Name: django_migrations django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.django_migrations + ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id); + + +-- +-- Name: django_session django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.django_session + ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key); + + +-- +-- Name: django_tasks_database_dbtaskresult django_tasks_database_dbtaskresult_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.django_tasks_database_dbtaskresult + ADD CONSTRAINT django_tasks_database_dbtaskresult_pkey PRIMARY KEY (id); + + +-- +-- Name: experiment experiment_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.experiment + ADD CONSTRAINT experiment_pkey PRIMARY KEY (experiment_id); + + +-- +-- Name: tests_interface_distribution tests_interface_distribution_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.tests_interface_distribution + ADD CONSTRAINT tests_interface_distribution_pkey PRIMARY KEY (id); + + +-- +-- Name: tests_interface_distribution unique_name; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.tests_interface_distribution + ADD CONSTRAINT unique_name UNIQUE (name); + + +-- +-- Name: util_run_result util_run_result_pkey; Type: CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.util_run_result + ADD CONSTRAINT util_run_result_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX auth_group_name_a6ea08ec_like ON public.auth_group USING btree (name varchar_pattern_ops); + + +-- +-- Name: auth_group_permissions_group_id_b120cbf9; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX auth_group_permissions_group_id_b120cbf9 ON public.auth_group_permissions USING btree (group_id); + + +-- +-- Name: auth_group_permissions_permission_id_84c5c92e; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX auth_group_permissions_permission_id_84c5c92e ON public.auth_group_permissions USING btree (permission_id); + + +-- +-- Name: auth_permission_content_type_id_2f476e4b; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX auth_permission_content_type_id_2f476e4b ON public.auth_permission USING btree (content_type_id); + + +-- +-- Name: auth_user_groups_group_id_97559544; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX auth_user_groups_group_id_97559544 ON public.auth_user_groups USING btree (group_id); + + +-- +-- Name: auth_user_groups_user_id_6a12ed8b; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX auth_user_groups_user_id_6a12ed8b ON public.auth_user_groups USING btree (user_id); + + +-- +-- Name: auth_user_user_permissions_permission_id_1fbb5f2c; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX auth_user_user_permissions_permission_id_1fbb5f2c ON public.auth_user_user_permissions USING btree (permission_id); + + +-- +-- Name: auth_user_user_permissions_user_id_a95ead1b; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX auth_user_user_permissions_user_id_a95ead1b ON public.auth_user_user_permissions USING btree (user_id); + + +-- +-- Name: auth_user_username_6821ab7c_like; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX auth_user_username_6821ab7c_like ON public.auth_user USING btree (username varchar_pattern_ops); + + +-- +-- Name: django_admin_log_content_type_id_c4bce8eb; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX django_admin_log_content_type_id_c4bce8eb ON public.django_admin_log USING btree (content_type_id); + + +-- +-- Name: django_admin_log_user_id_c564eba6; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX django_admin_log_user_id_c564eba6 ON public.django_admin_log USING btree (user_id); + + +-- +-- Name: django_session_expire_date_a5c62663; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX django_session_expire_date_a5c62663 ON public.django_session USING btree (expire_date); + + +-- +-- Name: django_session_session_key_c0390e0f_like; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX django_session_session_key_c0390e0f_like ON public.django_session USING btree (session_key varchar_pattern_ops); + + +-- +-- Name: django_task_backend_071754_idx; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX django_task_backend_071754_idx ON public.django_tasks_database_dbtaskresult USING btree (backend_name); + + +-- +-- Name: django_task_queue_n_99c321_idx; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX django_task_queue_n_99c321_idx ON public.django_tasks_database_dbtaskresult USING btree (queue_name); + + +-- +-- Name: tasks_db_new_ordering_idx; Type: INDEX; Schema: public; Owner: user +-- + +CREATE INDEX tasks_db_new_ordering_idx ON public.django_tasks_database_dbtaskresult USING btree (status, priority DESC, run_after) WHERE ((status)::text = 'READY'::text); + + +-- +-- Name: auth_group_permissions auth_group_permissio_permission_id_84c5c92e_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissio_permission_id_84c5c92e_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_group_permissions auth_group_permissions_group_id_b120cbf9_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_permission auth_permission_content_type_id_2f476e4b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_permission + ADD CONSTRAINT auth_permission_content_type_id_2f476e4b_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_groups auth_user_groups_group_id_97559544_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_group_id_97559544_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_groups auth_user_groups_user_id_6a12ed8b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_user_id_6a12ed8b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_user_permissions auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: django_admin_log django_admin_log_content_type_id_c4bce8eb_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.django_admin_log + ADD CONSTRAINT django_admin_log_content_type_id_c4bce8eb_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: django_admin_log django_admin_log_user_id_c564eba6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.django_admin_log + ADD CONSTRAINT django_admin_log_user_id_c564eba6_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: experiment experiment_config_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.experiment + ADD CONSTRAINT experiment_config_id_fkey FOREIGN KEY (config_id) REFERENCES public.configuration(config_id); + + +-- +-- Name: util_run_result util_run_result_experiment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: user +-- + +ALTER TABLE ONLY public.util_run_result + ADD CONSTRAINT util_run_result_experiment_id_fkey FOREIGN KEY (experiment_id) REFERENCES public.experiment(experiment_id); + + +-- +-- PostgreSQL database dump complete +-- + +\unrestrict D55ftVUceRXmMkbxqDZXnRm8qQuX7HSVruKhz2OBbhTop2bzqE5DV9eDJlaJdg1 diff --git a/metabase_prototype/docker-compose.yml b/metabase_prototype/docker-compose.yml index 7b7addda..170e0b09 100644 --- a/metabase_prototype/docker-compose.yml +++ b/metabase_prototype/docker-compose.yml @@ -26,6 +26,8 @@ services: POSTGRES_PASSWORD: ${METABASE_META_PASS} PGPORT: ${METABASE_META_DB_PORT} volumes: + - ${METABASE_BACKUP_SCRIPT}:/docker-entrypoint-initdb.d/init.sh + - ${METABASE_DEFAULT_DUMP}:/docker-entrypoint-initdb.d/def.dump - ${METABASE_META_VOLUME}:/var/lib/postgresql/data command: -p ${METABASE_META_DB_PORT} restart: unless-stopped diff --git a/metabase_prototype/metabase_backup.dump b/metabase_prototype/metabase_backup.dump index a6f6ea1b..d9a0e105 100644 Binary files a/metabase_prototype/metabase_backup.dump and b/metabase_prototype/metabase_backup.dump differ diff --git a/metabase_prototype/metabase_demo_backup.dump b/metabase_prototype/metabase_demo_backup.dump new file mode 100644 index 00000000..0847b3da Binary files /dev/null and b/metabase_prototype/metabase_demo_backup.dump differ diff --git a/metabase_prototype/queries/iops_ops_comp.sql b/metabase_prototype/queries/iops_ops_comp.sql new file mode 100644 index 00000000..6c7d9e6b --- /dev/null +++ b/metabase_prototype/queries/iops_ops_comp.sql @@ -0,0 +1,66 @@ +SELECT + label, + block_size, + iops, + operation_type +FROM ( + SELECT + CONCAT('OS 1') AS label, + block_size, + CASE + WHEN job_name LIKE '%rand_write%' THEN (item -> 'write' ->> 'iops_mean')::float + WHEN job_name LIKE '%rand_read%' THEN (item -> 'read' ->> 'iops_mean')::float + WHEN job_name LIKE '%seq_write%' THEN (item -> 'write' ->> 'iops_mean')::float + WHEN job_name LIKE '%seq_read%' THEN (item -> 'read' ->> 'iops_mean')::float + ELSE 0 + END as iops, + job_name as operation_type + FROM + ( + SELECT + l.experiment_id, + (l.result::jsonb -> 'test_type' -> 'detailed' ->> 'bs') AS block_size, + (l.result::jsonb -> 'test_type' ->> 'name') AS job_name, + (l.result::jsonb ->> 'metrics')::jsonb AS item + FROM + util_run_result AS l + WHERE + l.command LIKE '%fio%' + ) subquery + JOIN experiment ON subquery.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = configuration.config_id + WHERE + os = {{os1}} + [[ AND started_at BETWEEN {{start1}} AND {{end1}} ]] + + UNION ALL + + SELECT + CONCAT('OS 2') AS label, + block_size, + CASE + WHEN job_name LIKE '%rand_write%' THEN (item -> 'write' ->> 'iops_mean')::float + WHEN job_name LIKE '%rand_read%' THEN (item -> 'read' ->> 'iops_mean')::float + WHEN job_name LIKE '%seq_write%' THEN (item -> 'write' ->> 'iops_mean')::float + WHEN job_name LIKE '%seq_read%' THEN (item -> 'read' ->> 'iops_mean')::float + ELSE 0 + END as iops, + job_name as operation_type + FROM + ( + SELECT + l.experiment_id, + (l.result::jsonb -> 'test_type' -> 'detailed' ->> 'bs') AS block_size, + (l.result::jsonb -> 'test_type' ->> 'name') AS job_name, + (l.result::jsonb ->> 'metrics')::jsonb AS item + FROM + util_run_result AS l + WHERE + l.command LIKE '%fio%' + ) subquery + JOIN experiment ON subquery.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = configuration.config_id + WHERE + os = {{os2}} + [[ AND started_at BETWEEN {{start2}} AND {{end2}} ]] +) AS combined_results diff --git a/metabase_prototype/queries/iperf3_comp.sql b/metabase_prototype/queries/iperf3_comp.sql index 88590804..2d7af8f4 100644 --- a/metabase_prototype/queries/iperf3_comp.sql +++ b/metabase_prototype/queries/iperf3_comp.sql @@ -34,7 +34,7 @@ UNION ALL SELECT (interval_item->'sum'->>'start')::float AS interval_start, (interval_item->'sum'->>'bits_per_second')::float AS bits_per_second, - 'Experiment 1' as experiment_label, + 'Experiment 2' as experiment_label, os, core_info, type, diff --git a/metabase_prototype/queries/jittter_ms.sql b/metabase_prototype/queries/jitter_ms.sql similarity index 100% rename from metabase_prototype/queries/jittter_ms.sql rename to metabase_prototype/queries/jitter_ms.sql diff --git a/metabase_prototype/queries/stress-ng_10_slowest_syscalls.sql b/metabase_prototype/queries/stress-ng_10_slowest_syscalls.sql new file mode 100644 index 00000000..2f74b3ef --- /dev/null +++ b/metabase_prototype/queries/stress-ng_10_slowest_syscalls.sql @@ -0,0 +1,31 @@ +SELECT slowest[0] AS syscall, AVG((CASE + WHEN {{ metric }} = 'avg' THEN slowest[1] + WHEN {{ metric }} = 'min' THEN slowest[2] + WHEN {{ metric }} = 'max' THEN slowest[3] +END)::float) / 1000000 AS dur_ms +FROM ( + SELECT jsonb_array_elements((metrics::jsonb ->> 'top10_slowest')::jsonb) as slowest, os, core_info, type, started_at, experiment_id FROM ( + SELECT + value as metrics, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + l.command, + experiment.experiment_id + FROM util_run_result AS l + CROSS JOIN LATERAL json_each_text(result -> 'metrics') + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = "configuration".config_id + WHERE l.command LIKE '%stress-ng%' + AND l.command LIKE '%--syscall%' + AND result::text LIKE '%top10_slowest%' + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND experiment.started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{type}} ]] + ) WHERE metrics::text LIKE '%top10_slowest%' AND metrics::jsonb ->> 'top10_slowest' IS NOT NULL +) +GROUP BY syscall +ORDER BY dur_ms DESC +LIMIT 10 diff --git a/metabase_prototype/queries/stress-ng_10_slowest_syscalls_avg_lat.sql b/metabase_prototype/queries/stress-ng_10_slowest_syscalls_avg_lat.sql new file mode 100644 index 00000000..e58f05f1 --- /dev/null +++ b/metabase_prototype/queries/stress-ng_10_slowest_syscalls_avg_lat.sql @@ -0,0 +1,62 @@ +WITH + parsed_data AS ( + SELECT + experiment.experiment_id, + CONFIGURATION.os, + CONFIGURATION.core_info, + experiment.started_at, + result ->> 'tool' AS tool, + result -> 'time' ->> 'duration_sec' AS duration_sec, + result -> 'metrics' AS metrics_raw, + json_typeof(result -> 'metrics') AS metrics_type + FROM + util_run_result + LEFT JOIN experiment ON util_run_result.experiment_id = experiment.experiment_id + LEFT JOIN "configuration" ON experiment.config_id = CONFIGURATION.config_id + WHERE + result ->> 'tool' = 'stress-ng' + [[ AND configuration.os = {{os}} ]] + [[ AND experiment.started_at BETWEEN {{start}} AND {{end}} ]] + ), + expanded_metrics AS ( + SELECT + experiment_id, + os, + metrics_value + FROM + parsed_data, + json_each(metrics_raw) AS metrics (metrics_key, metrics_value) + WHERE + metrics_type = 'object' + AND metrics_value -> 'top10_slowest' IS NOT NULL + AND json_typeof(metrics_value -> 'top10_slowest') = 'array' + ), + all_syscalls AS ( + SELECT + experiment_id, + os, + (top10_item ->> 1)::float AS avg_time_ns + FROM + expanded_metrics, + json_array_elements(metrics_value -> 'top10_slowest') AS top10_item + ), + experiment_avg AS ( + SELECT + experiment_id, + os, + AVG(avg_time_ns) AS exp_avg_time_ns, + COUNT(*) AS syscalls_count + FROM + all_syscalls + GROUP BY + experiment_id, + os + ) +SELECT + os, + ROUND(exp_avg_time_ns / 1000000.0) AS "avg_dur_ms" +FROM + experiment_avg +ORDER BY + os, + exp_avg_time_ns DESC; diff --git a/metabase_prototype/queries/stress-ng_10_slowest_syscalls_comp.sql b/metabase_prototype/queries/stress-ng_10_slowest_syscalls_comp.sql new file mode 100644 index 00000000..ff759155 --- /dev/null +++ b/metabase_prototype/queries/stress-ng_10_slowest_syscalls_comp.sql @@ -0,0 +1,69 @@ +SELECT 'OS 1' AS os, syscall, dur_ms FROM ( + SELECT slowest[0] AS syscall, AVG((CASE + WHEN {{ metric }} = 'avg' THEN slowest[1] + WHEN {{ metric }} = 'min' THEN slowest[2] + WHEN {{ metric }} = 'max' THEN slowest[3] + END)::float) / 1000000 AS dur_ms + FROM ( + SELECT jsonb_array_elements((metrics::jsonb ->> 'top10_slowest')::jsonb) as slowest, os, core_info, type, started_at, experiment_id FROM ( + SELECT + value as metrics, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + l.command, + experiment.experiment_id + FROM util_run_result AS l + CROSS JOIN LATERAL json_each_text(result -> 'metrics') + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = "configuration".config_id + WHERE l.command LIKE '%stress-ng%' + AND l.command LIKE '%--syscall%' + AND result::text LIKE '%top10_slowest%' + [[ AND os = {{os1}} ]] + [[ AND core_info = {{core_info1}} ]] + [[ AND started_at BETWEEN {{start1}} AND {{end1}} ]] + [[ AND type = {{type}} ]] + ) WHERE metrics::text LIKE '%top10_slowest%' AND metrics::jsonb ->> 'top10_slowest' IS NOT NULL + ) + GROUP BY syscall + ORDER BY dur_ms DESC + LIMIT 10 +) + +UNION ALL + +SELECT 'OS 2' AS os, syscall, dur_ms FROM ( + SELECT slowest[0] AS syscall, AVG((CASE + WHEN {{ metric }} = 'avg' THEN slowest[1] + WHEN {{ metric }} = 'min' THEN slowest[2] + WHEN {{ metric }} = 'max' THEN slowest[3] + END)::float) / 1000000 AS dur_ms + FROM ( + SELECT jsonb_array_elements((metrics::jsonb ->> 'top10_slowest')::jsonb) as slowest, os, core_info, type, started_at, experiment_id FROM ( + SELECT + value as metrics, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + l.command, + experiment.experiment_id + FROM util_run_result AS l + CROSS JOIN LATERAL json_each_text(result -> 'metrics') + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = "configuration".config_id + WHERE l.command LIKE '%stress-ng%' + AND l.command LIKE '%--syscall%' + AND result::text LIKE '%top10_slowest%' + [[ AND os = {{os2}} ]] + [[ AND core_info = {{core_info2}} ]] + [[ AND CASE WHEN {{start2}} IS NULL THEN started_at BETWEEN {{start1}} AND {{end1}} ELSE started_at BETWEEN {{start2}} AND {{end2}} END ]] + [[ AND type = {{type}} ]] + ) WHERE metrics::text LIKE '%top10_slowest%' AND metrics::jsonb ->> 'top10_slowest' IS NOT NULL + ) + GROUP BY syscall + ORDER BY dur_ms DESC + LIMIT 10 +)